saturday update

main
iOS 3 years ago
parent 5508bff4e9
commit f9731125d5

@ -12,7 +12,6 @@
"blockquotes", "blockquotes",
"bulletp_relationship", "bulletp_relationship",
"hyphenation_justification", "hyphenation_justification",
"externallink_icon",
"folder_4_icon", "folder_4_icon",
"custom_icons_frontmatter_tags" "custom_icons_frontmatter_tags"
], ],

@ -37,5 +37,6 @@
"cooklang-obsidian", "cooklang-obsidian",
"obsidian-dialogue-plugin", "obsidian-dialogue-plugin",
"taskbone-ocr-plugin", "taskbone-ocr-plugin",
"obsidian-journey-plugin" "obsidian-journey-plugin",
"link-favicon"
] ]

@ -183,7 +183,7 @@
"current": { "current": {
"year": 2021, "year": 2021,
"month": 11, "month": 11,
"day": 11 "day": 13
}, },
"events": [ "events": [
{ {
@ -563,7 +563,11 @@
"day": 7, "day": 7,
"month": 11 "month": 11
}, },
"category": "ID_a93b8bba4be8" "category": "ID_a93b8bba4be8",
"end": {
"day": 7,
"month": 11
}
}, },
{ {
"id": "ID_395a7bcb5ae8", "id": "ID_395a7bcb5ae8",
@ -652,16 +656,11 @@
"name": "Lifestyle", "name": "Lifestyle",
"note": "01.01 Life Orga/Lifestyle.md", "note": "01.01 Life Orga/Lifestyle.md",
"date": { "date": {
"year": 2021, "year": 2022,
"month": 11, "month": 0,
"day": 10 "day": 10
}, },
"category": "ID_3b8a489a19da", "category": "ID_3b8a489a19da"
"end": {
"year": 2021,
"month": 11,
"day": 10
}
}, },
{ {
"id": "ID_8bea89a97bb8", "id": "ID_8bea89a97bb8",
@ -1033,7 +1032,7 @@
"name": "Task" "name": "Task"
} }
], ],
"date": 1639111841970 "date": 1639217057316
} }
], ],
"currentCalendar": null, "currentCalendar": null,

@ -0,0 +1,210 @@
/*
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
if you want to view the source, please visit the github repository of this plugin
https://github.com/joethei/obisidian-link-favicon
*/
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
var __export = (target, all) => {
__markAsModule(target);
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __reExport = (target, module2, desc) => {
if (module2 && typeof module2 === "object" || typeof module2 === "function") {
for (let key of __getOwnPropNames(module2))
if (!__hasOwnProp.call(target, key) && key !== "default")
__defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
}
return target;
};
var __toModule = (module2) => {
return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
};
var __async = (__this, __arguments, generator) => {
return new Promise((resolve, reject) => {
var fulfilled = (value) => {
try {
step(generator.next(value));
} catch (e) {
reject(e);
}
};
var rejected = (value) => {
try {
step(generator.throw(value));
} catch (e) {
reject(e);
}
};
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
step((generator = generator.apply(__this, __arguments)).next());
});
};
// src/main.ts
__export(exports, {
default: () => FaviconPlugin
});
var import_obsidian3 = __toModule(require("obsidian"));
// src/settings.ts
var import_obsidian2 = __toModule(require("obsidian"));
// src/provider.ts
var import_obsidian = __toModule(require("obsidian"));
var providers = {
"google": { name: "Google", url: (domain) => Promise.resolve("https://www.google.com/s2/favicons?domain=" + domain) },
"duckduckgo": { name: "DuckDuckGo", url: (domain) => Promise.resolve("https://icons.duckduckgo.com/ip3/" + domain + ".ico") },
"iconhorse": { name: "Icon Horse", url: (domain) => Promise.resolve("https://icon.horse/icon/" + domain) },
"splitbee": { name: "Splitbee", url: (domain) => Promise.resolve("https://favicon.splitbee.io/?url=" + domain) },
"besticon": { name: "The Favicon Finder", url: (domain, settings) => {
const host = settings.provider === "besticon" ? settings.providerDomain : settings.fallbackProviderDomain;
return Promise.resolve(host + "/icon?url=" + domain + "&size=32..64..256");
} },
"favicongrabber": { name: "Favicon Grabber", url: (domain) => __async(void 0, null, function* () {
const icons = JSON.parse(yield (0, import_obsidian.request)({
method: "GET",
url: "https://favicongrabber.com/api/grab/" + domain
}));
if (icons.length === 0)
return Promise.resolve("http://invalid.stuff");
return Promise.resolve(icons.icons[0].src);
}) }
};
// src/settings.ts
var DEFAULT_SETTINGS = {
provider: "duckduckgo",
fallbackProvider: "google",
providerDomain: "",
fallbackProviderDomain: "",
ignored: ""
};
var FaviconSettings = class extends import_obsidian2.PluginSettingTab {
constructor(app, plugin) {
super(app, plugin);
this.plugin = plugin;
}
display() {
const { containerEl } = this;
containerEl.empty();
containerEl.createEl("h2", { text: "Link Favicons" });
new import_obsidian2.Setting(containerEl).setName("Icon Provider").addDropdown((dropdown) => {
for (const id in providers) {
if (providers.hasOwnProperty(id)) {
dropdown.addOption(id, providers[id].name);
}
}
dropdown.setValue(this.plugin.settings.provider).onChange((value) => __async(this, null, function* () {
this.plugin.settings.provider = value;
yield this.plugin.saveSettings();
this.display();
}));
});
if (Array.of("besticon").includes(this.plugin.settings.provider)) {
new import_obsidian2.Setting(containerEl).setName("Provider Domain").setDesc("This Provider is be selfhosted, please specify your deployment url. Refer to the readme of the provider for deployment instructions.").addText((text) => text.setValue(this.plugin.settings.providerDomain).onChange((value) => __async(this, null, function* () {
this.plugin.settings.providerDomain = value;
yield this.plugin.saveSettings();
})));
}
new import_obsidian2.Setting(containerEl).setName("Fallback Icon Provider").addDropdown((dropdown) => {
for (const id in providers) {
if (providers.hasOwnProperty(id)) {
dropdown.addOption(id, providers[id].name);
}
}
dropdown.setValue(this.plugin.settings.fallbackProvider).onChange((value) => __async(this, null, function* () {
this.plugin.settings.fallbackProvider = value;
yield this.plugin.saveSettings();
this.display();
}));
});
if (Array.of("besticon").includes(this.plugin.settings.fallbackProvider)) {
new import_obsidian2.Setting(containerEl).setName("Fallback Provider Domain").setDesc("This Provider is be selfhosted, please specify your deployment url. Refer to the readme of the provider for deployment instructions.").addText((text) => text.setValue(this.plugin.settings.fallbackProviderDomain).onChange((value) => __async(this, null, function* () {
this.plugin.settings.fallbackProviderDomain = value;
yield this.plugin.saveSettings();
})));
}
new import_obsidian2.Setting(containerEl).setName("Ignored Domains").setDesc("Don't show an favicon for these domains(one per line)").addTextArea((text) => {
text.setValue(this.plugin.settings.ignored).onChange((value) => __async(this, null, function* () {
this.plugin.settings.ignored = value;
yield this.plugin.saveSettings();
}));
text.inputEl.setAttr("rows", 8);
});
}
};
// src/main.ts
var FaviconPlugin = class extends import_obsidian3.Plugin {
isDisabled(el) {
if (el.getAttribute("data-no-favicon"))
return true;
if (el.getAttribute("data-favicon"))
return true;
const style = getComputedStyle(el, ":before").getPropertyValue("background-url");
console.log(style);
}
onload() {
return __async(this, null, function* () {
console.log("enabling plugin: link favicons");
yield this.loadSettings();
this.addSettingTab(new FaviconSettings(this.app, this));
this.registerMarkdownPostProcessor((element, _) => __async(this, null, function* () {
const provider = providers[this.settings.provider];
const fallbackProvider = providers[this.settings.fallbackProvider];
if (!provider || !fallbackProvider) {
console.log("Link Favicons: misconfigured providers");
return;
}
const links = element.querySelectorAll("a.external-link:not([data-favicon])");
for (let index = 0; index < links.length; index++) {
const link = links.item(index);
if (!this.isDisabled(link)) {
link.dataset.favicon = "true";
try {
const domain = new URL(link.href);
if (!this.settings.ignored.split("\n").contains(domain.hostname)) {
const el = document.createElement("object");
el.addClass("link-favicon");
el.dataset.host = domain.hostname;
el.data = yield provider.url(domain.hostname, this.settings);
el.data.contains(".ico") ? el.type = "image/x-icon" : el.type = "image/png";
el.style.height = "0.8em";
el.style.display = "inline-block";
const img = el.createEl("img");
img.src = yield fallbackProvider.url(domain.hostname, this.settings);
img.addClass("link-favicon");
img.style.height = "0.8em";
img.style.display = "block";
link.prepend(el);
}
} catch (e) {
console.log("Link Favicons: invalid url: " + link.href);
}
}
}
}));
});
}
onunload() {
console.log("disabling plugin: link favicons");
}
loadSettings() {
return __async(this, null, function* () {
this.settings = Object.assign({}, DEFAULT_SETTINGS, yield this.loadData());
});
}
saveSettings() {
return __async(this, null, function* () {
yield this.saveData(this.settings);
});
}
};

@ -0,0 +1,10 @@
{
"id": "link-favicon",
"name": "Link Favicons",
"version": "1.2.2",
"minAppVersion": "0.12.0",
"description": "See the favicon for a linked website. ",
"author": "Johannes Theiner",
"authorUrl": "https://github.com/joethei",
"isDesktopOnly": false
}

@ -0,0 +1,8 @@
.link-favicon{
vertical-align: bottom;
margin-bottom: 0.3em;
margin-left: 0.1em;
margin-right: 0.1em;
cursor: pointer !important;
image-rendering: -webkit-optimize-contrast;
}

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "meld-encrypt", "id": "meld-encrypt",
"name": "Meld Encrypt", "name": "Meld Encrypt",
"version": "1.5.1", "version": "1.6.0",
"minAppVersion": "0.12.15", "minAppVersion": "0.12.15",
"description": "Hide secrets in your notes", "description": "Hide secrets in your notes",
"author": "meld-cp", "author": "meld-cp",

@ -35,4 +35,8 @@
display: inline-block; display: inline-block;
margin: 0 0 0 1em; margin: 0 0 0 1em;
width: auto; width: auto;
}
.meld-e-hint{
flex: 20;
} }

File diff suppressed because one or more lines are too long

@ -1,8 +1,8 @@
{ {
"id": "obsidian-advanced-uri", "id": "obsidian-advanced-uri",
"name": "Advanced Obsidian URI", "name": "Advanced URI",
"description": "Advanced modes for Obsidian URI", "description": "Advanced modes for Obsidian URI",
"isDesktopOnly": false, "isDesktopOnly": false,
"js": "main.js", "js": "main.js",
"version": "1.16.0" "version": "1.16.1"
} }

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.8.6", "version": "7.10.1",
"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",

@ -1,329 +1,278 @@
/* src/assets/main.css */
.dice-roller { .dice-roller {
position: relative; position: relative;
display: inline-block; display: inline-block;
cursor: pointer; cursor: pointer;
margin: 0 0.25em 0 0; margin: 0 0.25em 0 0;
} }
.dice-roller.no-icon { .dice-roller.no-icon {
margin: 0; margin: 0;
} }
.dice-roller > div { .dice-roller > div {
display: inline-block; display: inline-block;
} }
.dice-roller span { .dice-roller span {
font-weight: 700; font-weight: 700;
} }
.dice-roller > .dice-roller-button { .dice-roller > .dice-roller-button {
display: inline-block; display: inline-block;
position: relative; position: relative;
font-size: inherit; font-size: inherit;
margin-left: 0.25em; margin-left: 0.25em;
} }
.dice-roller.has-embed .dice-roller-result { .dice-roller.has-embed .dice-roller-result {
width: 100%; width: 100%;
padding: 1rem; padding: 1rem;
} }
.dice-roller.has-embed .dice-roller-result .markdown-embed { .dice-roller.has-embed .dice-roller-result .markdown-embed {
display: flex; display: flex;
margin-top: 0.5rem; margin-top: 0.5rem;
padding-right: 0; padding-right: 0;
} }
.dice-roller.has-embed .dice-roller-button { .dice-roller.has-embed .dice-roller-button {
padding-top: 0.5rem; padding-top: 0.5rem;
} }
.dice.tooltip { .dice.tooltip {
max-width: unset !important; max-width: unset !important;
} }
.workspace .markdown-preview-view .dice-roller.has-embed { .workspace .markdown-preview-view .dice-roller.has-embed {
display: flex; display: flex;
padding-right: 0.25rem; padding-right: 0.25rem;
margin: 0.25rem 0; margin: 0.25rem 0;
} }
.dice-no-results { .dice-no-results {
font-style: italic; font-style: italic;
text-align: center; text-align: center;
} }
.dice-roller.has-embed .internal-embed { .dice-roller.has-embed .internal-embed {
width: 100%; width: 100%;
} }
.dice-roller.has-embed .internal-embed *:last-child:not(svg):not(.dice-content-copy) {
.dice-roller.has-embed margin-bottom: 15px;
.internal-embed
*:last-child:not(svg):not(.dice-content-copy) {
margin-bottom: 15px;
} }
.dice-roller.has-embed .dice-file-name { .dice-roller.has-embed .dice-file-name {
font-style: italic; font-style: italic;
} }
.dice-section-result { .dice-section-result {
position: relative; position: relative;
} }
.dice-content-copy { .dice-content-copy {
color: var(--text-faint); color: var(--text-faint);
cursor: pointer; cursor: pointer;
height: fit-content; height: fit-content;
} }
.dice-content-copy.no-show { .dice-content-copy.no-show {
display: none; display: none;
} }
.dice-content-copy:hover { .dice-content-copy:hover {
color: var(--text-normal); color: var(--text-normal);
} }
.dice-roller.has-embed .dice-section-result .dice-content-copy, .dice-roller.has-embed .dice-section-result .dice-content-copy,
.dice-content-copy:hover { .dice-content-copy:hover {
opacity: 1; opacity: 1;
} }
.dice-roller-result { .dice-roller-result {
position: relative; position: relative;
} }
.dice-roller-result .embedded-table-result p { .dice-roller-result .embedded-table-result p {
margin: 0; margin: 0;
display: inline-block; display: inline-block;
} }
/** Settings */
.dice-roller-settings .coffee { .dice-roller-settings .coffee {
width: 60%; width: 60%;
color: var(--text-faint); color: var(--text-faint);
margin: 0.5rem auto; margin: 0.5rem auto;
text-align: center; text-align: center;
} }
.dice-roller-settings .coffee img { .dice-roller-settings .coffee img {
height: 30px; height: 30px;
} }
.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;
} }
.dice-roller-setting-additional-container { .dice-roller-setting-additional-container {
border-bottom: 1px solid var(--background-modifier-border); border-bottom: 1px solid var(--background-modifier-border);
border-top: 1px solid var(--background-modifier-border); border-top: 1px solid var(--background-modifier-border);
padding: 18px 0; padding: 18px 0;
} }
.dice-roller-setting-additional-container > .setting-item-heading:only-child { .dice-roller-setting-additional-container > .setting-item-heading:only-child {
padding-bottom: 18px; padding-bottom: 18px;
} }
.dice-roller-setting-additional-container > .additional .no-formulas { .dice-roller-setting-additional-container > .additional .no-formulas {
width: auto; width: auto;
display: block; display: block;
text-align: center; text-align: center;
} }
.dice-roller-setting-additional-container > .additional > .setting-item { .dice-roller-setting-additional-container > .additional > .setting-item {
border-top: 0; border-top: 0;
padding-top: 9px; padding-top: 9px;
} }
.dice-roller-setting-additional-container .dice-roller-setting-additional-container > .additional > .setting-item > .setting-item-control > *:first-child {
> .additional margin: 0 6px;
> .setting-item
> .setting-item-control
> *:first-child {
margin: 0 6px;
} }
.dice-roller-setting-additional-container .add-new-formula { .dice-roller-setting-additional-container .add-new-formula {
margin: 0 1rem; margin: 0 1rem;
padding: 1rem 1rem 0 1rem; padding: 1rem 1rem 0 1rem;
border-radius: 0.5rem; border-radius: 0.5rem;
box-shadow: 0 0 0.25rem var(--background-modifier-box-shadow); box-shadow: 0 0 0.25rem var(--background-modifier-box-shadow);
} }
.dice-roller-setting-additional-container .add-new-formula .formula-data .setting-item {
.dice-roller-setting-additional-container border: 0;
.add-new-formula
.formula-data
.setting-item {
border: 0;
} }
/* src/view/view.css */
.renderer-container { .renderer-container {
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
pointer-events: none;
pointer-events: none; z-index: 9999999;
z-index: 9999999; transition: opacity 1s ease-out;
transition: opacity 1s ease-out;
} }
.dice-roller-view .dice-roller-roll:disabled { .dice-roller-view .dice-roller-roll:disabled {
cursor: not-allowed; cursor: not-allowed;
opacity: 0.75; opacity: 0.75;
} }
/** Dice Roller View CSS */
.workspace-split.mod-right-split .view-content.dice-roller-view { .workspace-split.mod-right-split .view-content.dice-roller-view {
padding: 0.5rem; padding: 0.5rem;
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
justify-content: flex-start; justify-content: flex-start;
gap: 12px; gap: 12px;
} }
.dice-roller-view .dice-roller-grid { .dice-roller-view .dice-roller-grid {
display: grid; display: grid;
grid-template-rows: auto auto; grid-template-rows: auto auto;
justify-content: center; justify-content: center;
gap: 6px; gap: 6px;
} }
.dice-roller-view .dice-roller-grid .dice-buttons { .dice-roller-view .dice-roller-grid .dice-buttons {
display: flex; display: flex;
flex-flow: row wrap; flex-flow: row wrap;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
width: fit-content; width: fit-content;
} }
.dice-roller-view .dice-roller-grid .dice-custom-formula-container { .dice-roller-view .dice-roller-grid .dice-custom-formula-container {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
} }
.dice-roller-view .dice-roller-grid .dice-custom-formula { .dice-roller-view .dice-roller-grid .dice-custom-formula {
display: flex; display: flex;
justify-content: flex-start; justify-content: flex-start;
align-items: center; align-items: center;
} }
.dice-roller-view .setting-editor-extra-setting-button { .dice-roller-view .setting-editor-extra-setting-button {
width: fit-content; width: fit-content;
} }
.dice-roller-view .dice-button .clickable-icon > svg { .dice-roller-view .dice-button .clickable-icon > svg {
width: 36px; width: 36px;
height: 36px; height: 36px;
} }
.dice-roller-view .dice-context { .dice-roller-view .dice-context {
display: grid; display: grid;
grid-template-columns: 1fr auto; grid-template-columns: 1fr auto;
} }
.dice-roller-view .dice-context .add-subtract { .dice-roller-view .dice-context .add-subtract {
display: flex; display: flex;
align-items: center; align-items: center;
} }
.dice-roller-view/* .dice-context */ input, .dice-roller-view textarea { .dice-roller-view input,
width: 100%; .dice-roller-view textarea {
width: 100%;
} }
.dice-roller-view .dice-roller-grid .advantage-disadvantage { .dice-roller-view .dice-roller-grid .advantage-disadvantage {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
gap: 0.5rem; gap: 0.5rem;
} }
.dice-roller-view .dice-roller-grid .advantage-disadvantage button { .dice-roller-view .dice-roller-grid .advantage-disadvantage button {
margin: 0; margin: 0;
min-width: 66px; min-width: 66px;
} }
.dice-roller-view .dice-roller-formula { .dice-roller-view .dice-roller-formula {
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
justify-content: space-between; justify-content: space-between;
align-items: flex-end; align-items: flex-end;
gap: 12px; gap: 12px;
} }
.dice-roller-view .dice-roller-formula .action-buttons { .dice-roller-view .dice-roller-formula .action-buttons {
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
} }
.dice-roller-view .dice-roller-formula button { .dice-roller-view .dice-roller-formula button {
margin-right: 0; margin-right: 0;
margin-left: 12px; margin-left: 12px;
} }
.dice-roller-view hr { .dice-roller-view hr {
margin-bottom: 0; margin-bottom: 0;
} }
.dice-roller-view .dice-roller-results-container .dice-roller-results-header { .dice-roller-view .dice-roller-results-container .dice-roller-results-header {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
margin: 6px 0px; margin: 6px 0px;
width: 100%; width: 100%;
border-bottom: 1px solid var(--background-modifier-border); border-bottom: 1px solid var(--background-modifier-border);
} }
.dice-roller-view .dice-roller-view .dice-roller-results-container .dice-roller-results-header h4 {
.dice-roller-results-container margin: 0px;
.dice-roller-results-header
h4 {
margin: 0px;
} }
.dice-roller-view .dice-roller-results { .dice-roller-view .dice-roller-results {
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
gap: 6px; gap: 6px;
} }
.dice-roller-view .dice-roller-results .view-result { .dice-roller-view .dice-roller-results .view-result {
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
border: 1px solid var(--background-modifier-border); border: 1px solid var(--background-modifier-border);
border-radius: 0.25rem; border-radius: 0.25rem;
position: relative; position: relative;
} }
.dice-roller-view .dice-roller-results .view-result .dice-content-copy { .dice-roller-view .dice-roller-results .view-result .dice-content-copy {
position: absolute; position: absolute;
top: 0; top: 0;
right: 0; right: 0;
padding: 0.25rem; padding: 0.25rem;
} }
.dice-roller-view .dice-roller-results .view-result .dice-result-reroll { .dice-roller-view .dice-roller-results .view-result .dice-result-reroll {
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
padding: 0.25rem; padding: 0.25rem;
margin: 0; margin: 0;
} }
.dice-roller-view .dice-roller-results .view-result strong { .dice-roller-view .dice-roller-results .view-result strong {
font-size: x-large; font-size: x-large;
} }
.dice-roller-view .dice-roller-results .view-result .result-context { .dice-roller-view .dice-roller-results .view-result .result-context {
align-self: flex-end; align-self: flex-end;
width: 100%; width: 100%;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
padding: 0.25rem; padding: 0.25rem;
font-size: x-small; font-size: x-small;
} }
.dice-roller-view .dice-roller-view .dice-roller-results .view-result .result-context .clickable-icon {
.dice-roller-results margin-right: 0;
.view-result
.result-context
.clickable-icon {
margin-right: 0;
} }
.dice-roller-view .dice-roller-results > span { .dice-roller-view .dice-roller-results > span {
color: var(--text-muted); color: var(--text-muted);
margin: 0 auto; margin: 0 auto;
} }
.dice-renderer { .dice-renderer {
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
} }
/* src/styles.css */

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.7.1", "version": "0.8.0",
"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",

@ -61,3 +61,11 @@ input.is-invalid {
.rss-tooltip:hover .tooltiptext { .rss-tooltip:hover .tooltiptext {
visibility: visible; visibility: visible;
} }
.rss-content img {
max-width: 100%;
}
.rss-subtitle {
display: inline;
}

@ -4,18 +4,13 @@
"type": "split", "type": "split",
"children": [ "children": [
{ {
"id": "48dd0a910a32e474", "id": "f02b54d5135a4e7e",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "map", "type": "markdown",
"state": { "state": {
"version": 15, "file": "02.03 Zürich/@Bars Zürich.md",
"mapCenter": { "mode": "preview"
"lat": 40.713955826286046,
"lng": -180.70312500000003
},
"mapZoom": 1,
"tags": []
} }
} }
} }
@ -73,6 +68,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "02.03 Zürich/@Bars Zürich.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -92,15 +88,15 @@
} }
}, },
{ {
"id": "23ee6daffe147aea", "id": "15bcb037002a76a7",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "RSS_FEED", "type": "FANTASY_CALENDAR",
"state": {} "state": {}
} }
}, },
{ {
"id": "bda35bb1b7e69269", "id": "fc559232cdc23159",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "DICE_ROLLER_VIEW", "type": "DICE_ROLLER_VIEW",
@ -108,26 +104,27 @@
} }
}, },
{ {
"id": "15bcb037002a76a7", "id": "423db06a49dba199",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "FANTASY_CALENDAR", "type": "RSS_FEED",
"state": {} "state": {}
} }
} }
] ],
"currentTab": 4
}, },
"active": "48dd0a910a32e474", "active": "f02b54d5135a4e7e",
"lastOpenFiles": [ "lastOpenFiles": [
"01.03 Family/Pierre Bédier.md", "02.03 Zürich/@Bars Zürich.md",
"01.03 Family/Philomène de Villeneuve.md", "02.03 Zürich/@Restaurants Zürich.md",
"01.03 Family/Opportune de Villeneuve.md", "02.03 Zürich/Razzia.md",
"01.03 Family/Ophélie Bédier.md", "02.03 Zürich/@@Zürich.md",
"01.03 Family/Olympe Bédier.md", "00.01 Admin/Obsidian plugins.md",
"01.03 Family/Noémie de Villeneuve.md", "05.02 Networks/Server Tools.md",
"01.03 Family/Marguerite de Villeneuve.md", "00.03 News/News.md",
"01.03 Family/Louis Bédier.md", "01.01 Life Orga/Lifestyle.md",
"01.03 Family/Jérôme Bédier.md", "06.02 Investments/Le Miel de Paris.md",
"01.03 Family/Laurence Bédier.md" "01.03 Family/Pierre Bédier.md"
] ]
} }

@ -43,14 +43,15 @@ style: number
- [ ] <mark style="background:grey">Plugin</mark>: crypto lookup - [ ] <mark style="background:grey">Plugin</mark>: crypto lookup
- [ ] <mark style="background:grey">Plugin</mark>: fix timetable - [ ] <mark style="background:grey">Plugin</mark>: fix timetable
- [ ] <mark style="background:grey">Plugin</mark>: [wordpress](https://github.com/devbean/obsidian-wordpress)
- [x] <mark style="background:grey">App</mark>: Obsidian optimisation for iOS ✅ 2021-12-08 - [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 -> Email
- [x] <mark style="background:grey">Export</mark>: Obsidian -> Calendar ✅ 2021-12-08 - [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">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>: Emoji Shortcodes for iOS ✅ 2021-10-23
- [x] <mark style="background:grey">Edit</mark>: Icon plugin for iOS ✅ 2021-10-23 - [x] <mark style="background:grey">Edit</mark>: Icon plugin for iOS ✅ 2021-10-23
- [?] <mark style="background:grey">Map</mark>: QuickAdd/getLocation for iOS - [x] <mark style="background:grey">Map</mark>: QuickAdd/getLocation for iOS ✅ 2021-12-11
- [?] <mark style="background:grey">Map</mark>: Map rendering for iOS (Leaflet/Map View) - [x] <mark style="background:grey">Map</mark>: Map rendering for iOS (Leaflet/Map View) ✅ 2021-12-11
&emsp; &emsp;

@ -8,7 +8,7 @@ Priority: "Low"
Status: "In-progress" Status: "In-progress"
StartDate: 2021-08-12 StartDate: 2021-08-12
DueDate: 2021-12-31 DueDate: 2021-12-31
NextReviewDate: &RD 2021-12-10 NextReviewDate: &RD 2022-01-10
TimeStamp: 2021-08-12 TimeStamp: 2021-08-12
locations: locations:
fc-calendar: "D2D Calendar" fc-calendar: "D2D Calendar"

@ -38,6 +38,8 @@ id CreateNote
``` ```
^button-ParisNewNote ^button-ParisNewNote
```button ```button
name Save name Save
type command type command

@ -56,10 +56,10 @@ style: number
&emsp; &emsp;
#### Notting Hill #### Bellevue
[[#^Top|TOP]] [[#^Top|TOP]]
```dataviewjs ```dataviewjs
dv.view("00.01 Admin/dv-views/query_place", {country: "Suisse", placetype: "Bar", area: "NottingHill"}) dv.view("00.01 Admin/dv-views/query_place", {country: "CH", placetype: "Bar", area: "Bellevue"})
``` ```
&emsp; &emsp;

@ -55,10 +55,10 @@ style: number
&emsp; &emsp;
#### French #### Swiss
[[#^Top|TOP]] [[#^Top|TOP]]
```dataviewjs ```dataviewjs
dv.view("00.01 Admin/dv-views/query_place", {country: "Suisse", placetype: "Restaurant", style: "French"}) dv.view("00.01 Admin/dv-views/query_place", {country: "CH", placetype: "Restaurant", style: "Swiss"})
``` ```
&emsp; &emsp;
@ -114,7 +114,7 @@ dv.view("00.01 Admin/dv-views/query_place", {country: "Suisse", placetype: "Rest
#### Marais #### Marais
[[#^Top|TOP]] [[#^Top|TOP]]
```dataviewjs ```dataviewjs
dv.view("00.01 Admin/dv-views/query_place", {country: "Suisse", placetype: "Restaurant", area: "Marais"}) dv.view("00.01 Admin/dv-views/query_place", {country: "CH", placetype: "Restaurant", area: "Bellevue"})
``` ```
&emsp; &emsp;

@ -0,0 +1,91 @@
---
Tag: ["Restaurant"]
Date: 2021-12-11
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location: [47.3607763,8.551603810962654]
Place:
Type: ["Restaurant", "Bar"]
SubType: Modern
Style: Swiss
Location: "Bellevue"
Country: "CH"
Status: "Prospect"
---
Parent:: [[@Restaurants Zürich|Restaurants in Zürich]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-RazziaSave
&emsp;
# Razzia
&emsp;
```ad-abstract
title: Summary
collapse: open
1ere recommendation in Zürich
```
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Contact
&emsp;
```ad-address
~~~
Seefeldstrasse 82
8008 Zürich
Switzerland
~~~
```
&emsp;
Phone:: <a href="tel:++41442967070">044 296 70 70</a>
Email:: welcome@razzia-zuerich.ch
Website:: [razzia. restaurant & bar Zürich - home](https://razzia-zuerich.ch/)
&emsp;
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;
Loading…
Cancel
Save