ltGuillaume
4c72d3b4fc
Add keyboard shortcut 'g r': Go to Recently read
6 years ago
Andrew Dolgov
cc2ac3a86c
FeedTree: add feed debugger to per-feed context menu
6 years ago
Andrew Dolgov
b1bb7c6001
Merge branch 'master' of git.fakecake.org:tt-rss
6 years ago
Andrew Dolgov
019f4578bc
fix feed icon upload not working, rework form to use FormData/ajax
6 years ago
Michael Kuhn
e74f7bde22
Refactor hotkeys to use keypress instead of keydown
...
keydown returns the "raw" key in event.which. Depending on the keyboard
layout, this may not be what is wanted. For example, on a German
keyboard, Shift+7 has to be pressed to get a slash. However, event.which
will be 55, which corresponds to "7". In the keypress event, however,
event.which will be 47, which corresponds to "/".
Sadly, several important keys (such as escape and the arrow keys) do not
trigger a keypress event. Therefore, they have to be handled using a
keydown event.
This change refactors the hotkey support to make use of keypress events
whenever possible. This will make hotkeys work regardless of the user's
keyboard layout. Escape and arrow keys are still handled via keydown
events.
There should be only one change in behavior: I could not make Ctrl+/
work and therefore rebound the help dialog to "?".
6 years ago
Andrew Dolgov
a34509c8ae
Merge branch 'master' of git.fakecake.org:tt-rss
6 years ago
Andrew Dolgov
19f162dbe3
css: insensitive -> text-muted
6 years ago
Andrew Dolgov
900cdbbb31
Headlines.click: open original article (and mark as read) on alt click on title
6 years ago
Andrew Dolgov
ae9ef7fe84
Headlines.click: fix another small issue with expanded mode (2)
6 years ago
Andrew Dolgov
0b8f3909fe
Headlines.click: fix another small issue with expanded mode
6 years ago
Andrew Dolgov
84cf95fe8f
Headlines.click: open original article when it makes sense to do so
6 years ago
Andrew Dolgov
cf6f867feb
getRange: handle start == stop
6 years ago
Andrew Dolgov
d876cca22a
tweak Headlines.click: ctrl-click toggles selection, shift-click selects range
6 years ago
Andrew Dolgov
ef6d2b8a4e
update notifications to make them more visible
...
cleanup some minor stuff in pref-users
6 years ago
Andrew Dolgov
70c53257d9
on_catchup_show_next: remove auto-trigger on headlines scroll
6 years ago
Andrew Dolgov
4db13b8a17
simplify preference layout, remove some unnecessary css classes
6 years ago
Andrew Dolgov
6e14e575b3
use separate id for default password warning dialog
6 years ago
Andrew Dolgov
848bb6579c
floatingTitle: show collapse button if in expandable mode
6 years ago
Andrew Dolgov
1124c3f00a
label display: fix unneeded nested container in headlines, increase overall minimalism, fix label element typo (div1)
6 years ago
Andrew Dolgov
dbab03bd4c
Feeds.catchupAllFeeds() should be Feeds.catchupAll()
6 years ago
Andrew Dolgov
c7c9c5fb0a
feedTree: amend previous to check that nodes are actually there (2)
6 years ago
Andrew Dolgov
42e0c7a420
feedTree: amend previous to check that nodes are actually there
6 years ago
Andrew Dolgov
3827e5b944
selectFeed: scroll feed tree to selected row
6 years ago
Andrew Dolgov
8b26b8629f
headlines-frame: set is-vfeed attribute if result is virtual feed
6 years ago
Andrew Dolgov
c607b7836e
onLoaded: clear this.headlines on first page load
6 years ago
Andrew Dolgov
f44c6d01b0
fix previous always disabling infscroll
6 years ago
Andrew Dolgov
c66db9bde8
headlines onloaded: when appending, check for duplicate IDs
6 years ago
Andrew Dolgov
51b069a1ee
display filter tree rules as a list
6 years ago
Andrew Dolgov
8393096947
selectionTogglePublished: fix typo which caused it to mark articles instead
6 years ago
Andrew Dolgov
dee210e546
headlines onLoaded: make sure a few more things respect append instead of offset == 0
6 years ago
Andrew Dolgov
8effabd075
append headline buffer if requested, don't just use offset
6 years ago
Andrew Dolgov
957c44d177
rework git update checking to be initiated by frontend, outside of runtime info output
6 years ago
Andrew Dolgov
c3b8b6a2a1
also prevent multiple requests
6 years ago
Andrew Dolgov
54ce930b8d
delay counters request on promise completion a bit
6 years ago
Andrew Dolgov
8c49689fda
filter test results: remove table bloat
6 years ago
Jordan Galby
47b4a262cf
fix missing curly brace
...
Fix the error:
```
SyntaxError: missing } after property list
```
6 years ago
Andrew Dolgov
d3885c5883
App.toggleNightMode: add some fadein/fadeout
6 years ago
Andrew Dolgov
d53cdaf815
requestCounters: remove cooldown
6 years ago
Andrew Dolgov
4e41db7ed3
Article.unpack: add placeholder if data-content is empty
6 years ago
Andrew Dolgov
eda4ac2a2b
add fallback colors for headline feed titles based on feed name if favicon color is not available
6 years ago
Andrew Dolgov
be49b77b14
Revert "use codeflask for user css editor"
...
This reverts commit daa43e0572
.
6 years ago
Andrew Dolgov
721f9ad866
requestIdleCallback: remove hard dependency for now
6 years ago
Andrew Dolgov
daa43e0572
use codeflask for user css editor
6 years ago
Andrew Dolgov
7a98105960
remove old fatalError(), move everything to App.Error
...
update exception dialog css
6 years ago
Andrew Dolgov
071ca5aa96
Error.report: use JS template strings
6 years ago
Andrew Dolgov
2cbc2f5261
bring back frontend sanity check w/ App.checkBrowserFeatures()
6 years ago
Andrew Dolgov
f3c04fc5d8
sync modified scores via mutation observer
6 years ago
Andrew Dolgov
25ca144bb7
score: get correct classes for rows/score icons on the client
6 years ago
Andrew Dolgov
fd6f3e7f07
syncModified: request counters once after all xhr promises resolve
6 years ago
Andrew Dolgov
7cfd04ffb4
xhr helpers: wrap in promises
6 years ago