Skip to content

Commit ec51760

Browse files
committed
.vault
1 parent f553921 commit ec51760

File tree

12 files changed

+65
-60
lines changed

12 files changed

+65
-60
lines changed

.vault/semantic-chunking/.obsidian/core-plugins.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@
2626
"workspaces": false,
2727
"file-recovery": true,
2828
"publish": false,
29-
"sync": false
29+
"sync": false,
30+
"webviewer": true
3031
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"rememberedFiles":{"releases/v2.3.0 - 📦 Transformers.js v3.md":{"path":"releases/v2.3.0 - 📦 Transformers.js v3.md","lastSavedTime":1734121430195,"stateData":{"scrollInfo":{"top":0,"left":0},"selection":{"ranges":[{"anchor":0,"head":0}],"main":0}}},"🍱 Semantic Chunking.md":{"path":"🍱 Semantic Chunking.md","lastSavedTime":1734124114694,"stateData":{"scrollInfo":{"top":0,"left":0},"selection":{"ranges":[{"anchor":0,"head":0}],"main":0}}}}}
1+
{"rememberedFiles":{"releases/v2.3.0 - 📦 Transformers.js v3.md":{"path":"releases/v2.3.0 - 📦 Transformers.js v3.md","lastSavedTime":1734121430195,"stateData":{"scrollInfo":{"top":0,"left":0},"selection":{"ranges":[{"anchor":0,"head":0}],"main":0}}},"🍱 Semantic Chunking.md":{"path":"🍱 Semantic Chunking.md","lastSavedTime":1734645836010,"stateData":{"scrollInfo":{"top":0,"left":0},"selection":{"ranges":[{"anchor":0,"head":0}],"main":0}}},"releases/v2.4.0 - ✂️ Clean Split.md":{"path":"releases/v2.4.0 - ✂️ Clean Split.md","lastSavedTime":1734592324503,"stateData":{"scrollInfo":{"top":0,"left":0},"selection":{"ranges":[{"anchor":279,"head":77}],"main":0}}}}}

.vault/semantic-chunking/.obsidian/plugins/pexels-banner/data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"showPinIcon": true,
5050
"pinnedImageFolder": "pixel-banner-images",
5151
"showReleaseNotes": true,
52-
"lastVersion": "2.13.1",
52+
"lastVersion": "2.13.2",
5353
"showRefreshIcon": true,
5454
"showViewImageIcon": false,
5555
"hidePixelBannerFields": true,

.vault/semantic-chunking/.obsidian/plugins/pexels-banner/main.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1276,7 +1276,7 @@ var ImageViewModal = class extends import_obsidian2.Modal {
12761276
};
12771277

12781278
// virtual-module:virtual:release-notes
1279-
var releaseNotes = '<h2>\u{1F389} What&#39;s New</h2>\n<h3>v2.13.1</h3>\n<h4>\u{1F4E6} Updated</h4>\n<ul>\n<li>Banner width now updates when the window is resized</li>\n<li>Banner width is now compatible with the popular <code>minimal</code> theme</li>\n</ul>\n<h3>v2.13.0</h3>\n<h4>\u2728 Added</h4>\n<ul>\n<li>New <code>view image</code> button icon option to open the banner image in a full-screen modal \xA0<br>(works with plugins like <code>image toolkit</code>, etc.)</li>\n</ul>\n<p><a href="https://raw.githubusercontent.com/jparkerweb/ref/refs/heads/main/equill-labs/pixel-banner/pixel-banner-v2.13.0.jpg"><img src="https://raw.githubusercontent.com/jparkerweb/ref/refs/heads/main/equill-labs/pixel-banner/pixel-banner-v2.13.0.jpg" alt="screenshot"></a></p>\n';
1279+
var releaseNotes = '<h2>\u{1F389} What&#39;s New</h2>\n<h3>v2.13.2</h3>\n<h4>\u{1F4E6} Updated</h4>\n<ul>\n<li>Adjusted dynamic CSS calculations for banner positioning, padding, and scrollbar width</li>\n</ul>\n<h3>v2.13.1</h3>\n<h4>\u{1F4E6} Updated</h4>\n<ul>\n<li>Banner width now updates when the window is resized</li>\n<li>Banner width is now compatible with the popular <code>minimal</code> theme</li>\n</ul>\n<h3>v2.13.0</h3>\n<h4>\u2728 Added</h4>\n<ul>\n<li>New <code>view image</code> button icon option to open the banner image in a full-screen modal \xA0<br>(works with plugins like <code>image toolkit</code>, etc.)</li>\n</ul>\n<p><a href="https://raw.githubusercontent.com/jparkerweb/ref/refs/heads/main/equill-labs/pixel-banner/pixel-banner-v2.13.0.jpg"><img src="https://raw.githubusercontent.com/jparkerweb/ref/refs/heads/main/equill-labs/pixel-banner/pixel-banner-v2.13.0.jpg" alt="screenshot"></a></p>\n';
12801280

12811281
// src/main.js
12821282
function getFrontmatterValue(frontmatter, fieldNames) {
@@ -2106,7 +2106,8 @@ module.exports = class PixelBannerPlugin extends import_obsidian3.Plugin {
21062106
}
21072107
const elWidth = el.clientWidth;
21082108
const scrollbarWidth = 12;
2109-
el.style.setProperty("--pixel-banner-width", `${elWidth - scrollbarWidth}px`);
2109+
el.style.setProperty("--pixel-banner-width", `${elWidth - scrollbarWidth * 2}px`);
2110+
el.style.setProperty("--pixel-banner-scrollbar-width", `${scrollbarWidth}px`);
21102111
}
21112112
getFolderSpecificSetting(filePath, settingName) {
21122113
var _a;
@@ -2219,7 +2220,7 @@ module.exports = class PixelBannerPlugin extends import_obsidian3.Plugin {
22192220
if (existingViewIcon) existingViewIcon.remove();
22202221
if (existingPinIcon) existingPinIcon.remove();
22212222
if (existingRefreshIcon) existingRefreshIcon.remove();
2222-
let leftOffset = 5;
2223+
let leftOffset = 17;
22232224
if (!isEmbedded && this.settings.showViewImageIcon) {
22242225
const viewImageIcon = createDiv({ cls: "view-image-icon" });
22252226
viewImageIcon.style.position = "absolute";
@@ -2681,5 +2682,3 @@ async function waitForFileRename(file, plugin) {
26812682
}, 1500);
26822683
});
26832684
}
2684-
2685-
/* nosourcemap */
Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1 @@
1-
{
2-
"id": "pexels-banner",
3-
"name": "Pixel Banner",
4-
"version": "2.13.1",
5-
"minAppVersion": "1.6.0",
6-
"description": "Apply an image from various sources as a banner to your notes.",
7-
"author": "Justin Parker (eQui\\\\ Labs)",
8-
"authorUrl": "https://www.equilllabs.com",
9-
"fundingUrl": "https://ko-fi.com/jparkerweb",
10-
"isDesktopOnly": false
11-
}
1+
{"id":"pexels-banner","name":"Pixel Banner","version":"2.13.2","minAppVersion":"1.6.0","description":"Apply an image from various sources as a banner to your notes.","author":"Justin Parker (eQui\\\\ Labs)","authorUrl":"https://www.equilllabs.com","fundingUrl":"https://ko-fi.com/jparkerweb","isDesktopOnly":false}

.vault/semantic-chunking/.obsidian/plugins/pexels-banner/styles.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
.pixel-banner-image {
99
position: absolute;
1010
top: 0;
11-
left: 0;
11+
/* left: 0; */
12+
left: var(--pixel-banner-scrollbar-width, 0);
1213
right: 0;
1314
width: var(--pixel-banner-width, 100vw) !important; /* fix banner width with some themes */
1415
max-width: var(--pixel-banner-width, 100vw) !important; /* fix banner width with some themes */
@@ -87,6 +88,7 @@
8788
.pixel-banner .cm-sizer:first-of-type,
8889
.pixel-banner .markdown-preview-sizer:first-of-type {
8990
padding-top: var(--pixel-banner-content-start, 150px);
91+
padding-bottom: 0 !important;
9092
}
9193
/* fix for embedded notes */
9294
.internal-embed > .markdown-embed-content .cm-sizer:first-of-type,

.vault/semantic-chunking/.obsidian/plugins/rich-foot/data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
"updateDelay": 3000,
2323
"excludedParentSelectors": [],
2424
"frontmatterExclusionField": "",
25-
"lastVersion": "1.10.2"
25+
"lastVersion": "1.10.3"
2626
}

.vault/semantic-chunking/.obsidian/plugins/rich-foot/main.js

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ var ReleaseNotesModal = class extends import_obsidian.Modal {
107107
};
108108

109109
// virtual-module:virtual:release-notes
110-
var releaseNotes = '<h2>\u{1F6D1} Exclude Me Please</h2>\n<h3>[1.10.2] - 2024-12-11</h3>\n<h4>\u{1F41B} Fixed</h4>\n<ul>\n<li>Missing <code>Excluded Folders</code> section in the settings</li>\n</ul>\n<h3>[1.10.1] - 2024-12-10</h3>\n<h4>\u{1F41B} Fixed</h4>\n<ul>\n<li>Extra padding on the bottom of the editor in Canvas / Kanban Cards</li>\n</ul>\n<h3>[1.10.0] - 2024-12-08</h3>\n<h4>\u2728 Added</h4>\n<ul>\n<li>Exclusion rule via <code>frontmatter</code> field</li>\n<li>Custom exclusions using specified DOM parent selectors for advanced control</li>\n</ul>\n<p><a href="https://raw.githubusercontent.com/jparkerweb/ref/refs/heads/main/equill-labs/rich-foot/rich-foot-v1.10.0.jpg"><img src="https://raw.githubusercontent.com/jparkerweb/ref/refs/heads/main/equill-labs/rich-foot/rich-foot-v1.10.0.jpg" alt="screenshot"></a></p>\n';
110+
var releaseNotes = '<h2>\u{1F6D1} Exclude Me Please</h2>\n<h3>[1.10.3] - 2024-12-14</h3>\n<h4>\u{1F41B} Fixed</h4>\n<ul>\n<li>Improved parent selector matching to properly detect and exclude Rich Foot when specified selectors are present in the view or its parent elements</li>\n</ul>\n<h3>[1.10.2] - 2024-12-11</h3>\n<h4>\u{1F41B} Fixed</h4>\n<ul>\n<li>Missing <code>Excluded Folders</code> section in the settings</li>\n</ul>\n<h3>[1.10.1] - 2024-12-10</h3>\n<h4>\u{1F41B} Fixed</h4>\n<ul>\n<li>Extra padding on the bottom of the editor in Canvas / Kanban Cards</li>\n</ul>\n<h3>[1.10.0] - 2024-12-08</h3>\n<h4>\u2728 Added</h4>\n<ul>\n<li>Exclusion rule via <code>frontmatter</code> field</li>\n<li>Custom exclusions using specified DOM parent selectors for advanced control</li>\n</ul>\n<p><a href="https://raw.githubusercontent.com/jparkerweb/ref/refs/heads/main/equill-labs/rich-foot/rich-foot-v1.10.0.jpg"><img src="https://raw.githubusercontent.com/jparkerweb/ref/refs/heads/main/equill-labs/rich-foot/rich-foot-v1.10.0.jpg" alt="screenshot"></a></p>\n';
111111

112112
// src/settings.js
113113
var import_obsidian2 = require("obsidian");
@@ -1217,11 +1217,19 @@ var RichFootPlugin = class extends import_obsidian3.Plugin {
12171217
const activeLeaf = this.app.workspace.activeLeaf;
12181218
if ((_d = activeLeaf == null ? void 0 : activeLeaf.view) == null ? void 0 : _d.containerEl) {
12191219
return (_f = (_e = this.settings) == null ? void 0 : _e.excludedParentSelectors) == null ? void 0 : _f.some((selector) => {
1220+
var _a2, _b2;
12201221
try {
1221-
const matchingElements = document.querySelectorAll(selector);
1222-
return Array.from(matchingElements).some(
1223-
(el) => el === activeLeaf.view.containerEl || el.contains(activeLeaf.view.containerEl)
1224-
);
1222+
let element = activeLeaf.view.containerEl;
1223+
while (element) {
1224+
if ((_a2 = element.matches) == null ? void 0 : _a2.call(element, selector)) {
1225+
return true;
1226+
}
1227+
if ((_b2 = element.querySelector) == null ? void 0 : _b2.call(element, selector)) {
1228+
return true;
1229+
}
1230+
element = element.parentElement;
1231+
}
1232+
return false;
12251233
} catch (e) {
12261234
console.error(`Invalid selector in Rich Foot settings: ${selector}`);
12271235
return false;
@@ -1266,5 +1274,3 @@ var RichFootPlugin = class extends import_obsidian3.Plugin {
12661274
}
12671275
};
12681276
var main_default = RichFootPlugin;
1269-
1270-
/* nosourcemap */
Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1 @@
1-
{
2-
"id": "rich-foot",
3-
"name": "Rich Foot",
4-
"version": "1.10.2",
5-
"minAppVersion": "1.5.0",
6-
"description": "Adds backlink tags and created/modified dates to the footer of your notes.",
7-
"author": "Justin Parker (eQui\\\\ Labs)",
8-
"authorUrl": "https://www.equilllabs.com",
9-
"fundingUrl": "https://ko-fi.com/jparkerweb",
10-
"isDesktopOnly": false
11-
}
1+
{"id":"rich-foot","name":"Rich Foot","version":"1.10.3","minAppVersion":"1.5.0","description":"Adds backlink tags and created/modified dates to the footer of your notes.","author":"Justin Parker (eQui\\\\ Labs)","authorUrl":"https://www.equilllabs.com","fundingUrl":"https://ko-fi.com/jparkerweb","isDesktopOnly":false}

.vault/semantic-chunking/.obsidian/workspace.json

Lines changed: 29 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,19 @@
88
"type": "tabs",
99
"children": [
1010
{
11-
"id": "ee8a45d3d15647ea",
11+
"id": "e56abe90850f0fa0",
1212
"type": "leaf",
1313
"state": {
1414
"type": "markdown",
1515
"state": {
1616
"file": "🍱 Semantic Chunking.md",
17-
"mode": "preview",
18-
"backlinks": false,
19-
"source": true
17+
"mode": "source",
18+
"source": true,
19+
"backlinks": false
2020
},
2121
"icon": "lucide-file",
2222
"title": "🍱 Semantic Chunking"
2323
}
24-
},
25-
{
26-
"id": "80393faf3fd7f3a9",
27-
"type": "leaf",
28-
"state": {
29-
"type": "custom-frames-📄-release-notes",
30-
"state": {},
31-
"icon": "lucide-notebook-pen",
32-
"title": "📄 release notes"
33-
}
3424
}
3525
]
3626
}
@@ -172,6 +162,26 @@
172162
{
173163
"id": "aaa433e4ec8743d3",
174164
"type": "leaf",
165+
"state": {
166+
"type": "empty",
167+
"state": {},
168+
"icon": "lucide-file",
169+
"title": "New tab"
170+
}
171+
},
172+
{
173+
"id": "9b6e7fd237760e0e",
174+
"type": "leaf",
175+
"state": {
176+
"type": "empty",
177+
"state": {},
178+
"icon": "lucide-file",
179+
"title": "New tab"
180+
}
181+
},
182+
{
183+
"id": "6a07aba4b37b555c",
184+
"type": "leaf",
175185
"state": {
176186
"type": "Saved Queries View",
177187
"state": {},
@@ -180,7 +190,7 @@
180190
}
181191
}
182192
],
183-
"currentTab": 6
193+
"currentTab": 8
184194
}
185195
],
186196
"direction": "horizontal",
@@ -197,15 +207,16 @@
197207
"callout-manager:Insert Callout": true
198208
}
199209
},
200-
"active": "ee8a45d3d15647ea",
210+
"active": "e56abe90850f0fa0",
201211
"lastOpenFiles": [
212+
"images/model-precision.gif",
213+
"images/releases/v2.3.0.jpg",
202214
"🍱 Semantic Chunking.md",
215+
"pixel-banner-images/bento-box.png",
203216
"releases/v2.4.0 - ✂️ Clean Split.md",
204217
"pixel-banner-images/cut-in-pieces.png",
205218
"pixel-banner-images",
206219
"releases/v2.3.0 - 📦 Transformers.js v3.md",
207-
"images/model-precision.gif",
208-
"images/releases/v2.3.0.jpg",
209220
"images/releases",
210221
"images/New folder",
211222
"releases",

0 commit comments

Comments
 (0)