aboutsummaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/appinfo
Commit message (Collapse)AuthorAgeFilesLines
* Bump app versions as wellJoas Schilling2017-05-221-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Adjust version requirementJoas Schilling2017-05-221-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* [master] Fix brandingLukas Reschke2017-03-211-1/+1
| | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Hide update notification if notification center is enabledMorris Jobke2016-12-211-1/+2
| | | | | | * then the notification center already contains this info Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Update app versions and requirementsJoas Schilling2016-12-131-2/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Use the settings icon for the update notificationJoas Schilling2016-12-011-4/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Use 11.0 instead 9.2Lukas Reschke2016-11-151-1/+1
| | | | | | As discussed we're changing the version from 9.2 to 11.0 to make some more sense. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* superfluousArthur Schiwon2016-08-111-1/+0
|
* more admin page splitup improvementsArthur Schiwon2016-08-101-1/+5
| | | | | | | | | | * bump version to ensure tables are created * make updatenotification app use settings api * change IAdmin::render() to getForm() and change return type from Template to TemplateResponse * adjust User_LDAP accordingly, as well as built-in forms * add IDateTimeFormatter to AppFramework/DependencyInjection/DIContainer.php. This is important so that \OC::$server->query() is able to resolve the constructor parameters. We should ensure that all OCP/* stuff that is available from \OC::$server is available here. Kudos to @LukasReschke * make sure apps that have settings info in their info.xml are loaded before triggering adding the settings setup method
* Increment the versions and adjust the capitilizationJoas Schilling2016-08-081-1/+1
|
* Also increase the min versionJoas Schilling2016-07-221-1/+1
|
* bumb compatible app versions for core appsRobin Appelman2016-07-221-1/+1
|
* Merge pull request #500 from nextcloud/bump_versionJoas Schilling2016-07-221-1/+1
|\ | | | | Bump version
| * Increase app versionsJoas Schilling2016-07-211-1/+1
| |
* | Fix apps/Joas Schilling2016-07-212-4/+6
|/
* Update license headersLukas Reschke2016-05-262-2/+5
|
* Add tests for the background jobJoas Schilling2016-05-241-1/+2
|
* Dismiss the notifications when the update is already installedJoas Schilling2016-05-241-1/+2
|
* Add a notifier that parses the notificationsJoas Schilling2016-05-241-0/+12
|
* Add a background job that generates notifications when an update is availableJoas Schilling2016-05-241-1/+5
|
* Move comments, systemtags and updatenotifications to PSR-4Joas Schilling2016-05-033-56/+2
|
* Remove deprecated HTTPHelperThomas Müller2016-04-182-2/+2
|
* Move version check code out of class UpdaterThomas Müller2016-04-182-6/+4
|
* Add release channel selection backLukas Reschke2016-03-043-4/+17
| | | | 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
|
* Only register admin page when update is available Lukas Reschke2016-02-121-2/+1
| | | Fixes https://github.com/owncloud/core/issues/22353
* Add SSO for updater applicationLukas Reschke2016-02-094-1/+76
| | | | Allows logging-in into the updater application by visiting the admin panel and pressing "Open updater".
* Move update notification code into appLukas Reschke2016-02-092-0/+52
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...