main
iOS 3 years ago
parent 5e35ba4622
commit c243ccf67e

@ -26,7 +26,32 @@ This plugin uses feather icons (https://github.com/feathericons/feather). Feathe
SOFTWARE. SOFTWARE.
The commandSuggester, iconPicker, addFeatherIcons function, feather icon names and the biggest part of the settings tab have been adapted from the Obsidian Customizable Sidebar Plugin (https://github.com/phibr0/obsidian-customizable-sidebar). The feather icons npm module uses itself the 'class names' npm package (https://github.com/JedWatson/classnames).
It is MIT-licensed:
The MIT License (MIT)
Copyright (c) 2018 Jed Watson
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
The commandSuggester, iconPicker, addFeatherIcons function, Obsidian icon names and the biggest part of the settings tab have been adapted from the Obsidian Customizable Sidebar Plugin (https://github.com/phibr0/obsidian-customizable-sidebar).
It is MIT-licensed: It is MIT-licensed:
MIT License MIT License

@ -1,7 +1,7 @@
{ {
"id": "customizable-page-header-buttons", "id": "customizable-page-header-buttons",
"name": "Customizable Page Header", "name": "Customizable Page Header",
"version": "3.1.1", "version": "3.1.2",
"minAppVersion": "0.12.19", "minAppVersion": "0.12.19",
"description": "This plugin lets you add buttons for executing commands to the page header.", "description": "This plugin lets you add buttons for executing commands to the page header.",
"author": "kometenstaub", "author": "kometenstaub",

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "dataview", "id": "dataview",
"name": "Dataview", "name": "Dataview",
"version": "0.4.20", "version": "0.4.21",
"minAppVersion": "0.12.0", "minAppVersion": "0.12.0",
"description": "Complex data views for the data-obsessed.", "description": "Complex data views for the data-obsessed.",
"author": "Michael Brenan <blacksmithgu@gmail.com>", "author": "Michael Brenan <blacksmithgu@gmail.com>",

@ -93,10 +93,11 @@
}, },
"syntaxHighlight": false, "syntaxHighlight": false,
"copyButton": true, "copyButton": true,
"version": "6.6.1", "version": "6.7.0",
"autoCollapse": false, "autoCollapse": false,
"defaultCollapseType": "open", "defaultCollapseType": "open",
"syncLinks": true, "syncLinks": true,
"enableMarkdownProcessor": false, "enableMarkdownProcessor": false,
"injectColor": true "injectColor": true,
"parseTitles": true
} }

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "obsidian-admonition", "id": "obsidian-admonition",
"name": "Admonition", "name": "Admonition",
"version": "6.6.1", "version": "6.7.0",
"minAppVersion": "0.11.0", "minAppVersion": "0.11.0",
"description": "Admonition block-styled content for Obsidian.md", "description": "Admonition block-styled content for Obsidian.md",
"author": "Jeremy Valentine", "author": "Jeremy Valentine",

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "obsidian-dice-roller", "id": "obsidian-dice-roller",
"name": "Dice Roller", "name": "Dice Roller",
"version": "7.4.2", "version": "7.8.4",
"minAppVersion": "0.12.15", "minAppVersion": "0.12.15",
"description": "Inline dice rolling for Obsidian.md", "description": "Inline dice rolling for Obsidian.md",
"author": "Jeremy Valentine", "author": "Jeremy Valentine",

@ -11,7 +11,7 @@
display: inline-block; display: inline-block;
} }
.dice-roller span { .dice-roller span {
font-weight: bolder; font-weight: 700;
} }
.dice-roller > .dice-roller-button { .dice-roller > .dice-roller-button {
display: inline-block; display: inline-block;
@ -88,6 +88,12 @@
position: relative; position: relative;
} }
.dice-roller-result .embedded-table-result p {
margin: 0;
display: inline-block;
}
/** Settings */
.dice-roller-settings .coffee { .dice-roller-settings .coffee {
width: 60%; width: 60%;
color: var(--text-faint); color: var(--text-faint);
@ -97,8 +103,6 @@
.dice-roller-settings .coffee img { .dice-roller-settings .coffee img {
height: 30px; height: 30px;
} }
/** Settings */
.dice-roller-setting-additional-container .dice-roller-setting-additional-container
> .setting-item:not(.setting-item-heading) { > .setting-item:not(.setting-item-heading) {
border: 0px; border: 0px;

@ -1347,7 +1347,7 @@ Plugin has been updated from version ${localManifestJSON.version} to ${primaryMa
const newNotice = new import_obsidian7.Notice(`BRAT const newNotice = new import_obsidian7.Notice(`BRAT
${msg} ${msg}
(Click for info)`, 3e4); (Click for info)`, 3e4);
newNotice.noticeEl.oncontextmenu = (e) => __async(this, null, function* () { newNotice.noticeEl.oncontextmenu = () => __async(this, null, function* () {
window.open(`https://github.com/${repositoryPath}/releases/tag/${primaryManifest.version}`); window.open(`https://github.com/${repositoryPath}/releases/tag/${primaryManifest.version}`);
}); });
} }
@ -1650,6 +1650,7 @@ Plugin reloading .....`, 5e3);
const communityThemeList = Object.values(this.plugin.app.customCss.themes).map((t) => { const communityThemeList = Object.values(this.plugin.app.customCss.themes).map((t) => {
return { display: t, info: t }; return { display: t, info: t };
}); });
communityThemeList.unshift({ display: "Obsidian Default Theme", info: "" });
const gfs = new GenericFuzzySuggester(this.plugin); const gfs = new GenericFuzzySuggester(this.plugin);
gfs.setSuggesterData(communityThemeList); gfs.setSuggesterData(communityThemeList);
yield gfs.display((results) => __async(this, null, function* () { yield gfs.display((results) => __async(this, null, function* () {

@ -1,10 +1,10 @@
{ {
"id": "obsidian42-brat", "id": "obsidian42-brat",
"name": "Obsidian42 - BRAT", "name": "Obsidian42 - BRAT",
"version": "0.6.0", "version": "0.6.1",
"minAppVersion": "0.9.12", "minAppVersion": "0.9.12",
"description": "Easily install a beta version of a plugin for testing.", "description": "Easily install a beta version of a plugin for testing.",
"author": "TfTHacker", "author": "TfTHacker",
"authorUrl": "https://github.com/TfTHacker/obsidian42-brat", "authorUrl": "https://github.com/TfTHacker/obsidian42-brat",
"isDesktopOnly": false "isDesktopOnly": false
} }

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "rss-reader", "id": "rss-reader",
"name": "RSS Reader", "name": "RSS Reader",
"version": "0.6.3", "version": "0.6.6",
"minAppVersion": "0.9.12", "minAppVersion": "0.9.12",
"description": "Read RSS Feeds from within obsidian", "description": "Read RSS Feeds from within obsidian",
"author": "Johannes Theiner", "author": "Johannes Theiner",

@ -9,7 +9,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "03.01 Reading list/Sad Little Men.md", "file": "03.01 Reading list/@Reading master.md",
"mode": "preview" "mode": "preview"
} }
} }
@ -68,7 +68,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "03.01 Reading list/Sad Little Men.md", "file": "03.01 Reading list/@Reading master.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -88,7 +88,7 @@
} }
}, },
{ {
"id": "08dd144bddf51338", "id": "8e49244dd6b51d56",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "RSS_FEED", "type": "RSS_FEED",
@ -96,7 +96,7 @@
} }
}, },
{ {
"id": "0d7650fccb1aef9d", "id": "110937027e33846c",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "DICE_ROLLER_VIEW", "type": "DICE_ROLLER_VIEW",
@ -108,15 +108,15 @@
}, },
"active": "e8d1a34590cd1804", "active": "e8d1a34590cd1804",
"lastOpenFiles": [ "lastOpenFiles": [
"03.01 Reading list/@Reading master.md",
"00.02 Inbox/Keila la Rouge.md",
"00.02 Inbox/Lionel Asbo.md",
"00.02 Inbox/By the Sea.md",
"00.02 Inbox/Sérotonine.md",
"03.01 Reading list/Comprendre l'islam.md",
"03.01 Reading list/Sad Little Men.md", "03.01 Reading list/Sad Little Men.md",
"00.02 Inbox/Auden - private viewing & workshop 2711.md", "00.02 Inbox/Auden - private viewing & workshop 2711.md",
"01.02 Home/@Shopping list.md", "01.02 Home/@Shopping list.md",
"01.02 Home/@Daily tracker.md", "01.02 Home/@Daily tracker.md"
"01.01 Life Orga/@Life Organisation.md",
"00.03 News/News.md",
"00.03 News/Monaco-Lille l'ASM arrache un point, de gros regrets pour le LOSC.md",
"05.02 Networks/VPS Console Dialogue.md",
"05.02 Networks/Configuring Caddy.md",
"01.02 Home/MRCK.md"
] ]
} }

@ -0,0 +1,84 @@
---
Tag: ["Novel", "Society", "Judaism", "LifeChange"]
Date: 2021-11-26
DocType: "Source"
Hierarchy: "NonRoot"
TimeStamp:
location:
Source:
Type: "Book"
Author: "Isaac Bashevis Singer"
Language: "EN"
Published: 1976
Link: https://www.babelio.com/livres/Singer-Keila-la-Rouge/1006978
Read:
---
Parent:: [[@Reading master|Reading list]]
---
&emsp;
```button
name Edit Source parameters
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-KLRSourceEdit
```button
name Save
type command
action Save current file
id Save
```
^button-KLRTNSave
&emsp;
# Keila la Rouge
&emsp;
```ad-abstract
title: Summary
collapse: open
Varsovie est sous le joug du grand Empire Russe. Keila la Rouge, flamboyante de ses cheveux roux et porteuse du passeport jaune des prostituées, se voit enfin « offrir » la proposition de mariage de Yarmy, Yarmy la Teigne. Sa chance dépasse l'entendement, et elle le sait.
```
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Cover
&emsp;
![](https://www.livredepoche.com/sites/default/files/images/livres/couv/9782253100522-001-T.jpeg)
&emsp;
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -2,8 +2,8 @@
QueryTheme: Social QueryTheme: Social
QueryAddedDate: 2021 QueryAddedDate: 2021
QueryLanguage:
QueryAuthor: QueryAuthor:
QueryLanguage:
QueryPublishedD: QueryPublishedD:
QueryReadD: QueryReadD:
cssclass: recipeTable cssclass: recipeTable

@ -49,5 +49,9 @@
assets:Cash:GBP assets:Cash:GBP
2021/11/22 Current expenses 2021/11/22 Current expenses
expenses:Current Expenses:GBP £300.00
assets:Cash:GBP
2021/11/26 Current expenses
expenses:Current Expenses:GBP £300.00 expenses:Current Expenses:GBP £300.00
assets:Cash:GBP assets:Cash:GBP
Loading…
Cancel
Save