aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-09-15Add a feature to add only unique sharesGravatar Alexis Degrugillier
Before, it was possible to have different shares of the same type with the same information. Now, even if you try to input identical shares, only the first one is kept. Of course, the verification is simple, so for instance if you input two shares to the same shaarli instance with different names, they are kept. See #614
2014-09-15Use setTimeout instead of setInterval (JavaScript)Gravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/pull/585
2014-09-15Add border to stick btn and inputGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/563
2014-09-15Change loading of base-theme cssGravatar Marien Fressinaud
If metadata.json indicates it should use "_template.css" or "_base.css", base-theme/template|base.css is used. It facilitates theme maintenance.
2014-09-15Merge branch 'dev' of github.com:marienfressinaud/FreshRSS into devGravatar Marien Fressinaud
2014-09-15Import/Export: use transactionsGravatar Marien Fressinaud
List of articles must be iterated twice since feeds must be in DB before using transaction for articles. It may be improved? See https://github.com/marienfressinaud/FreshRSS/issues/591
2014-09-12FIXME (import/export) Use entryDAO addEntryPrepareGravatar Marien Fressinaud
2014-09-12Import all .json filesGravatar Marien Fressinaud
Before, only feed_*.json and *starred*.json was imported. Now, all *.json files are imported.
2014-09-12Log error if update.freshrss.org is unreachableGravatar Marien Fressinaud
2014-09-12Check if update has been done during last minuteGravatar Marien Fressinaud
Cancel check action if update has been done during last hour.
2014-09-11Merge pull request #612 from plopoyop/devGravatar Marien Fressinaud
add css class or id to elements without
2014-09-10add css class or id to elements withoutGravatar plopoyop
2014-09-08Add last_update.txt in .gitignoreGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/411
2014-09-08CHANGELOGGravatar Marien Fressinaud
Add new update system. See https://github.com/marienfressinaud/FreshRSS/issues/411
2014-09-08Add data/last_update.txtGravatar Marien Fressinaud
Remember last update timestamp.
2014-09-08Check FRESHRSS_PATH is writable.Gravatar Marien Fressinaud
FRESHRSS_PATH needs to be writable before performing update.
2014-09-08Merge branch 'dev' into 411-update-systemGravatar Marien Fressinaud
Conflicts: constants.php
2014-09-06Bug warning in case of invalid CDATAGravatar Alexandre Alapetite
2014-09-05Merge pull request #606 from aledeg/navigationGravatar Alexandre Alapetite
Fix navigation on hidden categories and feeds
2014-09-04Fix navigation on hidden categories and feedsGravatar Alexis Degrugillier
Before, when navigating with the keyboard, hidden categories and feeds where shown. Now, they stay hidden. See #604
2014-09-04Bug HTML statsGravatar Alexandre Alapetite
Categories containing a space were not displayed properly https://github.com/marienfressinaud/FreshRSS/issues/547
2014-09-04Merge pull request #592 from aledeg/more-shortcutsGravatar Alexandre Alapetite
Add shortcuts
2014-09-04Merge pull request #600 from aledeg/averageGravatar Alexandre Alapetite
Add average on repartition charts.
2014-09-04Merge pull request #605 from aledeg/autoreadGravatar Alexandre Alapetite
Fix collapse shortcut behavior
2014-09-03Fix collapse shortcut behaviorGravatar Alexis Degrugillier
Before, the collapse shortcut was marking all articles as read when used. No matter what configuration you use. Now, the collapse shortcut marks articles only if the appropriate configuration is used (when article is viewed).
2014-09-02Add a first version of i18n for GermanGravatar Marien Fressinaud
All the strings are not completed yet, but it's a good start!
2014-09-01Add average on repartition charts.Gravatar Alexis Degrugillier
It needs some verification on the value used to calculate the averages.
2014-08-30Bug referer for systems with non-standard HTTP portGravatar Alexandre Alapetite
Now tests also for the scheme and port, which must be identical to the ones in the referer. https://github.com/marienfressinaud/FreshRSS/issues/565#issuecomment-53916915 https://github.com/marienfressinaud/FreshRSS/issues/554
2014-08-29Merge pull request #598 from aledeg/screwdriverGravatar Alexandre Alapetite
Fix Screwdriver theme
2014-08-27Fix Screwdriver themeGravatar Alexis Degrugillier
Before, it wasn't possible to hide categories when they had no articles to read. I applied the same rule than the one described in here (https://github.com/marienfressinaud/FreshRSS/commit/d19824b919289ad63743f27da7861f2422da5baa). Now, the categories are hidden when they have no articles to read. See #594
2014-08-27Add configuration for help configurationGravatar Alexis Degrugillier
2014-08-26Merge pull request #595 from aledeg/filter-catGravatar Alexandre Alapetite
Add a link to filter categories
2014-08-25Add a link to filter categoriesGravatar Alexis Degrugillier
In the category configuration page, I added a filter link on each category. It works the same way than the "filter" link on the feed configuration page. See #514
2014-08-24Change wiki urlGravatar Alexis Degrugillier
2014-08-24Merge pull request #593 from aledeg/fix-cat-cssGravatar Alexandre Alapetite
Fix category CSS
2014-08-24Fix category CSSGravatar Alexis Degrugillier
Before, when the category is closed by default, the active CSS class wasn't applied. Thus breaking the shortcuts for navigation. Now it works the way it is supposed.
2014-08-24Add shortcutsGravatar Alexis Degrugillier
Add a shortcut to open the wiki. Shortcut is F1 and is not modifiable. Add a shortcut to access user filters the same way to access share actions.
2014-08-23Fix Screwdriver themeGravatar Marien Fressinaud
See https://github.com/misterair/Screwdriver/issues/14
2014-08-23Fix bug link at article bottom not mark as readGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/578
2014-08-23Fix design problemsGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/582
2014-08-23Fix bug add favorite entryGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/494
2014-08-23Fix problem with starred files for import/exportGravatar Marien Fressinaud
Improve guessFileType method See https://github.com/marienfressinaud/FreshRSS/issues/494
2014-08-23Merge branch 'dev' of github.com:marienfressinaud/FreshRSS into devGravatar Marien Fressinaud
2014-08-23Merge pull request #590 from aledeg/more-statsGravatar Alexandre Alapetite
Change empty value in drop-down
2014-08-23Change empty value in drop-downGravatar Alexis Degrugillier
2014-08-23Merge pull request #588 from aledeg/cat-closeGravatar Alexandre Alapetite
Add category reading option
2014-08-23Link English versionGravatar Alexandre Alapetite
2014-08-23Link french versionGravatar Alexandre Alapetite
2014-08-23Merge pull request #589 from aledeg/readme-in-englishGravatar Alexandre Alapetite
Add english README file
2014-08-23Add english README fileGravatar Alexis Degrugillier
See #586