From 15c3c9ce4852f53094da7e1a1a241ef6792ec3e1 Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Fri, 15 Jan 2021 11:21:53 +0100 Subject: [PATCH] update copyright year --- CHANGELOG.md | 5 +++++ appinfo/info.xml | 2 +- appinfo/routes.php | 2 +- css/dashboard.css | 2 +- css/icons.scss | 2 +- lib/AppInfo/Application.php | 2 +- lib/Controller/Errors.php | 2 +- lib/Controller/FavoriteController.php | 2 +- lib/Controller/PageController.php | 2 +- lib/Controller/RecentController.php | 2 +- lib/Controller/SettingsController.php | 2 +- lib/Dashboard/RadioWidget.php | 2 +- lib/Db/FavoriteMapper.php | 2 +- lib/Db/RecentMapper.php | 2 +- lib/Db/Station.php | 2 +- lib/Migration/Version000000Date20181013124731.php | 2 +- lib/Search/SearchProvider.php | 2 +- lib/Service/FavoriteService.php | 2 +- lib/Service/RecentService.php | 2 +- lib/Service/StationNotFound.php | 2 +- src/App.vue | 2 +- src/components/Dashboard.vue | 2 +- src/components/Main.vue | 2 +- src/components/Navigation.vue | 2 +- src/components/Player.vue | 2 +- src/components/Sidebar.vue | 2 +- src/components/Table.vue | 2 +- src/dashboard.js | 2 +- src/main.js | 2 +- src/router.js | 2 +- src/store.js | 2 +- templates/main.php | 2 +- translationfiles/de/radio.po | 6 +++--- 33 files changed, 39 insertions(+), 34 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bd1a36..72cb469 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.0.2 - 2021-01 +### Changed +- Update license year to 2021 + [234](https://git.project-insanity.org/onny/nextcloud-app-radio/-/issues/234) @onny + ## 1.0.1 - 2020-12 ### Added - Support prepare a release with Krankerl diff --git a/appinfo/info.xml b/appinfo/info.xml index 266c72d..d42cc9e 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -17,7 +17,7 @@ app uses radio-browser.info database as a backend. - 👂 Smoth audio playback and transitions - 1.0.1 + 1.0.2 agpl Jonas Heinrich Radio diff --git a/appinfo/routes.php b/appinfo/routes.php index 6906e21..cd19cb8 100644 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/css/dashboard.css b/css/dashboard.css index 3c571c3..43011b4 100644 --- a/css/dashboard.css +++ b/css/dashboard.css @@ -2,7 +2,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/css/icons.scss b/css/icons.scss index b9f144f..2231875 100644 --- a/css/icons.scss +++ b/css/icons.scss @@ -2,7 +2,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php index 18c9327..21cff75 100644 --- a/lib/AppInfo/Application.php +++ b/lib/AppInfo/Application.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Controller/Errors.php b/lib/Controller/Errors.php index c72e372..b888594 100644 --- a/lib/Controller/Errors.php +++ b/lib/Controller/Errors.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Controller/FavoriteController.php b/lib/Controller/FavoriteController.php index 90e1c23..fb4f8dd 100644 --- a/lib/Controller/FavoriteController.php +++ b/lib/Controller/FavoriteController.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php index b3a6672..9af8813 100644 --- a/lib/Controller/PageController.php +++ b/lib/Controller/PageController.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Controller/RecentController.php b/lib/Controller/RecentController.php index 39ac252..796c60a 100644 --- a/lib/Controller/RecentController.php +++ b/lib/Controller/RecentController.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Controller/SettingsController.php b/lib/Controller/SettingsController.php index 14d5b26..c7abbc2 100644 --- a/lib/Controller/SettingsController.php +++ b/lib/Controller/SettingsController.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Dashboard/RadioWidget.php b/lib/Dashboard/RadioWidget.php index 7941272..8fd0bcf 100644 --- a/lib/Dashboard/RadioWidget.php +++ b/lib/Dashboard/RadioWidget.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Db/FavoriteMapper.php b/lib/Db/FavoriteMapper.php index 74fce21..3f0fb50 100644 --- a/lib/Db/FavoriteMapper.php +++ b/lib/Db/FavoriteMapper.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Db/RecentMapper.php b/lib/Db/RecentMapper.php index 7594606..0ae5b55 100644 --- a/lib/Db/RecentMapper.php +++ b/lib/Db/RecentMapper.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Db/Station.php b/lib/Db/Station.php index 62e432a..24be828 100644 --- a/lib/Db/Station.php +++ b/lib/Db/Station.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Migration/Version000000Date20181013124731.php b/lib/Migration/Version000000Date20181013124731.php index 00338d3..372b86c 100644 --- a/lib/Migration/Version000000Date20181013124731.php +++ b/lib/Migration/Version000000Date20181013124731.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Search/SearchProvider.php b/lib/Search/SearchProvider.php index 19fdbcd..421ebd9 100644 --- a/lib/Search/SearchProvider.php +++ b/lib/Search/SearchProvider.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Service/FavoriteService.php b/lib/Service/FavoriteService.php index 88454ec..1a66a02 100644 --- a/lib/Service/FavoriteService.php +++ b/lib/Service/FavoriteService.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Service/RecentService.php b/lib/Service/RecentService.php index 29b384a..d0642a6 100644 --- a/lib/Service/RecentService.php +++ b/lib/Service/RecentService.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/lib/Service/StationNotFound.php b/lib/Service/StationNotFound.php index 5d86793..3787612 100644 --- a/lib/Service/StationNotFound.php +++ b/lib/Service/StationNotFound.php @@ -4,7 +4,7 @@ * Radio App * * @author Jonas Heinrich - * @copyright 2020 Jonas Heinrich + * @copyright 2021 Jonas Heinrich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE diff --git a/src/App.vue b/src/App.vue index 553a857..d2d04ad 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,5 +1,5 @@