vault backup: 2023-04-02 15:41:52

This commit is contained in:
Daniel Bulant 2023-04-02 15:41:52 +02:00
parent 051645223d
commit 5174fbadbe
52 changed files with 18845 additions and 12118 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "better-word-count",
"name": "Better Word Count",
"version": "0.9.1",
"version": "0.9.6",
"description": "Counts the words of selected text in the editor.",
"author": "Luke Leppan",
"authorUrl": "https://lukeleppan.com",

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "cycle-through-panes",
"name": "Cycle through Panes",
"version": "0.1.0",
"version": "1.0.1",
"minAppVersion": "0.15.0",
"description": "Cycle through your open Panes with `ctrl + Tab`, just like with Tabs in your Browser!, ctrl+shift+Tab for Reverse",
"author": "Vinzent03 & phibr0",

File diff suppressed because one or more lines are too long

View file

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

View file

@ -3,6 +3,10 @@
line-height: 1.0;
}
.block-language-dataview {
overflow-y: auto;
}
/*****************/
/** Table Views **/
/*****************/

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "hotkey-helper",
"name": "Hotkey Helper",
"version": "0.3.15",
"version": "0.3.16",
"minAppVersion": "0.15.9",
"description": "Easily see and access any plugin's settings or hotkey assignments (and conflicts) from the Community Plugins tab",
"author": "PJ Eby",

View file

@ -15,7 +15,7 @@
},
"syntaxHighlight": false,
"copyButton": false,
"version": "9.0.5",
"version": "9.2.1",
"autoCollapse": false,
"defaultCollapseType": "open",
"injectColor": true,

File diff suppressed because one or more lines are too long

View file

@ -1,8 +1,8 @@
{
"id": "obsidian-admonition",
"name": "Admonition",
"version": "9.0.5",
"minAppVersion": "0.14.0",
"version": "9.2.1",
"minAppVersion": "1.1.0",
"description": "Enhanced callouts for Obsidian.md",
"author": "Jeremy Valentine",
"authorUrl": "",

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "obsidian-auto-link-title",
"name": "Auto Link Title",
"version": "1.2.5",
"version": "1.4.1",
"minAppVersion": "0.12.17",
"description": "This plugin automatically fetches the titles of links from the web",
"author": "Matt Furden",

File diff suppressed because one or more lines are too long

View file

@ -1,10 +1,11 @@
{
"id": "obsidian-chartsview-plugin",
"name": "Charts View",
"version": "1.2.0",
"version": "1.2.2",
"minAppVersion": "0.9.12",
"description": "Data visualization solution in Obsidian based on Ant Design Charts.",
"author": "caronchen",
"authorUrl": "https://github.com/caronchen/obsidian-chartsview-plugin",
"isDesktopOnly": false
"isDesktopOnly": false,
"fundingUrl": "https://paypal.me/caronchenhz"
}

View file

@ -59156,7 +59156,7 @@ var NimbleEmojiIndex = /*#__PURE__*/function () {
value: function buildIndex() {
var _this = this;
var _loop = function _loop(emoji) {
var _loop = function _loop() {
var emojiData = _this.data.emojis[emoji],
short_names = emojiData.short_names,
emoticons = emojiData.emoticons,
@ -59191,7 +59191,7 @@ var NimbleEmojiIndex = /*#__PURE__*/function () {
};
for (var emoji in this.data.emojis) {
_loop(emoji);
_loop();
}
}
}, {
@ -59285,53 +59285,55 @@ var NimbleEmojiIndex = /*#__PURE__*/function () {
aIndex = _this4.index,
length = 0;
for (var charIndex = 0; charIndex < value.length; charIndex++) {
var _loop2 = function _loop2() {
var _char = value[charIndex];
length++;
aIndex[_char] || (aIndex[_char] = {});
aIndex = aIndex[_char];
if (!aIndex.results) {
(function () {
var scores = {};
aIndex.results = [];
aIndex.pool = {};
var scores = {};
aIndex.results = [];
aIndex.pool = {};
for (var id in aPool) {
var emoji = aPool[id],
search = emoji.search,
sub = value.substr(0, length),
subIndex = search.indexOf(sub);
for (var id in aPool) {
var emoji = aPool[id],
search = emoji.search,
sub = value.substr(0, length),
subIndex = search.indexOf(sub);
if (subIndex != -1) {
var score = subIndex + 1;
if (sub == id) score = 0;
if (subIndex != -1) {
var score = subIndex + 1;
if (sub == id) score = 0;
if (_this4.emojis[id] && _this4.emojis[id][skinTone]) {
aIndex.results.push(_this4.emojis[id][skinTone]);
} else {
aIndex.results.push(_this4.emojis[id]);
}
aIndex.pool[id] = emoji;
scores[id] = score;
}
}
aIndex.results.sort(function (a, b) {
var aScore = scores[a.id],
bScore = scores[b.id];
if (aScore == bScore) {
return a.id.localeCompare(b.id);
if (_this4.emojis[id] && _this4.emojis[id][skinTone]) {
aIndex.results.push(_this4.emojis[id][skinTone]);
} else {
return aScore - bScore;
aIndex.results.push(_this4.emojis[id]);
}
});
})();
aIndex.pool[id] = emoji;
scores[id] = score;
}
}
aIndex.results.sort(function (a, b) {
var aScore = scores[a.id],
bScore = scores[b.id];
if (aScore == bScore) {
return a.id.localeCompare(b.id);
} else {
return aScore - bScore;
}
});
}
aPool = aIndex.pool;
};
for (var charIndex = 0; charIndex < value.length; charIndex++) {
_loop2();
}
return aIndex.results;
@ -104175,7 +104177,7 @@ class EmojiToolbar extends react.Component {
}
render() {
return (react.createElement("div", null,
react.createElement(dist.NimblePicker, { onSelect: this.props.onSelect, autoFocus: true, set: 'twitter', data: twitterData, theme: this.props.theme })));
react.createElement(dist.NimblePicker, { onSelect: this.props.onSelect, autoFocus: true, native: this.props.isNative, set: 'twitter', data: twitterData, theme: this.props.theme })));
}
}
@ -104184,7 +104186,7 @@ function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms || DEF_DELAY));
}
class EmojiModal extends obsidian.Modal {
constructor(app, theme) {
constructor(app, theme, isNative) {
super(app);
this.reactComponent = react.createElement(EmojiToolbar, {
"onSelect": async (emoji) => {
@ -104196,6 +104198,7 @@ class EmojiModal extends obsidian.Modal {
this.close();
},
"theme": theme,
"isNative": isNative,
});
}
async onOpen() {
@ -104210,13 +104213,13 @@ class EmojiModal extends obsidian.Modal {
}
}
const DEFAULT_SETTINGS = {
twemojiActive: true
twitterEmojiActive: false
};
class EmojiPickerPlugin extends obsidian.Plugin {
async onload() {
await this.loadSettings();
this.addSettingTab(new SettingsTab(this.app, this));
if (this.settings.twemojiActive) {
if (this.settings.twitterEmojiActive) {
obsidian.MarkdownPreviewRenderer.registerPostProcessor(EmojiPickerPlugin.postprocessor);
}
this.addCommand({
@ -104229,7 +104232,8 @@ class EmojiPickerPlugin extends obsidian.Plugin {
if (!checking) {
try {
const theme = this.app.getTheme() === 'moonstone' ? 'light' : 'dark';
const myModal = new EmojiModal(this.app, theme);
const isNative = !this.settings.twitterEmojiActive;
const myModal = new EmojiModal(this.app, theme, isNative);
myModal.open();
document.getElementsByClassName("emoji-mart-search")[0].getElementsByTagName('input')[0].focus();
document.getElementsByClassName("emoji-mart-search")[0].getElementsByTagName('input')[0].select();
@ -104266,12 +104270,12 @@ class SettingsTab extends obsidian.PluginSettingTab {
containerEl.createEl('a', { text: 'Created by oliveryh', href: 'https://github.com/oliveryh/' });
containerEl.createEl('h2', { text: 'Settings' });
new obsidian.Setting(containerEl)
.setName('Twitter Emoji')
.setDesc('Improved emoji support. Note: this applies to emoji search and preview only.')
.setName('Twitter Emoji (v13)')
.setDesc('Improved emoji support, but may cause unexpected behavior.')
.addToggle(toggle => toggle
.setValue(this.plugin.settings.twemojiActive)
.setValue(this.plugin.settings.twitterEmojiActive)
.onChange(async (value) => {
this.plugin.settings.twemojiActive = value;
this.plugin.settings.twitterEmojiActive = value;
await this.plugin.saveSettings();
if (value) {
obsidian.MarkdownPreviewRenderer.registerPostProcessor(EmojiPickerPlugin.postprocessor);

View file

@ -1,7 +1,7 @@
{
"id": "obsidian-emoji-toolbar",
"name": "Emoji Toolbar",
"version": "0.3.2",
"version": "0.4.0",
"description": "Quickly search for and insert emojis into your notes.",
"author": "oliveryh",
"authorUrl": "https://github.com/oliveryh/obsidian-emoji-toolbar",

View file

@ -17,12 +17,15 @@
"displayExportedImageIfAvailable": false,
"previewMatchObsidianTheme": false,
"width": "400",
"dynamicStyling": "colorful",
"isLeftHanded": false,
"matchTheme": false,
"matchThemeAlways": false,
"matchThemeTrigger": false,
"defaultMode": "normal",
"defaultPenMode": "never",
"allowPinchZoom": false,
"allowWheelZoom": false,
"zoomToFitOnOpen": true,
"zoomToFitOnResize": true,
"zoomToFitMaxLevel": 2,
@ -78,12 +81,326 @@
"mdCSS": "",
"scriptEngineSettings": {},
"defaultTrayMode": false,
"previousRelease": "1.8.7",
"previousRelease": "1.8.22",
"showReleaseNotes": true,
"showNewVersionNotification": true,
"mathjaxSourceURL": "https://cdn.jsdelivr.net/npm/mathjax@3.2.1/es5/tex-svg.js",
"taskboneEnabled": false,
"taskboneAPIkey": "",
"pinnedScripts": [],
"customPens": [
{
"type": "default",
"freedrawOnly": false,
"strokeColor": "#000000",
"backgroundColor": "transparent",
"fillStyle": "hachure",
"strokeWidth": 0,
"roughness": 0,
"penOptions": {
"highlighter": false,
"constantPressure": false,
"hasOutline": false,
"outlineWidth": 1,
"options": {
"thinning": 0.6,
"smoothing": 0.5,
"streamline": 0.5,
"easing": "easeOutSine",
"start": {
"cap": true,
"taper": 0,
"easing": "linear"
},
"end": {
"cap": true,
"taper": 0,
"easing": "linear"
}
}
}
},
{
"type": "highlighter",
"freedrawOnly": true,
"strokeColor": "#FFC47C",
"backgroundColor": "#FFC47C",
"fillStyle": "solid",
"strokeWidth": 2,
"roughness": null,
"penOptions": {
"highlighter": true,
"constantPressure": true,
"hasOutline": true,
"outlineWidth": 4,
"options": {
"thinning": 1,
"smoothing": 0.5,
"streamline": 0.5,
"easing": "linear",
"start": {
"taper": 0,
"cap": true,
"easing": "linear"
},
"end": {
"taper": 0,
"cap": true,
"easing": "linear"
}
}
}
},
{
"type": "finetip",
"freedrawOnly": false,
"strokeColor": "#3E6F8D",
"backgroundColor": "transparent",
"fillStyle": "hachure",
"strokeWidth": 0.5,
"roughness": 0,
"penOptions": {
"highlighter": false,
"hasOutline": false,
"outlineWidth": 1,
"constantPressure": true,
"options": {
"smoothing": 0.4,
"thinning": -0.5,
"streamline": 0.4,
"easing": "linear",
"start": {
"taper": 5,
"cap": false,
"easing": "linear"
},
"end": {
"taper": 5,
"cap": false,
"easing": "linear"
}
}
}
},
{
"type": "fountain",
"freedrawOnly": false,
"strokeColor": "#000000",
"backgroundColor": "transparent",
"fillStyle": "hachure",
"strokeWidth": 2,
"roughness": 0,
"penOptions": {
"highlighter": false,
"constantPressure": false,
"hasOutline": false,
"outlineWidth": 1,
"options": {
"smoothing": 0.2,
"thinning": 0.6,
"streamline": 0.2,
"easing": "easeInOutSine",
"start": {
"taper": 150,
"cap": true,
"easing": "linear"
},
"end": {
"taper": 1,
"cap": true,
"easing": "linear"
}
}
}
},
{
"type": "marker",
"freedrawOnly": true,
"strokeColor": "#B83E3E",
"backgroundColor": "#FF7C7C",
"fillStyle": "dashed",
"strokeWidth": 2,
"roughness": 3,
"penOptions": {
"highlighter": false,
"constantPressure": true,
"hasOutline": true,
"outlineWidth": 4,
"options": {
"thinning": 1,
"smoothing": 0.5,
"streamline": 0.5,
"easing": "linear",
"start": {
"taper": 0,
"cap": true,
"easing": "linear"
},
"end": {
"taper": 0,
"cap": true,
"easing": "linear"
}
}
}
},
{
"type": "thick-thin",
"freedrawOnly": true,
"strokeColor": "#CECDCC",
"backgroundColor": "transparent",
"fillStyle": "hachure",
"strokeWidth": 0,
"roughness": null,
"penOptions": {
"highlighter": true,
"constantPressure": true,
"hasOutline": false,
"outlineWidth": 1,
"options": {
"thinning": 1,
"smoothing": 0.5,
"streamline": 0.5,
"easing": "linear",
"start": {
"taper": 0,
"cap": true,
"easing": "linear"
},
"end": {
"cap": true,
"taper": true,
"easing": "linear"
}
}
}
},
{
"type": "thin-thick-thin",
"freedrawOnly": true,
"strokeColor": "#CECDCC",
"backgroundColor": "transparent",
"fillStyle": "hachure",
"strokeWidth": 0,
"roughness": null,
"penOptions": {
"highlighter": true,
"constantPressure": true,
"hasOutline": false,
"outlineWidth": 1,
"options": {
"thinning": 1,
"smoothing": 0.5,
"streamline": 0.5,
"easing": "linear",
"start": {
"cap": true,
"taper": true,
"easing": "linear"
},
"end": {
"cap": true,
"taper": true,
"easing": "linear"
}
}
}
},
{
"type": "default",
"freedrawOnly": false,
"strokeColor": "#000000",
"backgroundColor": "transparent",
"fillStyle": "hachure",
"strokeWidth": 0,
"roughness": 0,
"penOptions": {
"highlighter": false,
"constantPressure": false,
"hasOutline": false,
"outlineWidth": 1,
"options": {
"thinning": 0.6,
"smoothing": 0.5,
"streamline": 0.5,
"easing": "easeOutSine",
"start": {
"cap": true,
"taper": 0,
"easing": "linear"
},
"end": {
"cap": true,
"taper": 0,
"easing": "linear"
}
}
}
},
{
"type": "default",
"freedrawOnly": false,
"strokeColor": "#000000",
"backgroundColor": "transparent",
"fillStyle": "hachure",
"strokeWidth": 0,
"roughness": 0,
"penOptions": {
"highlighter": false,
"constantPressure": false,
"hasOutline": false,
"outlineWidth": 1,
"options": {
"thinning": 0.6,
"smoothing": 0.5,
"streamline": 0.5,
"easing": "easeOutSine",
"start": {
"cap": true,
"taper": 0,
"easing": "linear"
},
"end": {
"cap": true,
"taper": 0,
"easing": "linear"
}
}
}
},
{
"type": "default",
"freedrawOnly": false,
"strokeColor": "#000000",
"backgroundColor": "transparent",
"fillStyle": "hachure",
"strokeWidth": 0,
"roughness": 0,
"penOptions": {
"highlighter": false,
"constantPressure": false,
"hasOutline": false,
"outlineWidth": 1,
"options": {
"thinning": 0.6,
"smoothing": 0.5,
"streamline": 0.5,
"easing": "easeOutSine",
"start": {
"cap": true,
"taper": 0,
"easing": "linear"
},
"end": {
"cap": true,
"taper": 0,
"easing": "linear"
}
}
}
}
],
"numberOfCustomPens": 0,
"loadCount": 1,
"patchCommentBlock": false,
"runWYSIWYGpatch": false,

File diff suppressed because one or more lines are too long

View file

@ -1,10 +1,11 @@
{
"id": "obsidian-excalidraw-plugin",
"name": "Excalidraw",
"version": "1.8.7",
"minAppVersion": "1.0.0",
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
"author": "Zsolt Viczian",
"authorUrl": "https://zsolt.blog",
"isDesktopOnly": false
"id": "obsidian-excalidraw-plugin",
"name": "Excalidraw",
"version": "1.8.22",
"minAppVersion": "1.1.6",
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
"author": "Zsolt Viczian",
"authorUrl": "https://zsolt.blog",
"fundingUrl": "https://ko-fi.com/zsolt",
"isDesktopOnly": false
}

View file

@ -21,6 +21,10 @@
display: none;
}
img.excalidraw-embedded-img {
width: 100%;
}
img.excalidraw-svg-right-wrap {
float: right;
margin: 0px 0px 20px 20px;
@ -67,6 +71,17 @@ button.ToolIcon_type_button[title="Export"] {
flex-grow: 1;
}
.excalidraw-prompt-button {
width: 9em;
}
.excalidraw-prompt-buttons-div {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-evenly;
}
li[data-testid] {
border: 0 !important;
margin: 0 !important;
@ -156,6 +171,7 @@ li[data-testid] {
.workspace-leaf-content .excalidraw-view {
padding: 0px 1px; /*1px so on ipad swipe in from left and right still works*/
overflow: hidden;
}
.excalidraw-videoWrapper {
@ -184,7 +200,7 @@ li[data-testid] {
.excalidraw-release .modal {
max-height: 80%;
max-width: 100ch;
max-width: 42em;
}
.excalidraw .Island .scrollbar {
@ -276,7 +292,7 @@ textarea.excalidraw-wysiwyg {
}
label.color-input-container > input {
max-width: 8rem;
max-width: 5rem;
}
.excalidraw .FixedSideContainer_side_top {
@ -288,4 +304,40 @@ label.color-input-container > input {
.excalidraw-hidden {
display: none !important;
}
.excalidraw .panelColumn .buttonList {
max-width: 13rem;
}
.excalidraw button {
width: initial;
}
.excalidraw input[type="color"] {
width: 1.65rem;
height: 1.65rem;
}
.excalidraw input[type="color"]::-webkit-color-swatch {
height: 1.65rem;
}
.excalidraw input[type="color"]::-webkit-color-swatch-wrapper {
padding: 0;
}
.excalidraw-settings input {
min-width: 10em;
}
div.excalidraw-draginfo {
position: absolute;
z-index: 1000;
color: var(--text-normal);
padding: 3px;
background: var(--color-base-40);
display: block;
border-radius: 5px;
}

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "obsidian-filename-heading-sync",
"name": "Filename Heading Sync",
"version": "1.7.0",
"version": "1.8.0",
"minAppVersion": "0.11.0",
"description": "Obsidian plugin for keeping the filename with the first heading of a file in sync",
"author": "dvcrn",

File diff suppressed because one or more lines are too long

View file

@ -5,5 +5,5 @@
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent",
"js": "main.js",
"version": "2.14.0"
"version": "2.19.0"
}

View file

@ -12,6 +12,10 @@
padding: 0;
}
.workspace-leaf-content[data-type='git-history-view'] .view-content {
padding: 0;
}
.loading>svg {
animation: 2s linear infinite loading;
transform-origin: 50% 50%;
@ -42,21 +46,28 @@
.tooltip.mod-right {
overflow-wrap: break-word;
}
.obsidian-git-shortcuts {
margin: 10px;
}
.diff-err {
height: 100%;
.git-tools {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
margin-left: auto;
}
.diff-err-sign {
font-size: 2em;
.git-tools .type {
padding-left: var(--size-2-1);
display: flex;
align-items: center;
justify-content: center;
}
.git-tools .type[data-type="M"] {
color: orange;
}
.git-tools .type[data-type="D"] {
color: red;
}
.git-tools .buttons {
display: flex;
}
.git-tools .buttons > * {
padding: 0 0;
height: auto;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-d-none {

View file

@ -12,6 +12,7 @@
"right": 2,
"bottom": 2,
"left": 2
}
},
"emojiStyle": "none"
}
}

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "obsidian-icon-folder",
"name": "Icon Folder",
"version": "1.5.1",
"version": "1.7.0",
"minAppVersion": "0.9.12",
"description": "This plugin allows to add an emoji or an icon to a folder or file.",
"author": "Florian Woelki",

View file

@ -63,6 +63,10 @@
justify-content: center;
}
.obsidian-icon-folder-icon-preview {
font-size: 22px;
}
.obsidian-icon-folder-icon-preview img {
width: 16px;
height: 16px;
@ -89,3 +93,19 @@
align-items: center;
justify-content: center;
}
/* Custom rule modal. */
.obsidian-icon-folder-custom-rule-modal .modal-title h3 {
margin: 0;
}
.obsidian-icon-folder-custom-rule-modal .modal-content {
display: flex;
align-items: center;
justify-content: center;
}
.obsidian-icon-folder-custom-rule-modal .modal-content input {
width: 100%;
margin-right: 0.5rem;
}

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "obsidian-kanban",
"name": "Kanban",
"version": "1.5.1",
"version": "1.5.2",
"minAppVersion": "1.0.0",
"description": "Create markdown-backed Kanban boards in Obsidian.",
"author": "mgmeyers",

View file

@ -1,10 +1,10 @@
{
"id": "obsidian-latex",
"name": "Extended MathJax",
"version": "0.4.0",
"version": "0.4.1",
"minAppVersion": "0.12.16",
"description": "Adds support for a MathJax preamble and enables additional MathJax extensions for specific domains (chemistry, proofs).",
"author": "Xavier Denis",
"authorUrl": "https://github.com/xldenis/obsidian-latex",
"author": "Xavier Denis & Ng Wei En",
"authorUrl": "https://github.com/wei2912/obsidian-latex",
"isDesktopOnly": false
}

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "obsidian-linter",
"name": "Linter",
"version": "1.10.1",
"version": "1.10.3",
"minAppVersion": "0.15.6",
"description": "Formats and styles your notes. It can be used to format YAML tags, aliases, arrays, and metadata; footnotes; headings; spacing; math blocks; regular markdown contents like list, italics, and bold styles; and more with the use of custom rule options as well.",
"author": "Victor Tao",

File diff suppressed because one or more lines are too long

View file

@ -1,10 +1,10 @@
{
"id": "obsidian-math-plus",
"name": "Obsidian Math+",
"version": "0.4.2",
"minAppVersion": "0.12.0",
"description": "This is an Obsidian plugin for taking math notes using Excalidraw.",
"author": "Oscar Capraro",
"authorUrl": "https://github.com/ocapraro",
"isDesktopOnly": false
}
{
"id": "obsidian-math-plus",
"name": "Obsidian Math+",
"version": "0.5.1",
"minAppVersion": "0.12.0",
"description": "This is an Obsidian plugin for taking math notes using Excalidraw.",
"author": "Oscar Capraro",
"authorUrl": "https://github.com/ocapraro",
"isDesktopOnly": false
}

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "obsidian-outliner",
"name": "Outliner",
"version": "4.2.1",
"version": "4.3.0",
"minAppVersion": "1.0.0",
"description": "Work with your lists like in Workflowy or RoamResearch.",
"author": "Viacheslav Slinko",

View file

@ -247,7 +247,7 @@ var TableOfContentsSettingsTab = class extends import_obsidian2.PluginSettingTab
this.plugin.saveData(this.plugin.settings);
}));
new import_obsidian2.Setting(containerEl).setName("Maximum Header Depth").setDesc("The highest header depth to add to the table of contents. Defaults to 6").addSlider((text) => text.setValue(this.plugin.settings.maximumDepth).setDynamicTooltip().setLimits(1, 6, 1).onChange((value) => {
this.plugin.settings.minimumDepth = value;
this.plugin.settings.maximumDepth = value;
this.plugin.saveData(this.plugin.settings);
}));
}

View file

@ -6,5 +6,5 @@
"description": "Create a table of contents for a note.",
"isDesktopOnly": false,
"minAppVersion": "0.10.12",
"version": "0.1.3"
"version": "0.1.4"
}

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "obsidian-spaced-repetition",
"name": "Spaced Repetition",
"version": "1.9.1",
"version": "1.10.0",
"minAppVersion": "0.15.4",
"description": "Fight the forgetting curve by reviewing flashcards & entire notes.",
"author": "Stephen Mwangi",

View file

@ -1,12 +1,43 @@
.sr-link {
color: var(--text-accent);
text-decoration: underline;
cursor: pointer;
margin-bottom: 16px;
display: inline-block;
.sr-flashcard-menu {
display: block;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
.sr-response {
.sr-flashcard-menu-item {
box-shadow: none !important;
margin-right: 1rem;
cursor: pointer;
}
.sr-flashcard-menu-item:disabled {
cursor: not-allowed;
}
.sr-flashcard-input-modal {
height: 80%;
}
.sr-flashcard-input-area {
height: 80%;
}
.sr-flashcard-input-area > textarea {
height: 100%;
}
.sr-flashcard-edit-button-bar {
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
width: 100%;
margin-top: 1rem;
}
.sr-flashcard-response {
display: inline-grid;
width: 100%;
grid-template-columns: auto auto auto auto;
@ -37,13 +68,6 @@
padding: 4px;
}
.sr-back-btn {
background-color: transparent !important;
box-shadow: none !important;
padding: 0 !important;
margin-right: 4px;
}
#sr-show-answer {
height: 48px;
line-height: 48px;
@ -55,6 +79,7 @@
background-color: #2196f3;
color: #ffffff;
border-radius: 4px;
user-select: text;
}
#sr-hr-card-divide {
@ -69,6 +94,7 @@
height: 48px;
margin: auto;
color: #ffffff;
cursor: pointer;
}
#sr-hard-btn {
@ -87,23 +113,40 @@
font-style: italic;
font-weight: bold;
margin-top: 16px;
display: block;
width: 100%;
}
#sr-flashcard-view {
font-size: var(--font-text-size);
overflow-y: auto;
height: 80%;
user-select: text;
}
#sr-chart-period {
appearance: menulist;
border-right: 8px solid transparent;
}
@media only screen and (max-width: 600px) {
.sr-back-btn {
width: initial !important;
}
.sr-modal-content {
width: 98% !important;
}
.sr-modal-content::-webkit-scrollbar,
#sr-flashcard-view::-webkit-scrollbar {
display: none;
}
.sr-response,
.sr-flashcard-response,
#sr-show-answer {
width: 95% !important;
width: 93.5% !important;
line-height: 60px;
}
#sr-hard-btn,

File diff suppressed because one or more lines are too long

View file

@ -3,7 +3,7 @@
"name": "Tag Wrangler",
"author": "PJ Eby",
"authorUrl": "https://github.com/pjeby",
"version": "0.5.6",
"version": "0.5.8",
"minAppVersion": "0.15.9",
"description": "Rename, merge, toggle, and search tags from the tag pane",
"isDesktopOnly": false

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
{
"id": "various-complements",
"name": "Various Complements",
"version": "7.3.0",
"version": "8.1.0",
"minAppVersion": "0.16.0",
"description": "This plugin enables you to complete words like the auto-completion of IDE",
"author": "tadashi-aikawa",

View file

@ -14,6 +14,10 @@
text-align: right;
}
.various-complements__settings__nested {
padding-left: 30px;
}
.various-complements__settings__header {
position: relative;
padding-left: 25px;

View file

@ -177,14 +177,6 @@
"state": {}
}
},
{
"id": "6781ba7464fb5e5f",
"type": "leaf",
"state": {
"type": "review-queue-list-view",
"state": {}
}
},
{
"id": "a3ceebcf2fd4cef0",
"type": "leaf",
@ -192,6 +184,14 @@
"type": "todo",
"state": {}
}
},
{
"id": "f67c3695a56603f0",
"type": "leaf",
"state": {
"type": "review-queue-list-view",
"state": {}
}
}
],
"currentTab": 12
@ -205,7 +205,6 @@
"hiddenItems": {
"templater-obsidian:Templater": false,
"juggl:Juggl global graph": false,
"obsidian-spaced-repetition:Review flashcards": false,
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
@ -213,10 +212,11 @@
"markdown-importer:Open format converter": false,
"table-editor-obsidian:Advanced Tables Toolbar": false,
"obsidian-excalidraw-plugin:New Excalidraw drawing": false,
"breadcrumbs:Breadcrumbs Visualisation": false
"breadcrumbs:Breadcrumbs Visualisation": false,
"obsidian-spaced-repetition:Review flashcards": false
}
},
"active": "e0bf05276f7aadee",
"active": "f67c3695a56603f0",
"lastOpenFiles": [
"data/Pasted image 20230402153918.png",
"data/Pasted image 20230402153743.png",