-
Notifications
You must be signed in to change notification settings - Fork 794
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into dev
- Loading branch information
Showing
10 changed files
with
37 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
import path from "node:path" | ||
import { fileURLToPath } from "node:url" | ||
|
||
import { isMacOS } from "./env" | ||
|
||
const __dirname = fileURLToPath(new URL(".", import.meta.url)) | ||
const iconMap = { | ||
prod: path.join(__dirname, "../../resources/icon.png"), | ||
dev: path.join(__dirname, "../../static/icon-dev.png"), | ||
} | ||
export const getIconPath = () => iconMap[process.env.NODE_ENV === "development" ? "dev" : "prod"] | ||
export const getTrayIconPath = () => path.join(__dirname, "../../resources/tray-icon.png") | ||
export const getTrayIconPath = () => | ||
isMacOS ? path.join(__dirname, "../../resources/tray-icon.png") : getIconPath() |
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
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
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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# What's new in v0.2.0 | ||
|
||
## New Features | ||
|
||
- Feed owners can now reset their feeds. | ||
- Image Gallery: Clicking on the image button in the entry opens the Image gallery modal (only if there are multiple large images in the entry!). | ||
- Now you can export the data from the local database. | ||
- App: In consideration of your hard drive, now it supports clearing cache and limiting the size of cache. | ||
- Added a new feature to allow minimizing to the system tray by enabling a switch in the settings. | ||
- Discover Page: Enhance RSSHub recommendations with filters | ||
- Quickly update views or categories at once by dragging and dropping. | ||
|
||
## Improvements | ||
|
||
- Optimized the Zen mode experience on macOS. | ||
- Improvement web app global shortcuts. | ||
- Optimized the Timeline's data cache, reducing data reloads within a short period of time. You can go to Settings -> General -> Timeline -> Reduce timeline refetch to control this feature, default is enabled. | ||
|
||
## Bug Fixes | ||
|
||
- Fixed the issue where the Volume of VideoPlayer was not clickable. | ||
- While using arrow keys to switch between entries, the entry view will not scroll unexpexted. |
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,7 +1,7 @@ | ||
{ | ||
"name": "Follow", | ||
"type": "module", | ||
"version": "0.2.0-beta.0", | ||
"version": "0.2.0-beta.1", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"description": "Next generation information browser", | ||
|