summaryrefslogtreecommitdiffstats
path: root/apps/updatenotification
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexJenkins for ownCloud2016-05-202-2/+10
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-05-154-2/+4
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-05-1058-62/+62
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-05-062-0/+26
|
* Move comments, systemtags and updatenotifications to PSR-4Joas Schilling2016-05-037-1/+2
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-04-302-8/+8
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-04-244-4/+14
|
* Remove deprecated HTTPHelperThomas Müller2016-04-182-2/+2
|
* Move version check code out of class UpdaterThomas Müller2016-04-184-11/+9
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-312-0/+8
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-298-6/+14
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-282-0/+6
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-242-0/+2
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-234-0/+4
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-222-2/+10
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-212-0/+6
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-172-0/+6
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-154-0/+14
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-142-0/+2
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-122-0/+2
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-114-4/+22
|
* Merge pull request #23050 from owncloud/href-target-blankThomas Müller2016-03-101-1/+1
|\ | | | | make sure links open in new tabs
| * make sure links open in new tabsJan-Christoph Borchardt2016-03-091-1/+1
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2016-03-102-0/+2
|/
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-092-2/+12
|
* Merge pull request #22885 from owncloud/master-show-version-to-update-toThomas Müller2016-03-082-3/+6
|\ | | | | Show version to update to properly
| * Show version to update to properlyLukas Reschke2016-03-052-3/+6
| | | | | | | | Properly shows the version that will be updated to.
* | [tx-robot] updated from transifexJenkins for ownCloud2016-03-0810-4/+32
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2016-03-0710-2/+30
| |
* | Merge pull request #22888 from owncloud/use-custom-headerThomas Müller2016-03-061-1/+1
|\ \ | | | | | | Use custom header
| * | Use custom headerLukas Reschke2016-03-051-1/+1
| |/ | | | | | | PHP in CGI mode eats the Authorization header => :bomb:
* / [tx-robot] updated from transifexJenkins for ownCloud2016-03-0614-0/+42
|/
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-0584-124/+274
|
* Add release channel selection backLukas Reschke2016-03-047-14/+219
| | | | Allows to select the release channels again and also shows the last check date
* Increase all versions on master which is now 9.1Joas Schilling2016-03-021-2/+2
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-03-022-2/+6
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-02-282-2/+2
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-02-2536-44/+122
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-02-1716-16/+46
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-02-1696-0/+542
|
* Adding transifex to new core appsThomas Müller2016-02-161-0/+0
|
* Only register admin page when update is available Lukas Reschke2016-02-121-2/+1
| | | Fixes https://github.com/owncloud/core/issues/22353
* Harden updater authenticationLukas Reschke2016-02-103-5/+6
| | | | | - Reset tokens after 2 hours as discussed at https://github.com/owncloud/updater/issues/220#issuecomment-182033453 - Used BCrypt for storing the password in the config.php. This makes it substantially harder in case of a leakage of the token to bruteforce it. In the future we can evaluate also an HMAC including the IP. That's a bit tricker though at the moment considering that we support reverse proxies. Didn't feel brave enough to touch that dragon now as well ;)
* Add SSO for updater applicationLukas Reschke2016-02-0911-1/+490
| | | | Allows logging-in into the updater application by visiting the admin panel and pressing "Open updater".
* Move update notification code into appLukas Reschke2016-02-095-0/+235
Moves the update notification code in a single app. This is required since we want to use SSO for the new updater and for this have some code running in ownCloud as well (and we don't want that in core neccessarily). This app can provide that in the future, right now it's only the update notification itself. Will continue working on the SSO right away but wanted to keep the PR small. Furthermore also makes some more code unit-testable...