chrox
e1af7f2ed3
prompt users to long press directory to set inbox
...
This should fix #1233 .
2014-11-25 18:19:33 +08:00
chrox
0a06041cd9
fix calculation of widget height of filechooser
...
the height of filechooser is provided when creating filechooser
widget since there may be no title as in filemanger which needs
a special title widget to contain filemanger menu.
2014-11-25 17:49:46 +08:00
chrox
67693367b9
init width and height of filechooser widget during init
...
so that everytime a filechooser is inited right dimension
size is used.
2014-11-25 16:31:03 +08:00
Hans-Werner Hilse
21ded080dd
fix refactor bug: invalidate update_regions_func
2014-11-23 12:13:33 +00:00
Hans-Werner Hilse
8696ca1fa1
fix old (pre-refactor) refresh call syntax
2014-11-23 12:13:33 +00:00
Hans-Werner Hilse
22697adf20
switch from scaleByDPI() to scaleBySize()
2014-11-23 12:13:32 +00:00
Hans-Werner Hilse
63af71188a
refactor refresh
...
Lots of the device-related distinction wandered into
base/ffi/framebuffer_<driver>. This eases the refresh logic in
UI manager, which basically only decides what kind of refresh
to trigger. The device specific configuration in the framebuffer
driver decides how to realize that whish.
screen.lua is gone, in its place is now the framebuffer driver.
The device abstraction decides what framebuffer driver to load.
2014-11-23 12:13:32 +00:00
HW
7b91935df0
Merge pull request #1230 from chrox/fix_1170
...
fix #1169 and #1170
2014-11-23 13:13:07 +01:00
chrox
d11dba0558
fix #1169 and #1170
2014-11-23 18:06:20 +08:00
chrox
3574865dcb
fix #1166 by auto alignment of option name
2014-11-23 16:52:08 +08:00
Frans de Jonge
da00b4b8a9
Refactored menu
...
While looking into #1219 I accidentally ended up refactoring some stuff.
Tested in emulator and on H2O, but be wary because I might have overlooked something.
2014-11-21 15:57:10 +01:00
chrox
dbf8faa9b1
remove hardcoded footer height of reader menu
2014-11-20 18:02:50 +08:00
chrox
f52872b081
default autoscale for IconButton
2014-11-20 18:02:50 +08:00
chrox
e66801039b
refactoring: reuse IconButton for config menu bar
2014-11-20 18:02:50 +08:00
Hans-Werner Hilse
ab44d1f7e3
fix item number distinction (plural forms)
2014-11-19 13:25:32 +01:00
Frans de Jonge
8b9bbf918c
Fix typo in #1176
2014-11-19 12:53:03 +01:00
Frans de Jonge
d701d9b198
First util.template encapsulated strings
2014-11-19 12:23:37 +01:00
NiLuJe
e9573ebe58
Try to avoid more update_regions_func mismatches
...
scheduling tricks
2014-11-18 10:32:47 +01:00
NiLuJe
9bd089812b
Tweaks and fixes for refresh logic
...
Don't increase counter for regional updates
Also some workarounds for Kobos
Try to avoid update_regions_func poisoning
Reset it at the end of repaint() even if nothing was found dirty
Ensure regional updates are always PARTIAL, in
case we get a region attached to an automatically triggered refresh, not
marked force_partial [which, hey, shouldn't happen, but apparently does
sometimes ^^]
2014-11-18 10:31:32 +01:00
Hans-Werner Hilse
3d03713cb1
implement case-insensitive sort, make default and configurable
...
This will convert any file name to lowercase before doing the comparison.
Note that this will only work for ASCII character range, a full Unicode
aware solution will be much more complicated. And in the end, file names
are byte arrays, not character strings ;-)
fixes #1183 .
2014-11-16 19:27:31 +01:00
Hans-Werner Hilse
e031599c0a
fix strcoll() workaround
...
The strcoll() workaround we had in place for Kobo devices was (or has
become) ineffective. We had set self.strcoll to nil on Kobo devices -
but this was the instance variable. Setting it to nil effectively makes
the instance variable vanish, so when trying to access it later, it
was not there and got looked up via the metatable - which had the original
reference. Setting it to nil had no effect whatsoever.
We simplify that approach and set the replacement function where before we
had set this to nil.
This is a partial fix for issue #1183 (and explains a comment in issue #686
which says that the old fix did not work).
However, to really fix #1183 - if we want to do so - we would need a collate
function that normalizes uppercase/lowercase before compare.
2014-11-16 19:15:24 +01:00
Hans-Werner Hilse
45cf927ee8
Fix double-check of task list
...
Since commit 12a76fee33
, we had a potential
bug on the event mechanism:
It introduced (besides the checkTasks method itself) a second run of the
checkTasks() method. In the second run, however, scheduled events were
not taken into consideration in how long to wait for input events
afterwards.
So when the after the first run of checkTasks() there were new scheduled
tasks added to the task queue, they were not properly scheduled and
and depended on an already existing scheduled event or an input event
to trigger.
This might have led to unexpected order of execution (though the order
is not guaranteed by the task scheduling anyway!) or to events triggering
not at all until the next input event.
2014-11-14 09:12:46 +01:00
Hans-Werner Hilse
c22dbbe3ae
factor out repaint to its own method
...
it's gotten complex enough to isolate it
2014-11-14 09:09:50 +01:00
chrox
111ad02143
fix #1154
...
And koreader release version is normalized to a 10 digits containing
a four digits year field followed by a two digits month field followed
by a four digits revision field like "2014041079".
2014-11-13 14:43:20 +08:00
NiLuJe
13cbed8ea5
Fix partial refreshes on older Kobo devices
...
Fix #1146 (regression).
2014-11-12 19:12:22 +01:00
NiLuJe
1ee09010c4
Make ScrollTextWidget updates regional
...
Because I like breaking stuff in fun & interesting ways :D
2014-11-12 15:55:30 +01:00
NiLuJe
3d5dd44a4c
Don't hijack "fast" UI refresh w/ the REAGL stuff
2014-11-12 15:03:59 +01:00
Frans de Jonge
e5029b54c1
Capitalization: change a few mentions of calibre to lowercase
...
The author likes it that way. See http://calibre-ebook.com/about
2014-11-12 13:10:48 +01:00
Frans de Jonge
ff4e2f3458
Minor English improvements.
2014-11-12 12:29:38 +01:00
chrox
efbd7f7b5d
schedule in menu option callback
...
so that new reginal update on menu entry don't
affect screen update from callback results
2014-11-12 15:40:37 +08:00
NiLuJe
859031222e
Simplify the H2O special-casing
...
re #1119
AUTO appears to be doing the right thing...
(even if that baffles me, given the state of the Kernel sources,
unless they flip some switches at compile time
[NTX_WFM_MODE_OPTIMIZED_REAGL / NO_AUTO_REAGL_MODE] ...)
Anyway, that's what nickel does, so follow its lead ;).
2014-11-11 17:08:41 +01:00
Qingping Hou
123d0a1230
Merge pull request #1126 from chrox/wifi_toggler
...
add network settings in reader menu
2014-11-11 03:05:12 -05:00
Qingping Hou
fac2e121d2
Merge pull request #1124 from chrox/remember_menutab
...
remember menu tab index when showing reader menu
2014-11-11 03:01:35 -05:00
chrox
590073e4a8
add network settings in reader menu
...
and remove the wifi toggler on the footer of each menu page,
so that network status is only checked (currently with the stdout of ip cmd)
when navigating to the "Network settings" submenu instead of checking
on each menu popup.
2014-11-11 12:12:39 +08:00
NiLuJe
d018a31b0a
Me speak english good. ya!
2014-11-11 03:58:57 +01:00
NiLuJe
dbe816062b
Be consistent in how we refer to stuff
2014-11-11 03:39:47 +01:00
NiLuJe
c3274a9d5e
Unbreak FM by reverting 7a812f
...
:D
2014-11-11 03:24:56 +01:00
NiLuJe
b88e304845
Make TouchMenu updates regional
2014-11-11 03:17:15 +01:00
NiLuJe
88c26b4112
Make ConfigDialog updates regional
2014-11-11 03:10:03 +01:00
chrox
95ac27df5c
remember menu tab index when showing reader menu
2014-11-11 10:06:17 +08:00
NiLuJe
7a812ff86d
Make Button update regional
2014-11-11 03:03:25 +01:00
NiLuJe
39244aa0cb
Make ToggleSwitch updates regional
2014-11-11 02:52:47 +01:00
NiLuJe
041f11cba0
Tweak some comments
2014-11-11 02:42:07 +01:00
NiLuJe
a4a50b3d0d
Fix the REAGL logic.
...
Never use REAGL to handle UI elements. It makes for a much smoother
experience.
2014-11-11 02:28:41 +01:00
NiLuJe
656a2c7cb6
Actually do what the comment says.
...
Don't hijack forced partial updates (i.e., from UI elements) on always
FULL REAGL devices. It doesn't implode if we don't, and it makes for a
snappier UI.
2014-11-11 02:15:08 +01:00
NiLuJe
3ce10b697a
Moar comments!
2014-11-11 01:27:44 +01:00
NiLuJe
8cfbcca7c5
More comments on the H2O weirdness...
2014-11-11 01:25:44 +01:00
NiLuJe
a44c5e99d1
Use the proper constants for Kobo's waveform modes
2014-11-11 00:48:19 +01:00
NiLuJe
8f3598bec3
Make IconButton updates regional
...
Beginning of the quest to make menu refreshes slightly smoother ;).
2014-11-10 20:27:35 +01:00
NiLuJe
a2f107075d
Shot in the dark at matching the H2O's behavior...
2014-11-10 20:04:34 +01:00
NiLuJe
a12015c0d1
Force the dictionary popup to do a partial update.
...
It was done the other way around on purpose, so I probably broke some
very specific use-case ;). Feel free to shout at me ^^.
2014-11-10 16:48:16 +01:00
chrox
befa3aa63c
normalize version when checking packages in OTA manager
...
This fixes a bug that version 987 was treated newer than version 1010.
2014-11-10 20:21:28 +08:00
Frans de Jonge
ca75b7a030
Add usage note to unschedule
2014-11-09 16:38:58 +01:00
NiLuJe
d340159de8
Simplify the whole wait_for_marker commit.
...
Companion commit to the same stuff in base ;).
2014-11-08 15:50:57 +01:00
NiLuJe
cd7e9c3257
First stab at revamping the wait for marker stuff
...
WIP, untested, can probably simplified some more.
Good news is, it should be smarter, and thus provide a smoother user
experience :).
Relies on the relevant changes in base.
2014-11-08 15:50:57 +01:00
NiLuJe
d488ca43fa
Some potentially fun stuff TODO :)
2014-11-08 15:50:56 +01:00
NiLuJe
ed6f027d68
Whee, the eink driver was updated for the KT2/KV!
2014-11-08 15:50:56 +01:00
NiLuJe
76c3a3aa44
Minor comment tweaks
2014-11-08 15:50:56 +01:00
NiLuJe
b3137736c8
Don't highjack regional updates on REAGL devices
...
We wouldn't want those to become full updates ;).
Also apply an optionally different waveform mode for such partial,
regional updates (right now, only Kindle devices make use of this finer
grained control).
2014-11-08 15:50:56 +01:00
NiLuJe
25adccbcd6
More notes for tomorrow
2014-11-08 15:50:56 +01:00
NiLuJe
374d993355
One more thing to look into/fix...
2014-11-08 15:50:56 +01:00
NiLuJe
13b02cbad9
Request regal waveform on phoenix & dahlia
...
Depends on the corresponding changes in koreader-base ;)
2014-11-08 15:50:56 +01:00
NiLuJe
1c22c38a5d
Review some of my waveform switcheroo logic...
2014-11-08 15:50:56 +01:00
Andrey Golovizin
8bce54a6a0
Ignore OPDS links with unknown rel values.
2014-11-08 09:19:29 +01:00
Andrey Golovizin
5888773c95
Try to fetch next page if loading a new catalog resulted in a single page
2014-11-07 22:10:12 +01:00
Andrey Golovizin
500ad9ba4c
Fetch enough items to fill at lest one new page
2014-11-07 22:10:06 +01:00
HW
9a7834113b
Merge pull request #1097 from Frenzie/master
...
Implement UIManager:unschedule(action). Fixes #1007 .
2014-11-06 17:53:35 +01:00
HW
a7938b1680
Merge pull request #1090 from chrox/fix_869
...
fix #869
2014-11-06 16:16:24 +01:00
Frans de Jonge
8cd80288a0
Implement UIManager:unschedule(action). Fixes #1007 .
2014-11-06 12:59:00 +01:00
chrox
dd308f6be1
allow closing non-existent widget but throw a warning
2014-11-06 14:00:47 +08:00
chrox
0dd3a1f8a1
add option to turn off e-ink optimization
...
which currently just sets free the limitation of panning gestures
emitting rate. This should fix #1039 when unchecking the
"E-ink optimization" in the "Screen settings".
2014-11-06 13:16:35 +08:00
Huang Xin
62eef02c86
Merge pull request #1080 from houqp/fix
...
fix kobo aura hd input handling
2014-11-05 15:57:31 +08:00
Qingping Hou
6eca26f610
fix(screensaver): lastfile will be nil for fresh installation
2014-11-05 01:02:12 -05:00
chrox
bd0975896d
add fulltext search for EPUB documents
2014-11-05 12:28:28 +08:00
chrox
8ddca4bf49
close reader config panel when touching reader menu
2014-11-05 12:28:28 +08:00
chrox
a766ec51ae
only update neccessary screen regions when typing with virtual keyboard
2014-11-05 12:28:28 +08:00
chrox
3a1fe689e2
update multiple screen regions
...
This is useful when updating keyboard and inputbox.
2014-11-05 12:28:28 +08:00
Hans-Werner Hilse
3066c86e38
Refactoring hardware abstraction
...
This is a major overhaul of the hardware abstraction layer.
A few notes:
General platform distinction happens in
frontend/device.lua
which will delegate everything else to
frontend/device/<platform_name>/device.lua
which should extend
frontend/device/generic/device.lua
Screen handling is implemented in
frontend/device/screen.lua
which includes the *functionality* to support device specifics.
Actually setting up the device specific functionality, however,
is done in the device specific setup code in the relevant
device.lua file.
The same goes for input handling.
2014-11-02 21:19:04 +01:00
chrox
a32991d898
add new sorting methods for file list in filemanager
...
Now files can be sorted by filename or last accessed time
2014-10-30 22:41:52 +08:00
chrox
84029e9694
add modal widget type that will stay on the top of window stack
...
ConfirmBox and InfoMessage are default to be modal.
Now returning to filamanager after highlighting a PDF page
the confirmbox asking users to save the document will not be hidden by
the filamanager window.
And it's tested on Kindle that #791 is already been solved probably by
out refacorting of MuPDF backend.
2014-10-30 16:01:04 +08:00
chrox
dfcd67c5bf
move screenshot settings to submenu of Screenshot entry in readermenu
...
And also fix a touchmenu bug that prevent some menu entries
(always at the bottom of the menu) from showing submenus. The reason is
that the onTapSelect method of TouchMenuItem doesn't return true, so that
the tap gesture will propagate to the parent widget and be captured by
touchmenu itself. But at this time the dimen of touchmenu is changed to
the submenu of the tapped menuitem. If the submenu is short enough the
tap will be outside of touchmenu which will cause a TapCloseAllMenus
event and the submenu will never be shown.
2014-10-30 15:51:35 +08:00
chrox
68265336f4
fix #1034 by refactoring path chooser to a download manager
...
Now directories visible in the filemanager should also
be visible in the path chooser
2014-10-28 17:14:06 +08:00
Michael Hall
79cb75b153
Added option for proportional cover image screensaver
2014-10-26 14:47:48 +00:00
Huang Xin
2dcf65c912
Merge pull request #1049 from gontofe/wifi_toggle
...
Leave both readerconfig and readermenu open on wifi toggle
2014-10-26 19:27:44 +08:00
Michael Hall
dd80d61155
Leave both readerconfig and readermenu open on wifi toggle
2014-10-26 09:41:28 +00:00
Qingping Hou
b0682b0470
chore: code clean up
2014-10-26 03:05:17 -04:00
Qingping Hou
394c847e2b
fix(app): initilize menu properly in reader and filemanager
2014-10-25 05:46:02 -04:00
Qingping Hou
d1627337e0
fix(ui): fix dynamic menu height calculation
2014-10-25 04:03:37 -04:00
Hans-Werner Hilse
ba40cc56e9
fill background of intermediary blitbuffers
...
we need to explicitly fill those buffers, now that white is not "0"
anymore.
2014-10-24 13:48:42 +02:00
Hans-Werner Hilse
5982e24d57
unify color specification
...
colors were a mixture of 4bpp integers (0=white, 15=black) and
fractional blackness levels (0=white, 1.0=black) before. This is
now unified to use the color specification of the Blitbuffer API.
2014-10-24 13:48:42 +02:00
chrox
c994e30cff
fix #1024
...
if toc item has expand/collapse state and tap select on the left side
the state switch action is triggered, otherwise goto the
linked page.
2014-10-21 22:18:07 +08:00
HW
1cb3c85f34
Merge pull request #1021 from chrox/fix_1011
...
fix #1011
2014-10-21 12:42:16 +02:00
chrox
07ae0cba81
fix #1011
...
The #1011 bug is caused by the `contains` check of link box with
visible area. When the link is at the very right (left?) of
the page, enlarged link box often exceeds the page bound rendering
the mentioned `contains` check failed. This patch uses an `intersectWith`
test to check if the link is in current page.
2014-10-21 17:26:16 +08:00
Hans-Werner Hilse
e0868826ad
use new FFI based mupdf API
...
This will use the new API where the Lua/C interface was used before
and also drop usage of mupdfimg wrapper which is now implemented
within the mupdf interface
2014-10-20 16:49:10 +02:00
chrox
2ad63fc1a3
expand/collapse TOC only by tap on the icon
2014-10-20 22:19:31 +08:00
Qingping Hou
c1c3bcb3fe
fix: various fixes for kindle dxg
2014-10-20 02:17:57 -04:00
Frans de Jonge
f3d5d5b030
Kobo Aura H2O: fix offset for reverse landscape (rotation_mode 3)
2014-10-17 13:25:13 +02:00
Frans de Jonge
7117235414
Kobo Aura H2O: fix bezel.
2014-10-16 15:17:31 +02:00
Frans de Jonge
c50bdfd11c
Kobo Aura H2O detection: slight code refactoring.
2014-10-16 10:59:11 +02:00
Frans de Jonge
629c32f6ba
Changes for Kobo Aura H2O.
2014-10-15 18:28:13 +02:00
chrox
f3417c5488
fix #987
2014-10-15 18:17:16 +08:00
chrox
96960cd554
don't dim icon button by default
2014-10-14 21:34:56 +08:00
chrox
7c9130744c
add collapsable TOC menu
2014-10-14 21:34:56 +08:00
chrox
46963df0bb
don't need to rebuild ota installed package if it's detected
2014-10-14 21:34:56 +08:00
chrox
b09bb87d4e
refactoring readertoc and readerfooter
...
so that they don't repeat themselves.
2014-10-07 17:10:48 +08:00
Qingping Hou
a44cc3150d
fix: use correct entry for Ukrainian in language menu
2014-10-07 01:32:04 -04:00
Qingping Hou
16b393ff47
chore(device.lua): remove frontlight hack for kobo
2014-10-07 01:32:04 -04:00
chrox
330e5a2789
don't open SDL if input device is dummy
2014-10-06 21:23:54 +08:00
Qingping Hou
05e47c8c9c
Merge pull request #955 from chrox/network_proxy
...
http proxy support by setting NETWORK_PROXY variable
2014-10-05 01:14:48 -07:00
Qingping Hou
55cb0271cb
Merge pull request #954 from chrox/fix_950
...
get rid of query filed of baseurl when building href
2014-10-05 01:08:02 -07:00
chrox
3147ffb08a
http proxy support by setting NETWORK_PROXY variable
...
This should implement feature request in #919 .
2014-10-05 16:04:52 +08:00
chrox
549f54ab07
get rid of query filed of baseurl when building href
...
otherwise there will be "?offset=90" query in downloading href
for calibre opds server which doesn't accept the url
This should fix #950 .
2014-10-05 15:47:36 +08:00
chrox
7b78d70c74
fix fgcolor of inputbox is always 0.0
2014-10-05 14:00:38 +08:00
chrox
6152198e88
still needs button bgcolor
...
This bgcolor is for framecontainer background color.
2014-10-04 22:01:09 +08:00
Hans-Werner Hilse
7b1777e095
adapt widgets and text rendering to new font rendering
...
no background for text rendering anymore
2014-10-04 15:54:03 +02:00
Qingping Hou
7df2e0fb28
Merge pull request #944 from chrox/lazy_loading
...
refactoring: lazy loading of unused modules
2014-10-03 19:08:39 -07:00
evgsh
aae2c4de27
Added acquisition relation types , fixes issue #940
2014-10-03 17:22:37 +03:00
chrox
14e2bf3d69
refatoring: lazy loading of packages
2014-10-03 16:13:34 +08:00
chrox
9adf8ac327
also paint widget if any widget underneath is dirty
2014-09-29 14:23:38 +08:00
chrox
508cf94f98
fix run out of memory when receiving large files from Calibre
2014-09-29 14:22:33 +08:00
Hans-Werner Hilse
e47b43e8b5
add implementation of a container widget with alpha-blitting
...
This is a container that will honor a given alpha value (0..1)
when painting, so it will be translucent for values < 1.
2014-09-28 21:48:06 +02:00
Hans-Werner Hilse
adbcdddb56
undo wrong use of addblitFrom()
...
rendertext.lua did use addblitFrom() for rendering text - i.e. blitting
the letters to a BlitBuffer. However, it used intensity=1.0, which is
the same as doing a (faster, more efficient) blitFrom(). So use that
instead.
What was probably intented here is a different kind of blitting - using
the bitbuffer of the glyph as a mask.
2014-09-28 21:11:03 +02:00
chrox
97e7a90865
encode lfs.dir iterated file path to UTF-8
2014-09-25 22:33:43 +08:00
chrox
a0cd4816a7
no mkfifo on Windows
2014-09-25 22:33:31 +08:00
chrox
7d22318641
don't require ssl.https since it cannot yet be built for win32
2014-09-25 22:33:06 +08:00
evgsh
aabee1f3bc
Update opdsbrowser.lua
2014-09-19 13:43:58 +03:00
chrox
7871af3489
add Calibre Companion plugin
...
This plugin implements a simple Calibre Companion protocol that
communicates with Calibre Wireless Server from which users can
send documents to Koreader devices directly with WIFI connection.
Note that Calibre Companion(CC) is a trade mark held by MultiPie Ltd.
The Android app Calibre Companion provided by MultiPie is closed-source.
This plugin only implements a subset function of CC according to the
open-source smart device driver from Calibre source tree.
More details can be found at calibre/devices/smart_device_app/driver.py.
2014-09-18 14:03:55 +08:00
WS64
abaa772750
Add "exclude cover from screensaver" functionality
2014-09-17 12:24:33 +02:00
Huang Xin
786d300953
Merge pull request #899 from gontofe/WifiMenuToggle
...
Adding Touch Menu Wifi Status icon/Toggler for Kobo and Kindle.
2014-09-15 09:10:20 +08:00
Michael Hall
f6b1ed2b6d
Add tidy up option after failed update.
2014-09-14 16:07:19 +01:00
Michael Hall
96aa795618
Adding Touch Menu Wifi Status icon/Toggler for Kobo and Kindle. Change to
...
NetworkMgr:getWifiStatus() to ping default gateway instead of 8.8.8.8.
2014-09-14 15:05:28 +01:00
Qingping Hou
5e035c2517
fix(ui): hide button framecontainer background in hide() method
2014-09-13 23:43:39 -04:00
chrox
cf882a078a
fix page number of sub-menu is not updated
2014-09-13 14:00:57 +08:00
Qingping Hou
9c9edcf36f
Merge pull request #888 from chrox/fix_886
...
always suspend in portrait mode so that screensaver image won't be stretched
2014-09-10 00:56:25 -07:00
chrox
3bd2c0756a
always suspend in portrait mode so that screensaver image won't be stretched
...
This patch should fix #886 .
2014-09-10 15:52:18 +08:00
Qingping Hou
eb46aa7d66
Merge pull request #887 from chrox/fix_875
...
refactoring: hide the charlist implementation of InputText
2014-09-10 00:49:06 -07:00
chrox
5b940cecaf
refactoring: hide the charlist implementation of InputText
...
This patch also fix #875 .
2014-09-10 15:31:11 +08:00
chrox
88d9cdf533
add shortcut to add local calibre OPDS catalog
2014-09-10 13:27:15 +08:00
chrox
b05ece345a
add set download directory option when downloading files from OPDSCatalog
...
Manually added opds servers are editable and deletable by long press on
the menu entries.
2014-09-10 13:27:15 +08:00
chrox
11a8a1dce6
show file size and directory items in filemanager
2014-09-10 13:27:15 +08:00
chrox
98da30f689
fix href with two slash
2014-09-07 17:21:58 +08:00
chrox
69bb4a3df3
add return button in menu
2014-09-05 21:07:43 +08:00
chrox
c12cb0367b
title truncation in input dialog
2014-09-05 21:07:43 +08:00
chrox
69c162ac4f
refactoring to generic multiinputdialog
2014-09-05 21:07:43 +08:00
chrox
21dcf787da
add OPDS support
...
This PR implements a simple OPDS browser which can be launched
from filemanager menu.
2014-09-05 21:07:43 +08:00
chrox
2bec0017a0
refactor out global functions showHomePage and showReaderUI
2014-09-05 21:07:42 +08:00
chrox
c74c258fc7
add filemanager icon in reader menu
...
now we can access the filemanager in all launcher configurations
2014-09-05 21:07:42 +08:00
WS64
f29eed1ebe
minor code optimizing
2014-08-29 22:16:47 +02:00
WS64
eae3f01b57
Screensaver repair
...
Single picture as screensaver was not displayed anymore after the last update
2014-08-29 22:10:20 +02:00
WS64
4916ae6cb1
Set minimum light to 0 instead of 1
2014-08-27 20:56:09 +02:00
WS64
a3fad804e3
Bring back the two KOBO variables for the light
...
This should close #856 .
Although still closed I will check this one back with someone from the German forum, I hope this also closes #822 , but there might be still some problems with the light-bug introduced in Kobo's firmware 3.5. But since 822 is already in the state closed we can leave things as they are for now and I will reopen 822 if necessary.
2014-08-27 12:40:56 +02:00
Qingping Hou
288a49252e
Merge pull request #854 from chrox/screensaver
...
refactoring: use Document API getCoverPageImage to get cover image
2014-08-26 23:13:06 -07:00
chrox
0bc3eadcae
refactoring: use Document API getCoverPageImage to get cover image
2014-08-27 11:07:25 +08:00
Michael Hall
7379c3a6e5
Display error message upon failed OTA Update.
2014-08-26 21:18:00 +01:00
Michael Hall
4cc9cf85e4
Prevent promptWifiOn() needing to be called twice and refactor OTA update fetch/version check
2014-08-26 20:21:18 +01:00
chrox
40bddf0735
emulate Power button with F2 on emulator
2014-08-26 18:10:26 +08:00
Huang Xin
451092905e
Merge pull request #842 from WS64/master
...
Add a new multi line input dialog and change some search behaviour
2014-08-26 15:20:37 +08:00
chrox
5890e4a0b1
use conventional util name and update koreader-base
2014-08-26 08:59:24 +08:00
Michael Hall
d49153059d
Merge remote-tracking branch 'upstream/master'
2014-08-25 18:08:14 +01:00
Michael Hall
7ea90b2dc9
Change to prevent OTA Server check before wifi enabled
2014-08-25 18:06:15 +01:00
WS64
bde3f31089
New input dialog with variable amount of fields
2014-08-25 18:00:11 +02:00
Qingping Hou
749c7f9939
fix(FM): remove redundant call to lfs.dir
2014-08-25 00:20:19 -04:00
Michael Hall
071a301edf
Add getWifiStatus function to allow checking for live wifi connection before
...
trying OTA Update
2014-08-24 13:34:38 +01:00
WS64
5fba816d08
remove global variable
2014-08-24 10:08:18 +02:00
chrox
7ce5c9c052
fix Droid Sans Fallback not registered to crengine
2014-08-23 22:46:41 +08:00
WS64
aaf9d20c64
Give cover images unique names and keep them 30 days
2014-08-23 11:21:37 +02:00
Huang Xin
e4ab31de31
Merge pull request #825 from WS64/master
...
Add last book screensaver for Kobo, also covers to book info screen
2014-08-23 15:27:21 +08:00
WS64
1a71b3e503
resolve github inconsistencies
2014-08-23 09:01:58 +02:00
WS64
26413adab5
resolve github inconsistencies
2014-08-23 08:50:51 +02:00
chrox
a2b232c80b
add image cache
2014-08-22 21:32:03 +08:00
chrox
dc166b50cc
fix OTA update on Kobo, close #824
2014-08-22 21:32:03 +08:00
WS64
45546945e4
Removed screensaver functions to new lua file
2014-08-22 09:05:30 +02:00
WS64
f5f3e61782
Removed screensaver functions to new lua file
2014-08-22 09:05:00 +02:00
WS64
7e1b702111
Allow to take an image from paretn instead of info-i.png
2014-08-21 22:30:01 +02:00
WS64
4599d02c6f
Show filename on error in crash.log
2014-08-21 22:24:59 +02:00
WS64
043dc13a24
Add "last book" screensaver for Kobo
...
Epub only.
If someone knows how to get an jpg/png from a pdf on linux (e.g. convert by imangemagick? But i am not a linux specialist and have no idea how to get that one into koreader) I can add something for linux too.
cbz/cbr should be possible too, but I have not looked into it yet.
Do I see it right that the Kindle screensavers are handled by Kindle itself?
But on Kindle you also profit, you can see picture thumbnails now in the search results (long tap on found book)
2014-08-21 22:22:49 +02:00
chrox
2199da1713
disable string collating in Kobo devices
...
This should fix #686 .
2014-08-21 13:55:17 +08:00
Qingping Hou
63b6d25f72
Merge pull request #818 from chrox/master
...
enable Wikipedia support
2014-08-20 22:00:25 -07:00
WS64
2e8ee74b2c
Update input.lua
2014-08-20 20:45:56 +02:00
chrox
f575797b01
use original lookup word in wikipedia lookup
2014-08-20 18:25:37 +08:00
chrox
a275a8cc89
strip punctuations in word before wikipedia lookup
2014-08-20 18:04:19 +08:00
chrox
0d112c4fa5
fix koboEnableWifi
2014-08-20 15:47:10 +08:00
chrox
557c29a7d9
prompt users to turn on Wifi in OTA update and Wikipedia lookup
2014-08-20 15:46:43 +08:00
Huang Xin
3334b4dc77
Merge pull request #819 from WS64/master
...
Add { and } to cirtual keyboard and just save back settings that really were changed
2014-08-20 15:10:08 +08:00
WS64
1eea694190
To edit arrays we need { and }
...
I removed pi and e and two other characters that were there twice and replaced them by {, }, [, ]
2014-08-20 08:52:38 +02:00
chrox
c83f35a0d0
long press the backspace key will clear input text
2014-08-20 14:45:38 +08:00
chrox
948d92a3b3
fix tap on word title will crash koreader
2014-08-20 14:45:11 +08:00
chrox
7b10d66e1b
enable Wikipedia support
...
Since wikipedia server is language specific we should first detect
language of the text by querying Google Translate. Make sure you have
access to both Google Translate and Wikipedia service to use this
function.
2014-08-20 14:41:48 +08:00
chrox
56fa8a45b7
remove rescaleByDPI since it's not reversible
...
alternatively we store the original size before scaling by screen DPI
and use that value when needed.
2014-08-20 09:41:01 +08:00
chrox
dc911c659e
adapt DroidSansFallback file name
2014-08-19 12:11:49 +08:00
chrox
fe14809bdf
update mupdf and k2pdfopt to latest versions
2014-08-19 12:11:49 +08:00
chrox
30898a3cd8
config line space/font gamma values directly
2014-08-19 12:11:49 +08:00
chrox
f37faadcf1
ImageWidget now supports png, jpg and tiff files
2014-08-19 12:11:49 +08:00
chrox
c8bc9ee37c
close screen framebuffer when exiting reader
2014-08-19 12:11:48 +08:00
pazos
a455b3a730
move wifi.sh to networkmgr.lua
2014-08-19 00:48:06 +02:00
chrox
d34a7fb355
lookup input word when holding on word in dict lookup window
2014-08-18 00:32:09 +08:00
WS64
24af13e1c3
Full refresh after suspend
2014-08-15 22:07:01 +02:00
WS64
ff4fa33608
Update uimanager.lua
2014-08-15 15:59:40 +02:00
WS64
768077aaa0
Screensaver functionality for Kobo
2014-08-14 22:18:27 +02:00
WS64
fde966afd2
Readded a comment that was lost by an earlier PR
2014-08-14 22:17:53 +02:00
chrox
3018c7c6b6
add rotate method for ImageWidget
2014-08-14 20:11:21 +08:00
chrox
b7c7287bab
remove more global variables
2014-08-14 19:52:30 +08:00
chrox
9f3eb0b784
rescale image if width or height is specified in ImageWidget
2014-08-14 19:51:40 +08:00
WS64
11996cb6bb
Kobo: Turn light on/off according to start parameters
...
Kobo only.
I guess Kindle handles this himself anyway?
2014-08-12 13:11:13 +02:00
Huang Xin
a7d1e720ef
Merge pull request #789 from WS64/master
...
remember editor settings after changing/cancelling one entry
2014-08-12 16:15:35 +08:00
WS64
dd70023c2c
Add a parameter to swithItemTable to jump directly to this item
2014-08-12 09:36:23 +02:00
chrox
a9b16613cf
enable highlight in dictionary lookup window
...
This should fix #774 .
2014-08-11 21:50:21 +08:00
chrox
828d698b56
fix scaleByDPI(1) returns 0 in screen of lower DPI
2014-08-11 21:18:27 +08:00
WS64
eada89002d
Remove Search Options (will be part of edit defaults)
2014-08-11 10:38:17 +02:00
WS64
7ccb948833
Add default value
2014-08-11 10:37:38 +02:00
NiLuJe
e2efb230a6
Make the geometry of the minibar user-configurable
...
As well as the width of the toc notches
Lower the default value of the container size a bit to avoid eating into
the last line on small borders setup (I checked on 167 & 212 DPI
devices, Feel free to revert to the previous value (19) if that causes
trouble).
2014-08-11 05:09:45 +02:00
Huang Xin
81f2d4b668
Merge pull request #778 from pazos/master
...
clean the pot file
2014-08-10 07:57:24 +08:00
WS64
52d6acdd50
Add search options (new)
2014-08-09 20:48:47 +02:00
WS64
1189ce051d
Add Umlauts to Keyboard
2014-08-09 13:59:05 +02:00
pazos
9458936868
no need to translate trademarks v2
2014-08-09 13:56:49 +02:00
WS64
e0c9501f85
Add chapter markers
2014-08-09 08:58:44 +02:00
chrox
d7fa72e46c
negative x panning if writing direction is set right to left
...
so that in right to left writing/drawing system the right part
of the page is drawn first
2014-08-06 22:06:38 +08:00
chrox
5dc30d305a
add OTA settings for server mirrors and channels
2014-08-06 20:32:28 +08:00
chrox
8948400907
fix #765
2014-08-06 20:32:28 +08:00
NiLuJe
8b6c5a2e2e
Tweak the spacer appearance condition
...
Make it sync with the first/last icon, instead of always showing it.
Doesn't change much, since it's invisible, but, still, more correct this
way ;).
2014-08-05 17:52:29 +02:00
NiLuJe
bd32e1f10a
Add some breathing room to the FM icons.
...
In the form of a spacer icon between the first/last icon and the
next/prev one. Should help with fatfingeritis.
2014-08-05 17:41:36 +02:00
chrox
024091168f
set refresh rate immediately after input custom rate
2014-08-05 12:10:32 +08:00
chrox
225efb7655
prompt users to restart after changing screen DPI
2014-08-05 12:05:44 +08:00
chrox
b83c4c3d95
hide several koptoptions in advanced mode
2014-08-05 12:04:17 +08:00
chrox
55554acf39
refactoring: buildin hold on menu entry to input
2014-08-05 10:23:25 +08:00
NiLuJe
5354fead70
Handle the new 4GB PW2 models
2014-08-01 19:32:24 +02:00
chrox
403b9f7ce6
refactoring: use getXxMenuTable to remove redundant code in menus
2014-08-01 22:23:08 +08:00
chrox
a7fc4cccde
refactoring: generate check update menu entry table in OTAManager
2014-08-01 21:59:59 +08:00
NiLuJe
51bd5b943b
Merge pull request #751 from chrox/master
...
add 'Check update' menu and OTA update
2014-08-01 06:58:52 +02:00
chrox
d9f5edf54a
add 'Check update' menu and OTA update functionality
2014-08-01 12:36:36 +08:00
WS64
2968960a35
Filemanager: Added "first" and "last" page functionality
2014-07-30 09:00:02 +02:00
chrox
87e667748a
add font size menu entry
...
It changes screen DPI and may needs to reboot the reader to take effect.
This should fix #746 .
2014-07-27 21:43:39 +08:00
chrox
405411ac4c
add menu entry for E-ink screen refresh rate
2014-07-26 22:22:52 +08:00
chrox
82b458102a
swipe east/west to switch dictionary in dict quick lookup window
2014-07-24 22:10:28 +08:00
chrox
0d1dfcbb6a
range field in gesturerange can be function now
2014-07-24 22:08:26 +08:00
pazos
37d6239e20
Add wifi toggle for kobos
2014-07-19 16:32:41 +02:00
chrox
120f18737e
add advanced option forced_ocr to force ocring text
2014-07-17 22:32:20 +08:00
chrox
e91ddee836
add advanced option type that only shown when show advanced options is selected
2014-07-17 22:31:01 +08:00
chrox
d1052a46fc
prompt users to turn on Wifi if network is unreachable
2014-07-17 21:01:31 +08:00
Huang Xin
f5c717536a
Merge pull request #732 from WS64/master
...
Update TOC settings after some screen mode/hyphenation changes
2014-07-16 21:14:03 +08:00
WS64
de16368cc9
Added inverted landscape settings
2014-07-16 14:03:48 +02:00
WS64
e88e2c3bd2
removed unnecessary variables
2014-07-16 13:51:09 +02:00
Huang Xin
4310af0b42
Merge pull request #731 from WS64/master
...
Add white borders to Kobo Aura because of obscuration by black bezel
2014-07-16 15:59:25 +08:00
WS64
5c2b8dc66e
move offset functions to screen.lua because of Kobo Aura issues
2014-07-16 09:44:27 +02:00
WS64
ee6dfe04ed
border Kobo Aura screen because of obscuration by black bezel
2014-07-16 09:40:37 +02:00
chrox
df57c19b99
check battery status file
2014-07-15 16:45:09 +08:00
chrox
bb9426038f
add API to query battery status on Android
2014-07-15 16:23:57 +08:00
Qingping Hou
108a451f0e
fix: crash on emulator when trying to display battery level
2014-07-08 12:19:00 -04:00
NiLuJe
5ebed6655b
Use Noto instead of Droid, where appropriate.
2014-07-08 02:11:17 +02:00
NiLuJe
3168ebd219
Move the waveform mode selection a bit...
...
Move it from the main UI loop to init, we're using static values anyways,
and a change of device at runtime is highly unlikely (:D).
2014-07-08 01:21:05 +02:00