Skip to content

Commit d48cc0d

Browse files
committed
fix:nav-button background and text color changed
1 parent c3b5c39 commit d48cc0d

File tree

6 files changed

+12627
-35
lines changed

6 files changed

+12627
-35
lines changed

.claude/settings.local.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"Bash(grep:*)",
99
"Bash(sed:*)",
1010
"Bash(npm install)",
11-
"WebFetch(domain:marimo.io)"
11+
"WebFetch(domain:marimo.io)",
12+
"Bash(echo $?)"
1213
]
1314
}
1415
}

docs/releases/2.2.-beta.4.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1 @@
1-
Folder search now keeps child feeds visible (including nested subfolders), instead of hiding them.
2-
Matching folders auto-expand during search, and previous collapsed state is restored when search is cleared.
3-
Added scoped search parser/service with prefixes:
4-
feed:
5-
folder: / path:
6-
tag:
7-
Updated search placeholder to show available scopes.
81

9-
Replaced https://t2.gstatic.com/faviconV2... with https://www.google.com/s2/favicons?sz=32&domain_url=....
10-
In sidebar, added safe favicon handling with fallback icon logic (so bad favicon URLs do not break UI).
11-
Fixed the previously broken sidebar.ts syntax from malformed edits.

docs/releases/2.2.0-beta.3.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
### 🔄 Latest 2.2.0 Updates (Pre-Commit)
22

3+
### ⚠️ Important: Database Migration (for Existing Users)
4+
5+
Starting in **2.2.0**, feed data is migrated from JSON storage to SQLite for better performance.
6+
7+
- **What migrates:** feeds, articles, folders, and tags
8+
- **One-time migration:** runs automatically on first launch after updating to 2.2.0
9+
- **What to expect:** first load may take longer than usual if you have a large feed/article history
10+
- **Backup created:** `data.json.backup` is written in the plugin folder during migration
11+
- **New storage split:**
12+
- `rss-dashboard.sqlite` stores bulk feed/article data
13+
- `usersettings.json` stores plugin settings
14+
15+
If something looks wrong after migration:
16+
17+
1. Run command palette action: **Restore from JSON backup**
18+
2. Reload Obsidian/plugin
19+
20+
Fresh installs are not affected by this migration path.
21+
22+
323
#### SQLite Reliability & Recovery
424

525
- Added SQLite integrity checking on open; unreadable databases are detected and reset safely

docs/releases/2.2.0.md

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,6 @@
11

22
## 2.2.0
33

4-
### ⚠️ Important: Database Migration (for Existing Users)
5-
6-
Starting in **2.2.0**, feed data is migrated from JSON storage to SQLite for better performance.
7-
8-
- **What migrates:** feeds, articles, folders, and tags
9-
- **One-time migration:** runs automatically on first launch after updating to 2.2.0
10-
- **What to expect:** first load may take longer than usual if you have a large feed/article history
11-
- **Backup created:** `data.json.backup` is written in the plugin folder during migration
12-
- **New storage split:**
13-
- `rss-dashboard.sqlite` stores bulk feed/article data
14-
- `usersettings.json` stores plugin settings
15-
16-
If something looks wrong after migration:
17-
18-
1. Run command palette action: **Restore from JSON backup**
19-
2. Reload Obsidian/plugin
20-
21-
Fresh installs are not affected by this migration path.
22-
23-
24-
254
> Large feature release built on top of 2.1.9, focused on content filtering, word highlighting, Discover workflow improvements, mobile/tablet UX, and feed management quality-of-life updates.
265
---
276

@@ -101,6 +80,13 @@ Fresh installs are not affected by this migration path.
10180
- Refined highlight-word editing controls and responsive settings layout.
10281
- Consolidated sidebar badge controls into a simpler 3-row settings layout.
10382
- Refreshed changelog content to match the latest PR scope.
83+
- Folder search now keeps child feeds visible (including nested subfolders), instead of hiding them.
84+
- Matching folders auto-expand during search, and previous collapsed state is restored when search is cleared.
85+
- Added scoped search parser/service with prefixes: feed: ; folder: / path: ; tag:
86+
- Updated search placeholder to show available scopes.
87+
- Replaced https://t2.gstatic.com/faviconV2... with https://www.google.com/s2/favicons?sz=32&domain_url=....
88+
- In sidebar, added safe favicon handling with fallback icon logic (so bad favicon URLs do not break UI).
89+
10490

10591
---
10692

src/styles/layout.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@
126126
padding: 7px 14px;
127127
min-height: 38px;
128128
border-radius: 8px;
129-
color: var(--color-accent);
130-
background: var(--background-modifier-active-hover);
129+
color: var(--text-muted);
130+
background: var(--background-primary-alt);
131131
font-size: 16px;
132132
font-weight: 600;
133133
line-height: 1.1;

styles.css

Lines changed: 12596 additions & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)