summaryrefslogtreecommitdiff
path: root/p/scripts
AgeCommit message (Collapse)Author
2014-08-23Fix bug link at article bottom not mark as readGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/578
2014-08-19Add a feed selector in repartition statistics.Gravatar Alexis Degrugillier
Before we could choose the feed in the statistics only from the feed options in the main view. Now with the new drop-down list, it is possible to choose it from the statistics page. The rendering needs to be polished to be nicer.
2014-08-09Dynamic favicon: remove the same number in the titleGravatar Alexandre Alapetite
Now the number of unread articles in only shown in the favicon https://github.com/marienfressinaud/FreshRSS/issues/539
2014-08-09Show notification only for new articlesGravatar Marien Fressinaud
Now, notifications are shown only if there are new articles not shown on the page yet. Before, at the first loading of the page, if there were unread articles, a notification appeared after two minutes!
2014-08-08Merge branch 'dev' of github.com:marienfressinaud/freshrss into devGravatar Marien Fressinaud
2014-08-08Add support of HTML5 notificationsGravatar Marien Fressinaud
Show a notification if there are at least 1 new article to read. Support only window.Notification API. See https://github.com/marienfressinaud/FreshRSS/issues/399
2014-08-08Change event handling for confirmation dialogGravatar Alexis Degrugillier
See #567 Before, when content was loaded dynamically, the confirmation was not poping. Now, the confirmation pops by changing event handling.
2014-08-07Dynamic favicon style 2Gravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/539
2014-08-07Dynamic favicon styleGravatar Alexandre Alapetite
A bit more transparency in the background of the text https://github.com/marienfressinaud/FreshRSS/issues/539
2014-08-07Revert "Dynamic favicon all unread articles"Gravatar Alexandre Alapetite
This reverts commit 6972a469794a654c6ecd6b32b68a813e1c47f7ec.
2014-08-06Dynamic favicon all unread articlesGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/539
2014-08-03Minor change dynamic faviconGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/539
2014-08-02Experimental: Removed lazyload.js and use postpone attribute insteadGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/316 The performance of lazyload.js was not good enough, and not really needed anyway. This change mostly affects mainly situations when the content of articles is shown by default, not so much when they are collapsed Using HTML5 lazyload and postpone attributes by default on all img, audio, iframe, video. http://www.w3.org/TR/resource-priorities/#attr-postpone Postpone attribute is removed by JavaScript if the user does not want the lazyload behaviour. In the case when users do want the lazyload behaviour, in normal view with articles hidden, we furthermore use the data-original approach to be sure to support current browsers. +Corrected some bugs with enclosures, and some images not appearing before the first scroll. +Now faster regex processing img and iframe at once (was not practical with lazyload.js)
2014-08-02Dynamic favicon quick fix ChromeGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/539 Could be done better
2014-08-02Dynamic favicon large numbers 2Gravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/539
2014-08-02Dynamic favicon large numbersGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/539
2014-08-02Dynamic favicon showing the number of unread articlesGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/539 Works in Firefox 32 and Opera 12. Does not work in IE 11 but without error. We should test if icons still work in many contexts such as placing a shortcut on the desktop of various platforms.
2014-07-31Merge branch 'dev' of github.com:marienfressinaud/freshrss into devGravatar Marien Fressinaud
2014-07-31Fix bug collapse and mark_readGravatar Marien Fressinaud
Articles was not marked as read when open with shortcuts.collapse_entry Fix https://github.com/marienfressinaud/FreshRSS/issues/556
2014-07-26Hide read feeds and read categories when in unread modeGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/430 There are some repeated HTML attributes (`data-unread` and `active`) which could maybe be simplified. If some people do not like this behaviour, we could consider having an option.
2014-07-17Merge pull request #535 from aledeg/confirmGravatar Alexandre Alapetite
Add a confirmation when using shortcuts
2014-07-14Bug main view prefix titleGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/536
2014-07-13Bug compatibility prefix titleGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/536 The previous syntax worked only in Firefox https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/default_parameters
2014-07-13Number of unread articles as prefix in page titleGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/536
2014-07-12Add a confirmation when using shortcutsGravatar Alexis Degrugillier
Before, it was possible to mark everything as read with no confirmation using shortcut even if the configuration introduced in a previous commit asked for a confirmation. Now, depending of the configuration, a confirm dialog box is displayed when requested in the configuration.
2014-07-09Block user to click many times on the refresh buttonGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/513
2014-07-05Change behavior when selecting an articleGravatar Alexis Degrugillier
See #524 Before, when the configuration was set so the article is marked as read when selected, if you mark it as unread while it is open and then close it, it is marked again as read. This behavior was not straightforward. Now, the article is not marked again as read.
2014-07-05Autoload more articles if needed on big screensGravatar Alexandre Alapetite
2014-06-14Improve system of queriesGravatar Marien Fressinaud
- Coding style - More checks server side - Default query name is "Query n°X" - List of queries is moved into nav_menu, in a dropdown - Better system to remove fields in JS (to a.remove elements, give an attibute data-remove="id_to_remove") - Fix a bug in lib/Mine/Request.php (htmlspecialchars_utf8 can be applied on arrays now) - Few theme improvements - Add an element .no-mobile to apply to elements which should not appear on mobiles See https://github.com/marienfressinaud/FreshRSS/pull/498
2014-06-13Merge branch 'user-queries' of https://github.com/aledeg/FreshRSS into ↵Gravatar Marien Fressinaud
aledeg-user-queries Conflicts: app/layout/nav_menu.phtml
2014-06-05Improve toggle-passwordGravatar Marien Fressinaud
Add class "active" to button which reveals the password and remove it when revealing is terminated
2014-06-05Merge branch 'dev' into 320-templateGravatar Marien Fressinaud
2014-06-05Improve page of sharing configurationGravatar Marien Fressinaud
- Use sticks - Change order of buttons
2014-06-05Fix bug openNotification function (Origine2)Gravatar Marien Fressinaud
Add class "notification"
2014-05-04Add user queriesGravatar Alexis Degrugillier
It's an intermediary step to remove the favorite button. I add a button to store the current query as a favorite query. It redirects automatically to the configuration page where it is possible to name and remove user queries. To make the queries more straigtforward, I removed the default behavior when searching for a string. This way, when we search for a string, the filter is not defaulted to all articles.
2014-05-03jQuery 2.1.1Gravatar Alexandre Alapetite
http://blog.jquery.com/2014/05/01/jquery-1-11-1-and-2-1-1-released/
2014-04-27Add a shortcut to access the search fieldGravatar Alexis Degrugillier
2014-04-17Fix: Cannot open link from article headerGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/490
2014-04-11Revert "Revert "Fix click action on article""Gravatar Alexandre Alapetite
This reverts commit c94e893dbb7f5e4fcc58311c563f1b33f3681823.
2014-04-11Revert "Fix click action on article"Gravatar Alexandre Alapetite
This reverts commit 7e0566b0a183208e020ff31d5c92ef794de19a1e.
2014-04-10Fix click action on articleGravatar Alexis Degrugillier
Before, when the user clicks on an article header one, it expands. When it clicks a second time, it collapses. When it clicks a third time it stays collapsed instead of expand. Now it toggles the article between expanded and collapsed state.
2014-04-09Fix unexpected behavior during navigationGravatar Alexis Degrugillier
When the navigation is done with the mouse and shortcuts, the focus on the current article is lost when the article is collapsed with the mouse. So when navigating with the shortcut does not open the intended article. See #473 and #478
2014-04-08Change click behaviour on articles #3Gravatar Alexandre Alapetite
Code simplification https://github.com/marienfressinaud/FreshRSS/issues/473 https://github.com/marienfressinaud/FreshRSS/commit/60f73f53c4da215a6a60d21e809960c9cf6078fe
2014-04-08Change click behaviour on articles #2Gravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/473 https://github.com/marienfressinaud/FreshRSS/pull/474/files
2014-04-07Change click behavior on articlesGravatar Alexis Degrugillier
Before, when the user click on an article it closes even if he want to select text. This behavior was not acceptable, so I changed it to close the article when cliking on the article footer or in the article margins. See #473
2014-04-06UI: Align article one entry lowerGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/470
2014-03-30Add a bookmark to easily subscribe to websitesGravatar Marien Fressinaud
- FeedController->addAction (GET) shows a confirmation page - If already subscribe, redirect to Configure->feedAction - Add a bookmark in aside_feed See #425 #426 and #464
2014-03-15Small corrections previous pull requestsGravatar Alexandre Alapetite
https://github.com/marienfressinaud/FreshRSS/issues/457 https://github.com/marienfressinaud/FreshRSS/pull/459 https://github.com/marienfressinaud/FreshRSS/issues/422 https://github.com/marienfressinaud/FreshRSS/pull/461
2014-03-15Merge pull request #461 from aledeg/passwordGravatar Alexandre Alapetite
Add a button to reveal/hide password
2014-03-15Add a button to reveal/hide passwordGravatar Alexis Degrugillier
I add a button on the configure user interface to reveal the password for 2 seconds and hide it after that period. See #442 I am not sure if the fallback unicode text for the icon is correct. I can not make it work.