From 90069e2518fc4c16b2468f60a18145603a8c8a8b Mon Sep 17 00:00:00 2001 From: Jannik Date: Sun, 2 Jan 2022 17:59:23 +0100 Subject: [PATCH] update copyright/license notice --- README.md | 4 ++-- .../teapod/parser/crunchyroll/Crunchyroll.kt | 2 +- .../teapod/ui/activity/main/MainActivity.kt | 2 +- .../activity/main/fragments/AboutFragment.kt | 2 +- .../main/viewmodel/MediaFragmentViewModel.kt | 1 - .../ui/activity/player/PlayerActivity.kt | 22 +++++++++++++++++++ .../ui/activity/player/PlayerViewModel.kt | 22 +++++++++++++++++++ .../org/mosad/teapod/util/MetaDBController.kt | 2 +- .../teapod/util/tmdb/TMDBApiController.kt | 2 +- .../mosad/teapod/util/tmdb/TMDBDataTypes.kt | 2 +- 10 files changed, 52 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 57c2a97..35cf766 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,11 @@ Teapod is a unofficial App for Anime on Demand (AoD). It allows you to watch all Teapod is licensed under the terms and conditions of GPL 3. This Project is not associated with Anime on Demand in any way. But they allow open source apps for their service. ### Contributing -Currentl you need to have an AoD account to contrtibut to Teapod. Contributing without on is kind of impossible.If you want to contribute to Teapod and need an account on this gitea instance, please write me an email. +Currently you need to have an AoD account to contribute to Teapod. Contributing without on is kind of impossible.If you want to contribute to Teapod and need an account on this gitea instance, please write me an email. ### [FAQ](https://git.mosad.xyz/Seil0/teapod/wiki#hilfe) #### Why is it called Teapod? Teapod is a Acronym for "The ultimate anime app on demand", hence this project is called Teapod and not Teapot. -Teapod © 2020-2021 [@Seil0](https://git.mosad.xyz/Seil0) +Teapod © 2020-2022 [@Seil0](https://git.mosad.xyz/Seil0) diff --git a/app/src/main/java/org/mosad/teapod/parser/crunchyroll/Crunchyroll.kt b/app/src/main/java/org/mosad/teapod/parser/crunchyroll/Crunchyroll.kt index b316816..47ec698 100644 --- a/app/src/main/java/org/mosad/teapod/parser/crunchyroll/Crunchyroll.kt +++ b/app/src/main/java/org/mosad/teapod/parser/crunchyroll/Crunchyroll.kt @@ -213,4 +213,4 @@ object Crunchyroll { } ?: NonePlayback } -} \ No newline at end of file +} diff --git a/app/src/main/java/org/mosad/teapod/ui/activity/main/MainActivity.kt b/app/src/main/java/org/mosad/teapod/ui/activity/main/MainActivity.kt index b014121..c0e7636 100644 --- a/app/src/main/java/org/mosad/teapod/ui/activity/main/MainActivity.kt +++ b/app/src/main/java/org/mosad/teapod/ui/activity/main/MainActivity.kt @@ -1,7 +1,7 @@ /** * Teapod * - * Copyright 2020-2021 + * Copyright 2020-2022 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/app/src/main/java/org/mosad/teapod/ui/activity/main/fragments/AboutFragment.kt b/app/src/main/java/org/mosad/teapod/ui/activity/main/fragments/AboutFragment.kt index 8c8da0a..d28fec1 100644 --- a/app/src/main/java/org/mosad/teapod/ui/activity/main/fragments/AboutFragment.kt +++ b/app/src/main/java/org/mosad/teapod/ui/activity/main/fragments/AboutFragment.kt @@ -152,4 +152,4 @@ class AboutFragment : Fragment() { return sb.toString() } -} \ No newline at end of file +} diff --git a/app/src/main/java/org/mosad/teapod/ui/activity/main/viewmodel/MediaFragmentViewModel.kt b/app/src/main/java/org/mosad/teapod/ui/activity/main/viewmodel/MediaFragmentViewModel.kt index c431956..6acd0a6 100644 --- a/app/src/main/java/org/mosad/teapod/ui/activity/main/viewmodel/MediaFragmentViewModel.kt +++ b/app/src/main/java/org/mosad/teapod/ui/activity/main/viewmodel/MediaFragmentViewModel.kt @@ -98,7 +98,6 @@ class MediaFragmentViewModel(application: Application) : AndroidViewModel(applic * Load the tmdb info for the selected media. * The TMDB search return a media type, use this to get the details (movie/tv show and season) */ - @ExperimentalSerializationApi suspend fun loadTmdbInfo() { val tmdbApiController = TMDBApiController() diff --git a/app/src/main/java/org/mosad/teapod/ui/activity/player/PlayerActivity.kt b/app/src/main/java/org/mosad/teapod/ui/activity/player/PlayerActivity.kt index cf6082d..06dafe3 100644 --- a/app/src/main/java/org/mosad/teapod/ui/activity/player/PlayerActivity.kt +++ b/app/src/main/java/org/mosad/teapod/ui/activity/player/PlayerActivity.kt @@ -1,3 +1,25 @@ +/** + * Teapod + * + * Copyright 2020-2022 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + * + */ + package org.mosad.teapod.ui.activity.player import android.animation.Animator diff --git a/app/src/main/java/org/mosad/teapod/ui/activity/player/PlayerViewModel.kt b/app/src/main/java/org/mosad/teapod/ui/activity/player/PlayerViewModel.kt index 4d27a15..23c19be 100644 --- a/app/src/main/java/org/mosad/teapod/ui/activity/player/PlayerViewModel.kt +++ b/app/src/main/java/org/mosad/teapod/ui/activity/player/PlayerViewModel.kt @@ -1,3 +1,25 @@ +/** + * Teapod + * + * Copyright 2020-2022 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + * + */ + package org.mosad.teapod.ui.activity.player import android.app.Application diff --git a/app/src/main/java/org/mosad/teapod/util/MetaDBController.kt b/app/src/main/java/org/mosad/teapod/util/MetaDBController.kt index 387a129..2a5c11f 100644 --- a/app/src/main/java/org/mosad/teapod/util/MetaDBController.kt +++ b/app/src/main/java/org/mosad/teapod/util/MetaDBController.kt @@ -1,7 +1,7 @@ /** * Teapod * - * Copyright 2020-2021 + * Copyright 2020-2022 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/app/src/main/java/org/mosad/teapod/util/tmdb/TMDBApiController.kt b/app/src/main/java/org/mosad/teapod/util/tmdb/TMDBApiController.kt index b084e85..3a1b347 100644 --- a/app/src/main/java/org/mosad/teapod/util/tmdb/TMDBApiController.kt +++ b/app/src/main/java/org/mosad/teapod/util/tmdb/TMDBApiController.kt @@ -1,7 +1,7 @@ /** * Teapod * - * Copyright 2020-2021 + * Copyright 2020-2022 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/app/src/main/java/org/mosad/teapod/util/tmdb/TMDBDataTypes.kt b/app/src/main/java/org/mosad/teapod/util/tmdb/TMDBDataTypes.kt index 10171e3..1c2a568 100644 --- a/app/src/main/java/org/mosad/teapod/util/tmdb/TMDBDataTypes.kt +++ b/app/src/main/java/org/mosad/teapod/util/tmdb/TMDBDataTypes.kt @@ -1,7 +1,7 @@ /** * Teapod * - * Copyright 2020-2021 + * Copyright 2020-2022 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by