jpirnay
a403a8af39
Replace picojpeg by jpegdec
2026-03-27 22:05:42 +01:00
jpirnay
7f63ebbcf7
Use translated section string
2026-03-27 21:30:30 +01:00
jpirnay
ba5b0b9191
Capitalize am / pm
2026-03-27 18:10:45 +01:00
jpirnay
6703973bac
Merge branch 'chore-script' of https://github.com/jpirnay/crosspoint-reader into mybuild
2026-03-27 17:30:07 +01:00
jpirnay
c71fb8c6af
Merge branch 'feat-invalid-toc-fallback' of https://github.com/jpirnay/crosspoint-reader into mybuild
2026-03-27 17:29:45 +01:00
jpirnay
20d5cf96f7
Proper return code
2026-03-27 17:28:06 +01:00
jpirnay
5f6dc4ac4c
Add .venv to list of path exclusions
2026-03-27 17:21:25 +01:00
jpirnay
a51fd3953d
Refactor to a more generic unobstrusive approach
2026-03-27 17:06:30 +01:00
jpirnay
3f8a87e907
Deal with invalid/incomplete toc.ncx files
2026-03-27 16:40:34 +01:00
jpirnay
316a1ac3ab
Display drifitng stats
2026-03-27 11:49:13 +01:00
jpirnay
92877f9c36
Use ntp time sync at end of wifi activities
2026-03-26 21:55:28 +01:00
jpirnay
7f9456e8c6
Add calibration
2026-03-26 21:41:39 +01:00
jpirnay
1112a36806
Review comments
2026-03-26 20:31:41 +01:00
jpirnay
ec6835ee79
Address cppcheck
2026-03-26 20:12:46 +01:00
jpirnay
1f9b903877
yaclf
2026-03-26 20:07:45 +01:00
jpirnay
8e4fa4d392
Add warning
2026-03-26 20:04:06 +01:00
jpirnay
868e527bcd
Add warnings
2026-03-26 19:59:55 +01:00
jpirnay
cfd79d32ca
Updates for better setting grouping
2026-03-26 19:55:56 +01:00
jpirnay
6e8254b815
Adding timezone support
2026-03-26 18:46:28 +01:00
jpirnay
166ce73e2d
Addressing review comments
2026-03-26 17:34:00 +01:00
jpirnay
2bcfa50a7c
yaclf
2026-03-26 17:03:30 +01:00
jpirnay
dd9c9e6def
Add basic clock support
2026-03-26 16:46:23 +01:00
jpirnay
1d3405318c
Integrate PT 1455
2026-03-26 11:16:53 +01:00
jpirnay
33347d5b96
PR 1475
2026-03-26 11:06:34 +01:00
jpirnay
1af3f81336
PR 1507
2026-03-26 11:05:13 +01:00
jpirnay
ac42d5ef36
Merge branch 'refactor-i18n_offset-table' of https://github.com/jpirnay/crosspoint-reader into mybuild
2026-03-26 11:02:18 +01:00
jpirnay
f8374bb66b
Merge branch 'chore-portugues' of https://github.com/jpirnay/crosspoint-reader into mybuild
2026-03-26 11:02:03 +01:00
jpirnay
86c935bfc9
Fix codes
2026-03-26 10:43:37 +01:00
jpirnay
5da520eb9e
Clean up language codes
2026-03-26 10:42:15 +01:00
jpirnay
3f5a2663f6
Exit if non-unique identifiers found
2026-03-26 10:30:14 +01:00
jpirnay
64b8c71799
Fix non-unique ids
2026-03-26 09:22:21 +01:00
ariel-lindemann
5b43639f98
chore: update RO translation for release v1.2.0 ( #1504 )
2026-03-26 08:49:20 +02:00
Spigaw
3f9c43506b
chore: Add missing French translations for UI controls and settings ( #1493 )
...
Added missing strings for the French translation.
## Summary
Adding the missing French translated strings before the next PR.
No modification done to the preexisting strings, only added new ones.
## Additional Context
N/A
---
### AI Usage
While CrossPoint doesn't have restrictions on AI tools in contributing,
please be transparent about their usage as it
helps set the right context for reviewers.
No AI usage.
2026-03-25 21:03:24 -05:00
Mirus
f803bd0371
feat: Add Ukrainian translations for image-related strings ( #1491 )
...
## Summary
Prep for RC 1.2.0
https://github.com/crosspoint-reader/crosspoint-reader/pull/1483
2026-03-25 20:59:18 -05:00
jpirnay
483da0af66
Merge branch 'chore-portugues' of https://github.com/jpirnay/crosspoint-reader into mybuild
2026-03-25 22:20:58 +01:00
jpirnay
deb0199c86
Fix wrong language code for ptbr and introduced ptPt
2026-03-25 22:14:38 +01:00
jpirnay
5745e598e3
fix: migrate KOSync registerUser to esp_http_client
2026-03-25 20:22:01 +01:00
trilwu
08739746f8
style: fix clang-format alignment and log allocation failure
...
Address CI clang-format check and CodeRabbit review feedback:
- Fix parameter alignment (one extra space)
- Log warning when response buffer allocation fails
(cherry picked from commit 3900ea1feb017c07bd5e38da0b471fe623ec506e)
2026-03-25 20:19:46 +01:00
trilwu
10ea651e26
fix: use esp_http_client for KOSync to prevent TLS OOM on ESP32-C3
...
The Arduino WiFiClientSecure allocates 16KB TLS buffers by default,
which exhausts the ESP32-C3's limited heap (~46KB free after WiFi)
during the TLS handshake. This causes KOReader sync to fail silently
or crash on HTTPS servers (including the default sync.koreader.rocks).
Replace WiFiClientSecure/HTTPClient with esp_http_client (ESP-IDF),
which supports configurable buffer sizes. Use 2KB TLS buffers — more
than sufficient for KOSync's tiny JSON payloads (<1KB).
Also:
- Use esp_crt_bundle for proper TLS certificate verification instead
of setInsecure()
- Strip trailing slashes from server URL to prevent double-slash in
API paths
- Add lastHttpCode for diagnostics
- Add heap logging to help debug memory issues
Fixes #581
(cherry picked from commit 835abc19ff14fcbea8571ccb0dfd8d21e882b84c)
2026-03-25 20:19:46 +01:00
nscheung
d88ec2ca24
Remove return statement
...
(cherry picked from commit c5caea7d3323c63ff0322c647e45ee48e7a4fbf6)
2026-03-25 20:16:47 +01:00
nscheung
d8334e9fa4
Adjust navigation at end of book to home page on forward press
...
(cherry picked from commit deb6ff3b9d1a284594540513f19a3191936915c9)
2026-03-25 20:16:47 +01:00
jpirnay
6be2627b59
Merge branch 'feat-remove-from-recents' of https://github.com/jpirnay/crosspoint-reader into mybuild
2026-03-25 19:55:39 +01:00
jpirnay
4abfc06380
Fix regression
2026-03-25 19:55:13 +01:00
jpirnay
a5fa684d2b
Merge branch 'perf-lut-cache' of https://github.com/jpirnay/crosspoint-reader into mybuild
2026-03-25 18:09:53 +01:00
jpirnay
36b471891d
Merge branch 'fix-xtc-2gb' of https://github.com/jpirnay/crosspoint-reader into mybuild
2026-03-25 18:08:34 +01:00
jpirnay
96aaeec792
Merge branch 'fix-http-empty' of https://github.com/jpirnay/crosspoint-reader into mybuild
2026-03-25 18:08:16 +01:00
jpirnay
61e5b01eee
Deal with zero byte downloads
2026-03-25 17:59:37 +01:00
jpirnay
afe0b82228
Cover remaining seeks
2026-03-25 17:53:18 +01:00
jpirnay
7d43c876a4
Remove 2GB limit for XTC files
2026-03-25 17:35:19 +01:00
Егор Мартынов
603aead5d9
feat: update Russian translation ( #1489 )
...
## Summary
Adds new Russian strings for recently merged features, yay! 😃
---
### AI Usage
Did you use AI tools to help write this code? _**NO**_
2026-03-25 11:35:10 -05:00