summaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/appinfo/info.xml
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* 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
|
* Increase app versionsJoas Schilling2016-07-211-1/+1
|
* 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-031-0/+1
|
* Increase all versions on master which is now 9.1Joas Schilling2016-03-021-2/+2
|
* Add SSO for updater applicationLukas Reschke2016-02-091-1/+1
| | | | Allows logging-in into the updater application by visiting the admin panel and pressing "Open updater".
* Move update notification code into appLukas Reschke2016-02-091-0/+13
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...