iOS 3 years ago
parent bc860d535e
commit d7aed8fb52

@ -35,5 +35,7 @@
"fantasy-calendar",
"obsidian-icon-shortcodes",
"cooklang-obsidian",
"obsidian-dialogue-plugin"
"obsidian-dialogue-plugin",
"taskbone-ocr-plugin",
"obsidian-journey-plugin"
]

@ -183,7 +183,7 @@
"current": {
"year": 2021,
"month": 11,
"day": 6
"day": 9
},
"events": [
{
@ -692,7 +692,12 @@
"month": 11,
"day": 31
},
"category": "ID_3b8a489a19da"
"category": "ID_3b8a489a19da",
"end": {
"year": 2021,
"month": 11,
"day": 31
}
},
{
"id": "ID_f8aa891a388a",
@ -952,11 +957,7 @@
"day": 28,
"month": 1
},
"category": "ID_a93b8bba4be8",
"end": {
"day": 28,
"month": 1
}
"category": "ID_a93b8bba4be8"
},
{
"id": "ID_c9baf87b7b98",
@ -1032,7 +1033,7 @@
"name": "Task"
}
],
"date": 1638751862853
"date": 1638945324136
}
],
"currentCalendar": null,

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{
"id": "fantasy-calendar",
"name": "Fantasy Calendar",
"version": "1.10.0",
"version": "1.10.1",
"minAppVersion": "0.12.10",
"author": "Jeremy Valentine",
"description": "Fantasy calendars in Obsidian!",

@ -0,0 +1,11 @@
{
"useForwardLinks": true,
"useBackLinks": true,
"useTags": true,
"skipMOCs": false,
"MOCMaxLinks": 30,
"enableHighContrast": false,
"skipFolders": "",
"enableLinks": false,
"enableTransclusion": false
}

File diff suppressed because one or more lines are too long

@ -0,0 +1,10 @@
{
"id": "obsidian-journey-plugin",
"name": "Journey",
"version": "0.0.7",
"minAppVersion": "0.10.10",
"description": "Discover the stories between your notes.",
"author": "Alexis Rondeau",
"authorUrl": "https://publish.obsidian.md/alexisrondeau",
"isDesktopOnly": false
}

@ -0,0 +1,106 @@
.journey-search-form select, .journey-search-form input[type=text], .journey-input-button {
width: 100%;
height: 50px !important;
font-size: 24px;
padding: 5px;
padding-left: 10px;
margin-bottom: 20px;
}
.show-me {
display: block;
}
.hide-me {
display: none;
}
.journey-search-form .journey-search-autocomplete-results-container {
position: relative;
height: 0px;
top: -20px;
width: 730px;
min-width: 730px;
max-width: 730px;
}
.journey-search-autocomplete-results-container .journey-search-autocomplete-results-content {
background-color: #222;
}
.journey-search-autocomplete-results-content-item {
font-size: 24px;
color: white;
border-bottom: 1px solid #000000;
padding: 10px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.journey-input-button {
background-color: black;
color: white;
}
/** Search Results */
.journey-result-list .journey-result-list-item-note,
.journey-result-list .journey-result-list-item-start,
.journey-result-list .journey-result-list-item-end,
.journey-result-list .journey-result-list-item-tag {
font-size: 24px;
padding: 10px;
margin-bottom: 10px;
background-color: #555;
border: 5px solid #777;
border-radius: 10px 10px 10px 10px;
}
.journey-result-list .journey-result-list-item-start {
background-color: darkgreen;
border: 3px solid forestgreen;
}
.journey-result-list .journey-result-list-item-end {
background-color: darkgreen;
border: 3px solid forestgreen;
}
.journey-result-list .journey-result-list-item-tag {
background-color: darkblue;
border: 3px solid royalblue;
}
.journey-result-list-high-contrast .journey-result-list-item-note,
.journey-result-list-high-contrast .journey-result-list-item-start,
.journey-result-list-high-contrast .journey-result-list-item-end,
.journey-result-list-high-contrast .journey-result-list-item-tag {
font-size: 24px;
padding: 10px;
margin-bottom: 10px;
background-color: #000;
color: white;
border: 5px solid #333;
border-radius: 10px 10px 10px 10px;
}
.journey-result-list-reset-link {
text-align: center;
text-decoration: underline;
}
.discovery-settings {
font-size: 9px;
text-align: center;
}
.journey-search-lucky {
text-align: center;
text-decoration: underline;
}
.moc-max-links-counter {
text-align: right;
}

@ -1,25 +1,68 @@
{
"darkMode": false,
"markerIcons": {
"default": {
"prefix": "fas",
"icon": "fa-circle",
"markerColor": "blue"
"markerIconRules": [
{
"ruleName": "default",
"preset": true,
"iconDetails": {
"prefix": "fas",
"icon": "fa-circle",
"markerColor": "blue"
}
},
"#trip": {
"prefix": "fas",
"icon": "fa-hiking",
"markerColor": "green"
{
"ruleName": "#trip",
"preset": false,
"iconDetails": {
"prefix": "fas",
"icon": "fa-hiking",
"markerColor": "green"
}
},
"#trip-water": {
"prefix": "fas",
"markerColor": "blue"
{
"ruleName": "#trip-water",
"preset": false,
"iconDetails": {
"prefix": "fas",
"markerColor": "blue"
}
},
"#dogs": {
"prefix": "fas",
"icon": "fa-paw"
{
"ruleName": "*Hotel*",
"preset": false,
"iconDetails": {
"prefix": "fas",
"icon": "fa-bed"
}
},
{
"ruleName": "*Restaurant*",
"preset": false,
"iconDetails": {
"prefix": "fas",
"icon": "fa-utensils",
"markerColor": "orange"
}
},
{
"ruleName": "*Bar*",
"preset": false,
"iconDetails": {
"prefix": "fas",
"icon": "fa-wine-glass",
"markerColor": "purple"
}
},
{
"ruleName": "*Sport*",
"preset": false,
"iconDetails": {
"prefix": "fas",
"icon": "fa-horse",
"markerColor": "violet"
}
}
},
],
"zoomOnGoFromNote": 15,
"tilesUrl": "https://tile.openstreetmap.org/{z}/{x}/{y}.png",
"autoZoom": true,
@ -27,6 +70,33 @@
"newNoteNameFormat": "Location added on {{date:YYYY-MM-DD}}T{{date:HH-mm}}",
"snippetLines": 3,
"debug": false,
"openIn": [
{
"name": "Google Maps",
"urlPattern": "https://maps.google.com/?q={x},{y}"
}
],
"urlParsingRules": [
{
"name": "Google Maps",
"regExp": "https:\\/\\/\\S*\\@([0-9\\.\\-]+),([0-9\\.\\-]+)\\S*",
"order": "latFirst",
"preset": true
},
{
"name": "OpenStreetMap Show Address",
"regExp": "https:\\/\\/www.openstreetmap.org\\S*query=([0-9\\.\\-]+%2C[0-9\\.\\-]+)\\S*",
"order": "latFirst",
"preset": true
}
],
"mapControls": {
"filtersDisplayed": true,
"viewDisplayed": true
},
"maxClusterRadiusPixels": 20,
"searchProvider": "osm",
"markerIcons": null,
"defaultZoom": 1,
"defaultMapCenter": {
"lat": 40.713955826286046,

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{
"id": "obsidian-map-view",
"name": "Map View",
"version": "0.2.1",
"version": "1.0.0",
"minAppVersion": "0.12.10",
"description": "An interactive map view.",
"isDesktopOnly": false

@ -35,3 +35,7 @@
.toggle:checked + .lbl-toggle + .graph-control-content {
max-height: 100vh;
}
.settings-dense-button {
margin-right: 0;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,9 @@
{
"id": "taskbone-ocr-plugin",
"name": "Taskbone OCR",
"version": "1.0.0",
"minAppVersion": "0.12.3",
"description": "Extract text from images and make it available for search.",
"author": "Dominik Schlund",
"isDesktopOnly": false
}

@ -4,12 +4,12 @@
"type": "split",
"children": [
{
"id": "e8d1a34590cd1804",
"id": "362d008a6535ce8a",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "02.02 Paris/@Restaurants Paris.md",
"file": "02.02 Paris/Prescription.md",
"mode": "preview"
}
}
@ -68,14 +68,14 @@
"state": {
"type": "backlink",
"state": {
"file": "02.02 Paris/@Restaurants Paris.md",
"file": "02.02 Paris/Prescription.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": false
"unlinkedCollapsed": true
}
}
},
@ -104,27 +104,26 @@
}
},
{
"id": "66a329e784f6884b",
"id": "15bcb037002a76a7",
"type": "leaf",
"state": {
"type": "FANTASY_CALENDAR",
"state": {}
}
}
],
"currentTab": 2
]
},
"active": "e8d1a34590cd1804",
"active": "362d008a6535ce8a",
"lastOpenFiles": [
"02.02 Paris/@Restaurants Paris.md",
"02.02 Paris/Doppio.md",
"02.02 Paris/Guibine.md",
"02.02 Paris/@@Paris.md",
"00.03 News/News.md",
"01.01 Life Orga/Creations.md",
"03.03 Food & Wine/Harissa, Squash & Chickpea stew.md",
"03.03 Food & Wine/@Main dishes.md",
"03.03 Food & Wine/Chilli con Carne.md",
"03.03 Food & Wine/Beef n Potatoes Keema Naans.md"
"02.02 Paris/Prescription.md",
"02.02 Paris/La maison bleue.md",
"02.02 Paris/Villa Beaumarchais.md",
"02.02 Paris/Terrass'Hotel.md",
"02.02 Paris/Sinner.md",
"02.02 Paris/Silencio.md",
"02.02 Paris/Sape Bar.md",
"02.02 Paris/Mamma Shelter.md",
"02.02 Paris/Le Perchoir.md",
"02.02 Paris/Le Pavillion de la Reine.md"
]
}

@ -41,9 +41,11 @@ style: number
### Plugins to watch
- [!] <mark style="background:grey">App</mark>: Obsidian optimisation for iOS
- [ ] <mark style="background:grey">Plugin</mark>: crypto lookup
- [ ] <mark style="background:grey">Plugin</mark>: fix timetable
- [x] <mark style="background:grey">App</mark>: Obsidian optimisation for iOS ✅ 2021-12-08
- [!] <mark style="background:grey">Export</mark>: Obsidian -> Email
- [!] <mark style="background:grey">Export</mark>: Obsidian -> Calendar
- [x] <mark style="background:grey">Export</mark>: Obsidian -> Calendar ✅ 2021-12-08
- [x] <mark style="background:grey">Data</mark>: Queries within Tables ✅ 2021-10-23
- [x] <mark style="background:grey">Edit</mark>: Emoji Shortcodes for iOS ✅ 2021-10-23
- [x] <mark style="background:grey">Edit</mark>: Icon plugin for iOS ✅ 2021-10-23

@ -106,7 +106,8 @@ style: number
&emsp;
- [ ] :birthday: **Bon Papa** 🔁 every year 📅 2021-12-07
- [ ] :birthday: **Bon Papa** 🔁 every year 📅 2022-12-07
- [x] :birthday: **Bon Papa** 🔁 every year 📅 2021-12-07 ✅ 2021-12-08
- [ ] :birthday: **Bonne Maman** 🔁 every year 📅 2022-07-13
&emsp;
@ -149,7 +150,8 @@ style: number
- [ ] :birthday: **Hilaire** 🔁 every year 📅 2022-08-26
- [ ] :birthday: **Auguste** 🔁 every year 📅 2022-09-30
- [x] :birthday: **Auguste** 🔁 every year 📅 2021-09-30 ✅ 2021-10-01
- [ ] :birthday: **Eustache** 🔁 every year 📅 2021-12-08
- [ ] :birthday: **Eustache** 🔁 every year 📅 2022-12-08
- [x] :birthday: **Eustache** 🔁 every year 📅 2021-12-08 ✅ 2021-12-08
&emsp;

@ -1,11 +1,11 @@
---
Tag: ["Paris", "Querky", "Intimate", "Fusion", "Restricted Menu", "Michelin"]
Tag: ["Paris", "Querky", "Intimate", "Fusion", "RestrictedMenu", "Michelin", "Restaurant"]
Date: 2021-10-04
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.877872, 2.349308]
Place:
Type: Restaurant
SubType: Bistronomy

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Bar"]
Date: 2021-10-05
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8643469,2.3541705]
Place:
Type: Bar
SubType: DJ

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Bar"]
Date: 2021-10-05
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8629856,2.3640177]
Place:
Type: Bar
SubType: Speakeasy

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Bar"]
Date: 2021-10-05
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.882061,2.3341656]
Place:
Type: Bar
SubType: Cocktail
@ -72,7 +72,6 @@ Phone:: <a href="tel:+33145265000">01 45 26 50 00</a>
Website:: http://www.le-carmen.fr/
&emsp;
---

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Bar"]
Date: 2021-10-05
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.860324,2.3522598]
Place:
Type: Bar
SubType: Rooftop

@ -1,11 +1,11 @@
---
Tag: ["Modern", "OpenKitchen", "Intimacy"]
Tag: ["Modern", "OpenKitchen", "Intimacy", "Restaurant"]
Date: 2021-10-04
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8402276,2.3502573]
Place:
Type: Restaurant
SubType: Modern

@ -5,7 +5,7 @@ Date:
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8482849,2.3767134]
Place:
Type: Restaurant
SubType: Modern

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Restaurant"]
Date:
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8514084,2.3746412]
Place:
Type: Restaurant
SubType: Fusion
@ -56,7 +56,7 @@ style: number
### Contact
&emsp
&emsp;
```ad-address
~~~

@ -5,7 +5,7 @@ Date: 2021-10-04
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.44133135,2.4687121280898348]
Place:
Type: Sport
SubType: Polo

@ -1,11 +1,11 @@
---
Tag: ["Paris", "Terrace", "SmallMenu"]
Tag: ["Paris", "Terrace", "SmallMenu", "Restaurant"]
Date: 2021-10-04
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8795677,2.3519457]
Place:
Type: Restaurant
SubType: Traditional

@ -1,11 +1,11 @@
---
Tag: ["Korean", "Barbecue"]
Tag: ["Korean", "Barbecue", "Restaurant"]
Date: 2021-12-06
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8673175,2.3360878]
Place:
Type: Restaurant
SubType: Barbecue

@ -59,7 +59,7 @@ style: number
```ad-address
~~~
RD 988
Haras de la Cense
78730 Rochefort-en-Yvelines
France
~~~

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Hotel"]
Date: 2021-10-06
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8796098,2.3393971]
Place:
Type: Hotel
SubType: Atmosphere
@ -60,11 +60,12 @@ style: number
#### Address
```
```ad-address
~~~
8 Rue de Navarin
75009 Paris
France
~~~
```
&emsp;
@ -81,6 +82,7 @@ Website:: https://amour.hotelamourparis.fr/
&emsp;
locations:
---
&emsp;

@ -1,11 +1,11 @@
---
Tag: ["Scenic", "Parisian"]
Tag: ["Scenic", "Parisian", "Hotel"]
Date: 2021-10-06
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8726389,2.3422288]
Place:
Type: Hotel
SubType: Traditional
@ -77,6 +77,7 @@ Website:: https://hotelchopin-paris-opera.com/en/
&emsp;
locations:
---
&emsp;

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Hotel"]
Date: 2021-10-06
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.874536,2.3562137]
Place:
Type: Hotel
SubType: Atmosphere

@ -1,11 +1,11 @@
---
Tag: ["Terrace", "Cocktail", "Peruvian"]
Tag: ["Terrace", "Cocktail", "Peruvian", "Restaurant"]
Date: 2021-10-04
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8581109,2.27222]
Place:
Type: ["Restaurant", "Brunch"]
SubType: Fusion

@ -1,11 +1,11 @@
---
Tag: ["Bistro", "WineList", "Terrace"]
Tag: ["Bistro", "WineList", "Terrace", "Restaurant"]
Date: 2021-10-04
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8779733,2.3511226]
Place:
Type: Restaurant
SubType: Bistro

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Bar"]
Date: 2021-10-05
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8639477,2.3435193]
Place:
Type: Bar
SubType: Cocktail

@ -5,7 +5,7 @@ Date: 2021-10-04
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.6034603,2.0173927]
Place:
Type: Hotel
SubType: Countryside
@ -15,7 +15,7 @@ Place:
---
Parent::
Parent:: [[@Hotels Paris|Hotels in Paris]]
---
@ -60,7 +60,7 @@ style: number
```ad-address
~~~
Moulin de Brétigny
78830 Commune de Bonnelles
78830 Bonnelles
France
~~~
```

@ -1,6 +1,6 @@
---
Tag: ["Querky", "Courtyard", "OldHouse"]
Tag: ["Querky", "Courtyard", "OldHouse", "Restaurant"]
Date: 2021-10-04
DocType: "Place"
Hierarchy: "NonRoot"

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Hotel"]
Date: 2021-10-06
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8561992,2.3659881]
Place:
Type: Hotel
SubType: Historic
@ -77,6 +77,7 @@ Website:: http://www.pavillon-de-la-reine.com/
&emsp;
locations:
---
&emsp;

@ -1,11 +1,11 @@
---
Tag: ["Terrace", "Trendy", "EastParis"]
Tag: ["Terrace", "Trendy", "EastParis", "Restaurant"]
Date: 2021-10-04
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8654079,2.3819312]
Place:
Type: Restaurant
SubType: Rooftop
@ -60,7 +60,7 @@ style: number
```ad-address
~~~
14 rue Crépin du Gast
14 rue Crespin du Gast
75011 Paris
France
~~~

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Hotel"]
Date: 2021-10-05
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8597376,2.4028793]
Place:
Type: ["Hotel", "Bar"]
SubType: Rooftop

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Bar"]
Date:
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8549411,2.3379831]
Place:
Type: Bar
SubType: Cocktail

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Bar"]
Date: 2021-10-05
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.879657,2.3549177]
Place:
Type: Bar
SubType: Cocktail

@ -1,11 +1,11 @@
---
Tag: ["DavidLynch"]
Tag: ["DavidLynch", "Bar"]
Date: 2021-10-05
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8688839,2.3433978]
Place:
Type: Bar
SubType: Club
@ -75,6 +75,7 @@ Website:: https://member.silencio-club.com/en/charte-conditions
&emsp;
locations:
---
&emsp;

@ -5,7 +5,7 @@ Date: 2021-10-04
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8647346,2.3596803]
Place:
Type: ["Hotel", "Restaurant"]
SubType: DJ

@ -1,11 +1,11 @@
---
Tag: ["Renovated", "Architecture"]
Tag: ["Renovated", "Architecture", "Hotel"]
Date: 2021-10-06
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8865811,2.333045]
Place:
Type: Hotel
SubType: Rooftop

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Hotel"]
Date: 2021-10-06
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8590809,2.366765]
Place:
Type: Hotel
SubType: Modern

@ -1,11 +1,11 @@
---
Tag: [""]
Tag: ["Hotel"]
Date: 2021-10-06
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location:
location: [48.8882493,2.3356694]
Place:
Type: ["Hotel", "Bar"]
SubType: Parisian
@ -60,8 +60,8 @@ style: number
```ad-address
~~~
23, AVENUE JUNOT
PAVILLON D
23, AVENUE JUNOT
75018 PARIS
France
~~~

Loading…
Cancel
Save