-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from jparkerweb/develop
v1.7.0
- Loading branch information
Showing
28 changed files
with
11,942 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,7 @@ | ||
## 🎉 What's New | ||
## 📆 Dates Your Way | ||
|
||
### v1.6.2 | ||
#### Updated | ||
- outlinks section to inclued transclusion links (example `[[note#section]]` or `[text](note#section)`) | ||
### v1.7.0 | ||
#### ✨ Added | ||
- `Custom Created/Modified Date Property` fields to allow users to specify their own frontmatter properties for dates, useful when file system dates are affected by sync processes and you track them separately. | ||
|
||
### v1.6.1 | ||
#### Fixed | ||
- Fixed console error when switching between reading/editing modes | ||
|
||
### v1.6.0 | ||
#### New Color Customization Options | ||
- New Border, Links, and Date color customization options in settings | ||
- Color picker to select custom colors | ||
- Reset button to restore default colors (theme accent color) | ||
- Real-time color updates | ||
|
||
![New Color Customization Options](https://raw.githubusercontent.com/jparkerweb/rich-foot/refs/heads/main/img/releases/rich-foot-v1.6.0.jpg) | ||
[![screenshot](https://raw.githubusercontent.com/jparkerweb/rich-foot/refs/heads/develop/img/releases/rich-foot-v1.7.0.jpg)](https://raw.githubusercontent.com/jparkerweb/rich-foot/refs/heads/develop/img/releases/rich-foot-v1.7.0.jpg) |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
{ | ||
"accentColor": "#f7a518" | ||
"accentColor": "#f7a518", | ||
"enabledCssSnippets": [ | ||
"utility" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10,475 changes: 10,475 additions & 0 deletions
10,475
example-vault/rich-foot-example/.obsidian/plugins/css-editor/main.js
Large diffs are not rendered by default.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
example-vault/rich-foot-example/.obsidian/plugins/css-editor/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"id": "css-editor", | ||
"name": "CSS Editor", | ||
"version": "1.2.2", | ||
"minAppVersion": "0.15.0", | ||
"description": "Edit CSS files within Obsidian.", | ||
"author": "Zachatoo", | ||
"authorUrl": "https://zachyoung.dev", | ||
"fundingUrl": "https://github.com/sponsors/Zachatoo", | ||
"isDesktopOnly": false | ||
} |
21 changes: 21 additions & 0 deletions
21
example-vault/rich-foot-example/.obsidian/plugins/css-editor/styles.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
.suggestion-item .css-editor-suggestion-description { | ||
color: var(--text-muted); | ||
} | ||
|
||
.css-editor-status { | ||
border-radius: 5px; | ||
border: 1px solid var(--color-base-50); | ||
padding: 2px 6px; | ||
|
||
&.enabled { | ||
background-color: var(--color-accent); | ||
} | ||
|
||
&.disabled { | ||
background-color: var(--background-secondary-alt); | ||
} | ||
} | ||
|
||
.css-editor-create-modal input { | ||
width: 100%; | ||
} |
Oops, something went wrong.