summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-01-31Version 1.0.01.0.0Gravatar Marien Fressinaud
2015-01-31Merge branch 'dev'Gravatar Marien Fressinaud
Conflicts: CHANGELOG README.fr.md README.md app/Controllers/feedController.php app/Controllers/indexController.php app/i18n/en.php app/i18n/fr.php app/views/helpers/view/normal_view.phtml app/views/stats/index.phtml app/views/stats/repartition.phtml constants.php p/scripts/main.js
2015-01-29Update changelogGravatar Marien Fressinaud
2015-01-29Improve url_remove_credentialsGravatar Marien Fressinaud
Use @aledeg old function instead See https://github.com/FreshRSS/FreshRSS/pull/715 See https://github.com/FreshRSS/FreshRSS/issues/711
2015-01-29Use url_remove_credentials to log URLGravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/issues/711
2015-01-29Introduce url_remove_credentials() functionGravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/issues/711
2015-01-29Fix get_user_configuration()Gravatar Marien Fressinaud
There is no need to prefix namespace by the time: if conf has already been registered, it will be returned anyway!
2015-01-29Fix including extensions for actualize_scriptGravatar Marien Fressinaud
Extensions could be included multiple times. It resulted in an error.
2015-01-29Remove calls to syslog()Gravatar Marien Fressinaud
Temporary fix: - Change syslog by Minz_Log::notice in most of the files - Logs are stored in USERS_PATH/_/log.txt for actualize_script.php - Simply comment syslog in SimplePie See https://github.com/FreshRSS/FreshRSS/issues/711
2015-01-29Change behaviour of #add_rss input.extendGravatar Marien Fressinaud
UI was frustrating when input had the focus: we needed to click elsewhere to be able to open the next dropdown. See https://github.com/FreshRSS/FreshRSS/issues/777
2015-01-27Fix german gen.js.request_failedGravatar Marien Fressinaud
2015-01-27Remove information about me and update linksGravatar Marien Fressinaud
FreshRSS should not be associated to me but to the community: - Remove links to send me email or references to a "lead developer" - Change old Github links marienfressinaud/FreshRSS to FreshRSS/FreshRSS
2015-01-27Change translation for gen.js.request_failedGravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/issues/775
2015-01-26Serve HTTP cache for default favicon + better headersGravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/commit/da7d34d2ef45e4cfcf1410a279998f680a6338ea#commitcomment-9439610
2015-01-26Default favicon served with HTTP code 200Gravatar Marien Fressinaud
Fix https://github.com/FreshRSS/FreshRSS/issues/760
2015-01-26Password format on profile and manage user pagesGravatar Marien Fressinaud
Related to https://github.com/FreshRSS/FreshRSS/commit/ec75139939780810f43f4e85fbf37de2409fe584 See https://github.com/FreshRSS/FreshRSS/issues/769
2015-01-26Give indication on password formatGravatar Marien Fressinaud
Fix https://github.com/FreshRSS/FreshRSS/issues/769
2015-01-26Update CREDITS fileGravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/pull/766
2015-01-23Merge pull request #767 from ealdraed/fix/share/emailGravatar Alexandre Alapetite
Fix double quotes not escaped in RSS title (share by email)
2015-01-23Fix double quotes not escaped in RSS title (share by email)Gravatar ealdraed
If an RSS feed title contains double quotes, this prematurely terminates the subject line and prohibits the URL to be added to the email body when using Share->Email. Replace urlencode() with rawurlencode() for all transform functions.
2015-01-22Merge branch 'ealdraed-de-translation' into devGravatar Marien Fressinaud
2015-01-22Merge branch 'de-translation' of https://github.com/ealdraed/FreshRSS into ↵Gravatar Marien Fressinaud
ealdraed-de-translation
2015-01-22! encoding problem 2Gravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/commit/964a768bc384425e45ae953bff0f6f757078e7d6#commitcomment-9385695
2015-01-22Revert "! encoding problem"Gravatar Alexandre Alapetite
This reverts commit 964a768bc384425e45ae953bff0f6f757078e7d6.
2015-01-22Add German translationGravatar ealdraed
2015-01-21! encoding problemGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/commit/211569ef85f50891035e3e2645ec0c87badec1e1#commitcomment-9384719
2015-01-21Simplify code for cookie dirGravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/issues/700 See https://github.com/FreshRSS/FreshRSS/commit/eec95ffb6a414f00f0ddd6cb1f81ac7ee55d4f6b
2015-01-21Fix bug related to cookie pathGravatar Marien Fressinaud
Fix https://github.com/FreshRSS/FreshRSS/issues/700
2015-01-21Update lib_opml.phpGravatar Marien Fressinaud
- lib_opml was not in its newest version - FRSS supports OPML file without text attributes Fix https://github.com/FreshRSS/FreshRSS/issues/758
2015-01-21Minz: missing URL key/param encodingGravatar Alexandre Alapetite
Caused searches such as "intitle:&" to fail after paging, and possible XSS vulnerabilities. Discovered during https://github.com/FreshRSS/FreshRSS/issues/754
2015-01-20Quick fix cron actualization due to problematic FreshRSS constructor/initGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/759 Suggestion: the static objects should be user-independent (or at least with the possibility to be re-set), while the FreshRSS object and its attributes should be user-dependent.
2015-01-20Suppress possible warnings after updateGravatar Alexandre Alapetite
Prevent JavaScript errors when the shortcuts have not been defined in the config file. https://github.com/FreshRSS/FreshRSS/issues/733
2015-01-19Addressed warnings when reading from new filesGravatar Alexandre Alapetite
There were warnings when reading extensions (trying to use e.g. README and .gitignore as directories), and when reading update file. https://github.com/FreshRSS/FreshRSS/issues/733
2015-01-19Add CREDIT file with name of all contributorsGravatar Marien Fressinaud
Contributor list comes from https://github.com/FreshRSS/FreshRSS/graphs/contributors Note I didn't take responsability to add information such as personal website or email address. If you want these information appear feel free to update the file!
2015-01-18Fix mark_when setterGravatar Marien Fressinaud
mark_when was not taken in consideration.
2015-01-18Fix feed update with MySQL/MariaDBGravatar Marien Fressinaud
- updateFeed() returns 0 if nothing changes so the test was false. - Redirection in case of error is better now by redirecting on the right feed Fix https://github.com/FreshRSS/FreshRSS/issues/755
2015-01-18Enlarge the .item.date to contain larger dateGravatar Marien Fressinaud
I know it's not the best solution, a dynamic width would be the best but there are some CSS constraints. I don't want to spend my time on this problem ;) Fix https://github.com/FreshRSS/FreshRSS/issues/756
2015-01-18Improve i18n for JavaScriptGravatar Marien Fressinaud
notif_* messages have been moved into feedback array.
2015-01-18Improve behavior when mark as read / favorite failGravatar Marien Fressinaud
If the request fails: - Open a notification to inform user - Remove pending index from the pending_feeds list Fix https://github.com/FreshRSS/FreshRSS/issues/751
2015-01-18Fix Minz_Error and error_ControllerGravatar Marien Fressinaud
- Error code and logs was not propagated from Minz_Error to the controller - header was bad (200 instead of 404 or 403) Related to https://github.com/FreshRSS/FreshRSS/issues/751
2015-01-17Fix i18n string for errors in feed managementGravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/issues/755
2015-01-17Add the first unit testGravatar Alexis Degrugillier
Add phpunit configuration to run tests and add the first running test to validate the configuration
2015-01-17Fix #slider in Dark themeGravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/commit/6b560c61330b254e794057ef36515e4c751114f4 Fix https://github.com/FreshRSS/FreshRSS/issues/750
2015-01-17Fix slider css rule (see issue #750)Gravatar Alexis Degrugillier
2015-01-16Merge pull request #749 from yaurthek/devGravatar Marien Fressinaud
Small adjustments to the readme file
2015-01-16Simplify shortcut setterGravatar Marien Fressinaud
2015-01-16Updated README.mdGravatar Melvyn
2015-01-16Fix a bug when default view is the global one.Gravatar Marien Fressinaud
If default view is "global", the popup tried to get articles on the default view which was… "global"! Articles are present on the "normal" view instead.
2015-01-16Fix bug if a shortcut is not in the initial configGravatar Marien Fressinaud
A new shortcut was never saved because ConfigurationSetter never set a shortcut which did not appear in the initial conf.
2015-01-15Update the CHANGELOGGravatar Marien Fressinaud