Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat/new comic and novel reader #225

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2b7b13d
feat(mobile):more options in setting
appdevelpo Jan 20, 2024
450dbd7
i18n
appdevelpo Jan 20, 2024
c45fd39
feat:add tachiyomi style slider on manga readder
appdevelpo Jan 21, 2024
4123b7b
feat:support novel
appdevelpo Jan 21, 2024
3f967bc
improve manga reader
appdevelpo Jan 22, 2024
9bb4dba
add animations for novel
appdevelpo Jan 25, 2024
d5d5754
some issue need to be fixed
appdevelpo Jan 27, 2024
76170f7
update desktop manga reader
appdevelpo Jan 28, 2024
31fad4d
add fullscreen options to desktop reader
appdevelpo Jan 29, 2024
99322fa
fix error
appdevelpo Jan 29, 2024
e471807
add infinity scroll in comic mode
appdevelpo Feb 7, 2024
c274010
add infinite scroll for novel
appdevelpo Feb 8, 2024
6575ec0
initial tts support for android
appdevelpo Feb 9, 2024
bb4be5f
add color settings in mobile novel reader
appdevelpo Feb 10, 2024
bf1a99e
add single page mode for novel reader
appdevelpo Feb 14, 2024
13e8ede
update desktop reader command bar
appdevelpo Feb 16, 2024
f407d31
Merge remote-tracking branch 'upstream/dev' into feat/new-reader-1
appdevelpo Feb 16, 2024
20ce45d
Merge remote-tracking branch 'upstream/dev' into feat/new-reader-1
appdevelpo Feb 19, 2024
f7b024a
fix:i18n
appdevelpo Feb 19, 2024
cd7f3d2
Refactor saveImage method to remove unnecessary "mounted" parameter
MiaoMint Feb 20, 2024
27c8561
change viewing widget for comic reader (unstable )
appdevelpo Feb 25, 2024
e308997
improve comic infinite scroll
appdevelpo Feb 28, 2024
7028d66
fix: image clipping
appdevelpo Mar 2, 2024
1abd6ff
Update novel_reader_content.dart
appdevelpo Mar 2, 2024
ed5073e
Refactored comic settings view
MiaoMint Mar 3, 2024
31c3c3a
Update function to handle edge cases
MiaoMint Mar 4, 2024
c6c4ae8
Merge remote-tracking branch 'upstream/dev' into feat/new-reader-1
appdevelpo Mar 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,9 @@
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

<queries>
<intent>
<action android:name="android.intent.action.TTS_SERVICE" />
</intent>
</queries>
</manifest>
37 changes: 35 additions & 2 deletions assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
"no-data": "No data",
"clear": "Clear",
"export": "Export",
"tts":"Text to speech",
"common": "Common",
"off": "Off",
"error-message": "Error message",
"disconnect": "Disconnect"
Expand Down Expand Up @@ -226,10 +228,41 @@
"read-mode": "Read mode",
"standard": "Standard",
"right-to-left": "Right to left",
"web-tonn": "Webtoon"
"web-tonn": "Webtoon",
"bottomLeft": "Bottom left",
"bottomRight": "Bottom right",
"topLeft": "Top left",
"topRight": "Top right",
"indicator-alignment": "Indicator alignment",
"status-bar":"Status bar",
"prevPageHitBox": "Tapping region of previous page",
"nextPageHitBox": "Tapping region of next page",
"enable-autoscroller": "Enable autoscroller",
"autoscroller-interval": "Autoscroller interval",
"autoscroller-offset": "Autoscroller offset"
},
"reader-settings": {
"enable-wakelock": "Keep screen on",
"battery": "Battery",
"time": "Time",
"page-indicator": "Page Indicator",
"battery-icon": "Battery Icon",
"indicator-alignment": "Indicator Alignment",
"enable-fullScreen": "Enable Full Screen"
},
"novel-settings": {
"font-size": "Font size"
"font-size": "Font size",
"line":"Lines",
"enable-tts": "Enable TTS",
"tts-rate": "TTS Rate",
"tts-lang": "TTS Language",
"tts-volume": "TTS Volume",
"tts-pitch": "TTS Pitch",
"text-color": "Text Color",
"highlight-color": "Highlight Background Color",
"highlight-text-color": "Highlight Text Color",
"leading": "Leading",
"color-settings":"Color Settings"
},
"bugreport": {
"auto-remove-subtitle": "delete in ~ days",
Expand Down
Loading
Loading