Skip to content

Commit

Permalink
Merge pull request #17 from jparkerweb/develop
Browse files Browse the repository at this point in the history
v1.7.0
  • Loading branch information
jparkerweb authored Nov 27, 2024
2 parents 96fd5d1 + d47539b commit e355750
Show file tree
Hide file tree
Showing 28 changed files with 11,942 additions and 77 deletions.
23 changes: 8 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,30 @@
All notable changes to Rich Foot will be documented in this file.


## [1.6.2] - 2024-11-23
## [1.7.0] - 2024-11-26
### ✨ 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.

### Updated
- outlinks section to inclued transclusion links (example `[[note#section]]` or `[text](note#section)`)
## [1.6.2] - 2024-11-23
### 📦 Updated
- Outlinks section to inclued transclusion links (example `[[note#section]]` or `[text](note#section)`)

## [1.6.1] - 2024-11-14

### 🐛 Fixed
- Fixed console error when switching between reading/editing modes

## [1.6.0] - 2024-11-09

### ✨ Added
- 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

## [1.5.1] - 2024-10-31

### 🐛 Fixed
- Fixed bug where excluded folders were not being saved correctly

## [1.5.0] - 2024-10-31

### ✨ Added
- New Style Settings section in plugin settings
- Border customization options:
Expand All @@ -42,43 +41,37 @@ All notable changes to Rich Foot will be documented in this file.
- Reset buttons for all customization options
- Improved settings UI organization

### 📦 Changed
### 📦 Updated
- Reorganized settings panel for better usability
- Updated documentation to reflect new customization options
- Improved CSS variable management for better theme compatibility

## [1.4.0] - 2023-10-28

### ✨ Added
- Display `Outlinks` (under the `Backlinks` section)
- Updated Settings page:
- Toggle controls for Backlinks, Outlinks, and Created/Modified dates
- Improved Exclude Folders controls for easier management

## [1.3.3] - 2023-10-21

### 🐛 Fixed
- Only create backlinks to notes, not files like images
- Fixed issue with backlinks being removed/re-added when scrolling long notes
- Fixed issue with rich-foot being displayed to the right of notes in editing mode

## [1.3.0] - 2023-10-17

### 🐛 Fixed
- Compatibility issues with Obsidian v1.7.2+ that introduces `DeferredView`

## [1.2.0] - 2023-10-12

### 📦 Changed
### 🐛 Fixed
- Don't create backlinks that reference themselves

## [1.1.0] - 2023-10-09

### ✨ Added
- Support for `rich-foot` rendering in both `editing` and `live preview` modes

## [1.0.0] - 2023-09-23

### ✨ Added
- Initial release
- Backlinks displayed as tags in note footers
Expand Down
21 changes: 5 additions & 16 deletions UPDATE.md
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 modified example-vault.zip
Binary file not shown.
5 changes: 4 additions & 1 deletion example-vault/rich-foot-example/.obsidian/appearance.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"accentColor": "#f7a518"
"accentColor": "#f7a518",
"enabledCssSnippets": [
"utility"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@
"open-plugin-settings",
"obsidian-paste-image-rename",
"url-into-selection",
"advanced-cursors"
"advanced-cursors",
"css-editor",
"obsidian-custom-frames",
"markdown-attributes"
]
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"canvas": false,
"outgoing-link": false,
"tag-pane": true,
"properties": false,
"properties": true,
"page-preview": true,
"daily-notes": false,
"templates": true,
Expand Down
10,475 changes: 10,475 additions & 0 deletions example-vault/rich-foot-example/.obsidian/plugins/css-editor/main.js

Large diffs are not rendered by default.

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
}
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%;
}
Loading

0 comments on commit e355750

Please sign in to comment.