forked from akai/readest
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2048c7f33e |
@@ -39,20 +39,20 @@
|
|||||||
|
|
||||||
<div align="left">✅ Implemented</div>
|
<div align="left">✅ Implemented</div>
|
||||||
|
|
||||||
| **Feature** | **Description** | **Status** |
|
| **Feature** | **Description** | **Status** |
|
||||||
| --------------------------------------- | ---------------------------------------------------------------------------------- | ---------- |
|
| --------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------- |
|
||||||
| **Multi-Format Support** | Support EPUB, MOBI, KF8 (AZW3), FB2, CBZ, PDF (experimental) | ✅ |
|
| **Multi-Format Support** | Support EPUB, MOBI, KF8 (AZW3), FB2, CBZ, PDF (experimental) | ✅ |
|
||||||
| **Scroll/Page View Modes** | Switch between scrolling or paginated reading modes. | ✅ |
|
| **Scroll/Page View Modes** | Switch between scrolling or paginated reading modes. | ✅ |
|
||||||
| **Full-Text Search** | Search across the entire book to find relevant sections. | ✅ |
|
| **Full-Text Search** | Search across the entire book to find relevant sections. | ✅ |
|
||||||
| **Annotations and Highlighting** | Add highlights, bookmarks, and notes to enhance your reading experience. | ✅ |
|
| **Annotations and Highlighting** | Add highlights, bookmarks, and notes to enhance your reading experience. | ✅ |
|
||||||
| **Excerpt Text for Note-Taking** | Easily excerpt text from books for detailed notes and analysis. | ✅ |
|
| **Excerpt Text for Note-Taking** | Easily excerpt text from books for detailed notes and analysis. | ✅ |
|
||||||
| **Dictionary/Wikipedia Lookup** | Instantly look up words and terms when reading. | ✅ |
|
| **Dictionary/Wikipedia Lookup** | Instantly look up words and terms when reading. | ✅ |
|
||||||
| **Translate with DeepL** | Translate selected text instantly using DeepL for accurate translations. | ✅ |
|
| **Translate with DeepL** | Translate selected text instantly using DeepL for accurate translations. | ✅ |
|
||||||
| **[Parallel Read][link-parallel-read]** | Read two books or documents simultaneously in a split-screen view. | ✅ |
|
| **[Parallel Read][link-parallel-read]** | Read two books or documents simultaneously in a split-screen view. | ✅ |
|
||||||
| **Customize Font and Layout** | Adjust font, layout, theme mode, and theme colors for a personalized experience. | ✅ |
|
| **Customize Font and Layout** | Adjust font, layout, theme mode, and theme colors for a personalized experience. | ✅ |
|
||||||
| **File Association and Open With** | Quickly open files in Readest in your file browser with one-click. | ✅ |
|
| **File Association and Open With** | Quickly open files in Readest in your file browser with one-click. | ✅ |
|
||||||
| **Sync across Platforms** | Synchronize reading progress, notes, and bookmarks across all supported platforms. | ✅ |
|
| **Sync across Platforms** | Synchronize book files, reading progress, notes, and bookmarks across all supported platforms. | ✅ |
|
||||||
| **Text-to-Speech (TTS) Support** | Enable text-to-speech functionality for a more accessible reading experience. | ✅ |
|
| **Text-to-Speech (TTS) Support** | Enable text-to-speech functionality for a more accessible reading experience. | ✅ |
|
||||||
|
|
||||||
## Planned Features
|
## Planned Features
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,13 @@
|
|||||||
{
|
{
|
||||||
"releases": {
|
"releases": {
|
||||||
|
"0.9.8": {
|
||||||
|
"date": "2025-02-01",
|
||||||
|
"notes": [
|
||||||
|
"Support cloud sync for book files",
|
||||||
|
"Use larger font size on mobile devices for better reading experience",
|
||||||
|
"Various fixes and enhancements on sync, rendering and settings"
|
||||||
|
]
|
||||||
|
},
|
||||||
"0.9.7": {
|
"0.9.7": {
|
||||||
"date": "2025-01-23",
|
"date": "2025-01-23",
|
||||||
"notes": [
|
"notes": [
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ export const FILE_ACCEPT_FORMATS = SUPPORTED_FILE_EXTS.map((ext) => `.${ext}`).j
|
|||||||
|
|
||||||
export const DEFAULT_SYSTEM_SETTINGS: Partial<SystemSettings> = {
|
export const DEFAULT_SYSTEM_SETTINGS: Partial<SystemSettings> = {
|
||||||
keepLogin: false,
|
keepLogin: false,
|
||||||
autoUpload: false,
|
autoUpload: true,
|
||||||
autoCheckUpdates: true,
|
autoCheckUpdates: true,
|
||||||
|
|
||||||
lastSyncedAtBooks: 0,
|
lastSyncedAtBooks: 0,
|
||||||
|
|||||||
Reference in New Issue
Block a user