Skip to content

Commit

Permalink
Merge pull request #45 from jparkerweb/develop
Browse files Browse the repository at this point in the history
v1.10.1
  • Loading branch information
jparkerweb authored Dec 10, 2024
2 parents fa22d0d + e9dd35b commit bb5f243
Show file tree
Hide file tree
Showing 21 changed files with 602 additions and 1,465 deletions.
1 change: 0 additions & 1 deletion .cursorignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ example-vault
node_modules
package-lock.json
./main.js
.aider*
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to Rich Foot will be documented in this file.

## [1.10.1] - 2024-12-10
### 🐛 Fixed
- Extra padding on the bottom of the editor in Canvas / Kanban Cards

## [1.10.0] - 2024-12-08
### ✨ Added
- Exclusion rule via `frontmatter` field
Expand Down
6 changes: 6 additions & 0 deletions UPDATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## 🛑 Exclude Me Please


### [1.10.1] - 2024-12-10
#### 🐛 Fixed
- Extra padding on the bottom of the editor in Canvas / Kanban Cards

### [1.10.0] - 2024-12-08
#### ✨ Added
- Exclusion rule via `frontmatter` field
Expand Down
Binary file modified example-vault.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
"css-editor",
"obsidian-custom-frames",
"markdown-attributes",
"obsidian-memos"
"obsidian-memos",
"obsidian-kanban"
]

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"id": "obsidian-kanban",
"name": "Kanban",
"version": "2.0.51",
"minAppVersion": "1.0.0",
"description": "Create markdown-backed Kanban boards in Obsidian.",
"author": "mgmeyers",
"authorUrl": "https://github.com/mgmeyers/obsidian-kanban",
"helpUrl": "https://publish.obsidian.md/kanban/Obsidian+Kanban+Plugin",
"isDesktopOnly": false
}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -24,31 +24,36 @@
"customImageRepeatField": [
"banner-repeat"
],
"folderImages": [],
"contentStartPosition": 150,
"imageDisplay": "cover",
"imageRepeat": false,
"bannerHeight": 350,
"customBannerHeightField": [
"banner-height"
],
"fade": -75,
"customFadeField": [
"banner-fade"
],
"borderRadius": 17,
"customBorderRadiusField": [
"banner-radius"
],
"customTitleColorField": [
"banner-inline-title-color"
],
"customBannerShuffleField": [
"banner-shuffle"
],
"folderImages": [],
"contentStartPosition": 150,
"imageDisplay": "cover",
"imageRepeat": false,
"bannerHeight": 350,
"fade": -75,
"borderRadius": 17,
"showPinIcon": true,
"pinnedImageFolder": "pixel-banner-images",
"showReleaseNotes": true,
"lastVersion": "2.11.0",
"lastVersion": "2.13.0",
"showRefreshIcon": true,
"showViewImageIcon": false,
"hidePixelBannerFields": true,
"hidePropertiesSectionIfOnlyBanner": true,
"titleColor": "var(--inline-title-color)",
"customTitleColorField": [
"banner-inline-title-color"
]
"enableImageShuffle": false
}
388 changes: 277 additions & 111 deletions example-vault/rich-foot-example/.obsidian/plugins/pexels-banner/main.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "pexels-banner",
"name": "Pixel Banner",
"version": "2.11.0",
"version": "2.13.0",
"minAppVersion": "1.6.0",
"description": "Apply an image from various sources as a banner to your notes.",
"author": "Justin Parker (eQui\\\\ Labs)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,17 @@
display: none !important;
}

/* pin / refresh icons */
/* pin / refresh / view image icons */
.pin-icon,
.refresh-icon {
.refresh-icon,
.view-image-icon {
z-index: var(--layer-modal);
opacity: 0.2;
transition: all 0.3s ease-in-out;
}
.pin-icon:hover,
.refresh-icon:hover {
.refresh-icon:hover,
.view-image-icon:hover {
opacity: 1;
cursor: pointer;
transform: scale(1.2);
Expand Down Expand Up @@ -409,3 +411,65 @@
.metadata-container.pixel-banner-hidden-section {
display: none !important;
}

.pixel-banner-image-view-modal {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
}

.pixel-banner-image-view-modal .image-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}

.pixel-banner-image-view-modal img {
max-width: 100%;
max-height: 90vh;
object-fit: contain;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pixel-banner-image-view-modal button {
margin-top: 10px;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
}

.pixel-banner-settings .setting-group {
border: 1px solid var(--background-modifier-border);
border-radius: 6px;
padding: 12px;
margin: 12px 0;
}

.pixel-banner-settings .setting-dependent {
margin-left: 24px;
position: relative;
}

.pixel-banner-settings .setting-dependent::before {
content: "";
position: absolute;
left: -24px;
top: 0;
bottom: 0;
width: 2px;
background-color: var(--background-modifier-border);
}

.pixel-banner-settings .setting-dependent.is-disabled {
opacity: 0.75;
}

.pixel-banner-image-modal {
width: var(--dialog-max-width);
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
"updateDelay": 3000,
"excludedParentSelectors": [],
"frontmatterExclusionField": "",
"lastVersion": "1.9.2"
"lastVersion": "1.10.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ var ReleaseNotesModal = class extends import_obsidian.Modal {
};

// virtual-module:virtual:release-notes
var releaseNotes = '<h2>\u{1F6D1} Exclude Me Please</h2>\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';
var releaseNotes = '<h2>\u{1F6D1} Exclude Me Please</h2>\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';

// src/settings.js
var import_obsidian2 = require("obsidian");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "rich-foot",
"name": "Rich Foot",
"version": "1.10.0",
"version": "1.10.1",
"minAppVersion": "1.5.0",
"description": "Adds backlink tags and created/modified dates to the footer of your notes.",
"author": "Justin Parker (eQui\\\\ Labs)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ body.theme-light .rich-foot--backlinks ul li a {

.cm-scroller .cm-contentContainer > .cm-content,
.markdown-source-view .cm-contentContainer > .cm-content {
padding-bottom: 30px !important;
padding-bottom: 0 !important;
}

.cm-scroller .rich-foot--backlinks,
Expand Down
85 changes: 58 additions & 27 deletions example-vault/rich-foot-example/.obsidian/workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,25 @@
"type": "split",
"children": [
{
"id": "2b8f3a00979cd2bb",
"id": "d696239f5ab79796",
"type": "tabs",
"children": [
{
"id": "00a195a1f4197982",
"id": "5413ece24fd1a9d2",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "releases/v1.10.0 - 🛑 Exclude Me Please.md",
"file": "🦶 Rich Foot.md",
"mode": "preview",
"backlinks": false,
"source": true
},
"icon": "lucide-file",
"title": "v1.10.0 - 🛑 Exclude Me Please"
}
},
{
"id": "5f7fdb8dc8ceec49",
"type": "leaf",
"state": {
"type": "custom-frames-📄-release-notes",
"state": {},
"icon": "lucide-notebook-pen",
"title": "📄 release notes"
"title": "🦶 Rich Foot"
}
}
],
"currentTab": 1
]
}
],
"direction": "vertical"
Expand Down Expand Up @@ -3189,6 +3178,46 @@
{
"id": "71a25f05585b1422",
"type": "leaf",
"state": {
"type": "empty",
"state": {},
"icon": "lucide-file",
"title": "New tab"
}
},
{
"id": "ee1ddcd1d1eda002",
"type": "leaf",
"state": {
"type": "empty",
"state": {},
"icon": "lucide-file",
"title": "New tab"
}
},
{
"id": "7f99d04a009d6437",
"type": "leaf",
"state": {
"type": "empty",
"state": {},
"icon": "lucide-file",
"title": "New tab"
}
},
{
"id": "07ec34a253347948",
"type": "leaf",
"state": {
"type": "empty",
"state": {},
"icon": "lucide-file",
"title": "New tab"
}
},
{
"id": "2913742b915399b2",
"type": "leaf",
"state": {
"type": "Saved Queries View",
"state": {},
Expand All @@ -3197,7 +3226,7 @@
}
}
],
"currentTab": 308
"currentTab": 312
}
],
"direction": "horizontal",
Expand All @@ -3214,24 +3243,27 @@
"templates:Insert template": true,
"command-palette:Open command palette": false,
"canvas:Create new canvas": false,
"obsidian-memos:Thino": false
"obsidian-memos:Thino": false,
"obsidian-kanban:Create new board": false
}
},
"active": "5f7fdb8dc8ceec49",
"active": "5413ece24fd1a9d2",
"lastOpenFiles": [
"releases/v1.10.0 - 🛑 Exclude Me Please.md",
"pixel-banner-images/no-fee-allowed.png",
"🦶 Rich Foot.md",
"misc-notes/link test.md",
"2024-12-07.md",
"exclude/no rich-feet here.md",
"exclude/me too/no rich-feet here either.md",
"Untitled Kanban.md",
"Untitled.canvas",
"misc-notes/two.md",
"misc-notes/one.md",
"misc-notes/link test 2.md",
"misc-notes/three.md",
"test.md",
"exclude/me too/no rich-feet here either.md",
"exclude/no rich-feet here.md",
"misc-notes/link test.md",
"misc-notes/link test 2.md",
"releases/v1.9.0 - 🥙 Stuffed Links.md",
"🦶 Rich Foot.md",
"pixel-banner-images/no-fee-allowed.png",
"test.md",
"releases/v1.8.0 - 🫣 Page Preview Support.md",
"releases/v1.7.0 - 📆 Dates Your Way.md",
"images/rich-feet-2.jpg",
Expand All @@ -3242,7 +3274,6 @@
"misc-notes",
"Pasted image 20241129154754.png",
"note with table.md",
"Untitled.canvas",
"images/rich-feet.jpg",
"images",
"exclude/me too",
Expand Down
5 changes: 0 additions & 5 deletions example-vault/rich-foot-example/2024-12-07.md

This file was deleted.

Loading

0 comments on commit bb5f243

Please sign in to comment.