From 6d27bc36c550aa80bcf11b65f7bee6b79ec2e28d Mon Sep 17 00:00:00 2001 From: Syer10 Date: Tue, 28 Sep 2021 14:09:06 -0400 Subject: [PATCH] Fix copywrite headers --- .../kotlin/ca/gosyer/data/models/BackupValidationResult.kt | 6 ++++++ .../kotlin/ca/gosyer/data/server/ServerHostPreferences.kt | 6 ++++++ .../kotlin/ca/gosyer/data/server/ServerUrlPreference.kt | 6 ------ .../ca/gosyer/data/server/host/ServerHostPreference.kt | 6 ++++++ .../data/server/interactions/UpdatesInteractionHandler.kt | 6 ++++++ src/main/kotlin/ca/gosyer/data/server/requests/Updates.kt | 6 ++++++ src/main/kotlin/ca/gosyer/data/ui/model/StartScreen.kt | 4 +--- .../kotlin/ca/gosyer/ui/base/components/ComposeWindow.kt | 6 ++++++ .../kotlin/ca/gosyer/ui/base/components/MenuController.kt | 6 ++++++ src/main/kotlin/ca/gosyer/ui/base/components/Window.kt | 6 ++++++ .../kotlin/ca/gosyer/ui/main/components/DebugOverlay.kt | 6 ++++++ .../ca/gosyer/ui/main/components/DebugOverlayViewModel.kt | 6 ++++++ .../ca/gosyer/ui/main/components/DownloadsExtraInfo.kt | 6 ++++++ src/main/kotlin/ca/gosyer/ui/main/components/SideMenu.kt | 6 ++++++ .../kotlin/ca/gosyer/ui/main/components/SideMenuItem.kt | 6 ++++++ .../kotlin/ca/gosyer/ui/reader/navigation/EdgeNavigation.kt | 6 ++++++ .../ca/gosyer/ui/reader/navigation/KindlishNavigation.kt | 6 ++++++ .../kotlin/ca/gosyer/ui/reader/navigation/LNavigation.kt | 6 ++++++ .../gosyer/ui/reader/navigation/RightAndLeftNavigation.kt | 6 ++++++ .../ca/gosyer/ui/reader/navigation/ViewerNavigation.kt | 6 ++++++ 20 files changed, 109 insertions(+), 9 deletions(-) diff --git a/src/main/kotlin/ca/gosyer/data/models/BackupValidationResult.kt b/src/main/kotlin/ca/gosyer/data/models/BackupValidationResult.kt index f0503a10..632bbbc9 100644 --- a/src/main/kotlin/ca/gosyer/data/models/BackupValidationResult.kt +++ b/src/main/kotlin/ca/gosyer/data/models/BackupValidationResult.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.data.models import kotlinx.serialization.Serializable diff --git a/src/main/kotlin/ca/gosyer/data/server/ServerHostPreferences.kt b/src/main/kotlin/ca/gosyer/data/server/ServerHostPreferences.kt index 6586856e..cd81463d 100644 --- a/src/main/kotlin/ca/gosyer/data/server/ServerHostPreferences.kt +++ b/src/main/kotlin/ca/gosyer/data/server/ServerHostPreferences.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.data.server import ca.gosyer.common.prefs.Preference diff --git a/src/main/kotlin/ca/gosyer/data/server/ServerUrlPreference.kt b/src/main/kotlin/ca/gosyer/data/server/ServerUrlPreference.kt index 3c8e15a4..0a0fad89 100644 --- a/src/main/kotlin/ca/gosyer/data/server/ServerUrlPreference.kt +++ b/src/main/kotlin/ca/gosyer/data/server/ServerUrlPreference.kt @@ -4,12 +4,6 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -/* - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. - */ - package ca.gosyer.data.server import ca.gosyer.common.prefs.Preference diff --git a/src/main/kotlin/ca/gosyer/data/server/host/ServerHostPreference.kt b/src/main/kotlin/ca/gosyer/data/server/host/ServerHostPreference.kt index a4026af9..16ae00ca 100644 --- a/src/main/kotlin/ca/gosyer/data/server/host/ServerHostPreference.kt +++ b/src/main/kotlin/ca/gosyer/data/server/host/ServerHostPreference.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.data.server.host import ca.gosyer.common.prefs.Preference diff --git a/src/main/kotlin/ca/gosyer/data/server/interactions/UpdatesInteractionHandler.kt b/src/main/kotlin/ca/gosyer/data/server/interactions/UpdatesInteractionHandler.kt index 9e6b3e64..30dc9e75 100644 --- a/src/main/kotlin/ca/gosyer/data/server/interactions/UpdatesInteractionHandler.kt +++ b/src/main/kotlin/ca/gosyer/data/server/interactions/UpdatesInteractionHandler.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.data.server.interactions import ca.gosyer.data.models.MangaAndChapter diff --git a/src/main/kotlin/ca/gosyer/data/server/requests/Updates.kt b/src/main/kotlin/ca/gosyer/data/server/requests/Updates.kt index 4cf21980..f0ae0d02 100644 --- a/src/main/kotlin/ca/gosyer/data/server/requests/Updates.kt +++ b/src/main/kotlin/ca/gosyer/data/server/requests/Updates.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.data.server.requests @Get diff --git a/src/main/kotlin/ca/gosyer/data/ui/model/StartScreen.kt b/src/main/kotlin/ca/gosyer/data/ui/model/StartScreen.kt index e1b4371f..19f95f01 100644 --- a/src/main/kotlin/ca/gosyer/data/ui/model/StartScreen.kt +++ b/src/main/kotlin/ca/gosyer/data/ui/model/StartScreen.kt @@ -1,9 +1,7 @@ /* - * Copyright (C) 2018 The Tachiyomi Open Source Project - * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ package ca.gosyer.data.ui.model diff --git a/src/main/kotlin/ca/gosyer/ui/base/components/ComposeWindow.kt b/src/main/kotlin/ca/gosyer/ui/base/components/ComposeWindow.kt index 24811f09..35f6e2f9 100644 --- a/src/main/kotlin/ca/gosyer/ui/base/components/ComposeWindow.kt +++ b/src/main/kotlin/ca/gosyer/ui/base/components/ComposeWindow.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.base.components import androidx.compose.runtime.compositionLocalOf diff --git a/src/main/kotlin/ca/gosyer/ui/base/components/MenuController.kt b/src/main/kotlin/ca/gosyer/ui/base/components/MenuController.kt index 58c7511b..697aa920 100644 --- a/src/main/kotlin/ca/gosyer/ui/base/components/MenuController.kt +++ b/src/main/kotlin/ca/gosyer/ui/base/components/MenuController.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.base.components import androidx.compose.runtime.Composable diff --git a/src/main/kotlin/ca/gosyer/ui/base/components/Window.kt b/src/main/kotlin/ca/gosyer/ui/base/components/Window.kt index 0b3b76b5..e19700de 100644 --- a/src/main/kotlin/ca/gosyer/ui/base/components/Window.kt +++ b/src/main/kotlin/ca/gosyer/ui/base/components/Window.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.base.components import androidx.compose.runtime.Composable diff --git a/src/main/kotlin/ca/gosyer/ui/main/components/DebugOverlay.kt b/src/main/kotlin/ca/gosyer/ui/main/components/DebugOverlay.kt index 622a2edd..634ada40 100644 --- a/src/main/kotlin/ca/gosyer/ui/main/components/DebugOverlay.kt +++ b/src/main/kotlin/ca/gosyer/ui/main/components/DebugOverlay.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.main import androidx.compose.foundation.layout.Column diff --git a/src/main/kotlin/ca/gosyer/ui/main/components/DebugOverlayViewModel.kt b/src/main/kotlin/ca/gosyer/ui/main/components/DebugOverlayViewModel.kt index 2ec8d441..ccebb170 100644 --- a/src/main/kotlin/ca/gosyer/ui/main/components/DebugOverlayViewModel.kt +++ b/src/main/kotlin/ca/gosyer/ui/main/components/DebugOverlayViewModel.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.main.components import ca.gosyer.ui.base.vm.ViewModel diff --git a/src/main/kotlin/ca/gosyer/ui/main/components/DownloadsExtraInfo.kt b/src/main/kotlin/ca/gosyer/ui/main/components/DownloadsExtraInfo.kt index a8dd91b0..cacc23d3 100644 --- a/src/main/kotlin/ca/gosyer/ui/main/components/DownloadsExtraInfo.kt +++ b/src/main/kotlin/ca/gosyer/ui/main/components/DownloadsExtraInfo.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.main.components import androidx.compose.foundation.shape.RoundedCornerShape diff --git a/src/main/kotlin/ca/gosyer/ui/main/components/SideMenu.kt b/src/main/kotlin/ca/gosyer/ui/main/components/SideMenu.kt index 30e2238e..9ea79e94 100644 --- a/src/main/kotlin/ca/gosyer/ui/main/components/SideMenu.kt +++ b/src/main/kotlin/ca/gosyer/ui/main/components/SideMenu.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.main.components import androidx.compose.foundation.layout.Arrangement diff --git a/src/main/kotlin/ca/gosyer/ui/main/components/SideMenuItem.kt b/src/main/kotlin/ca/gosyer/ui/main/components/SideMenuItem.kt index acf41d65..f8e78c66 100644 --- a/src/main/kotlin/ca/gosyer/ui/main/components/SideMenuItem.kt +++ b/src/main/kotlin/ca/gosyer/ui/main/components/SideMenuItem.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.main.components import androidx.compose.foundation.Image diff --git a/src/main/kotlin/ca/gosyer/ui/reader/navigation/EdgeNavigation.kt b/src/main/kotlin/ca/gosyer/ui/reader/navigation/EdgeNavigation.kt index 0bdff4de..bae8b73a 100644 --- a/src/main/kotlin/ca/gosyer/ui/reader/navigation/EdgeNavigation.kt +++ b/src/main/kotlin/ca/gosyer/ui/reader/navigation/EdgeNavigation.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.reader.navigation import ca.gosyer.ui.reader.model.Navigation diff --git a/src/main/kotlin/ca/gosyer/ui/reader/navigation/KindlishNavigation.kt b/src/main/kotlin/ca/gosyer/ui/reader/navigation/KindlishNavigation.kt index 29b6c731..2a842f07 100644 --- a/src/main/kotlin/ca/gosyer/ui/reader/navigation/KindlishNavigation.kt +++ b/src/main/kotlin/ca/gosyer/ui/reader/navigation/KindlishNavigation.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.reader.navigation import ca.gosyer.ui.reader.model.Navigation diff --git a/src/main/kotlin/ca/gosyer/ui/reader/navigation/LNavigation.kt b/src/main/kotlin/ca/gosyer/ui/reader/navigation/LNavigation.kt index e53abc23..cd7c5048 100644 --- a/src/main/kotlin/ca/gosyer/ui/reader/navigation/LNavigation.kt +++ b/src/main/kotlin/ca/gosyer/ui/reader/navigation/LNavigation.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.reader.navigation import ca.gosyer.ui.reader.model.Navigation diff --git a/src/main/kotlin/ca/gosyer/ui/reader/navigation/RightAndLeftNavigation.kt b/src/main/kotlin/ca/gosyer/ui/reader/navigation/RightAndLeftNavigation.kt index dcba501e..823449a2 100644 --- a/src/main/kotlin/ca/gosyer/ui/reader/navigation/RightAndLeftNavigation.kt +++ b/src/main/kotlin/ca/gosyer/ui/reader/navigation/RightAndLeftNavigation.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.reader.navigation import ca.gosyer.ui.reader.model.Navigation diff --git a/src/main/kotlin/ca/gosyer/ui/reader/navigation/ViewerNavigation.kt b/src/main/kotlin/ca/gosyer/ui/reader/navigation/ViewerNavigation.kt index 22c8005f..9e418e60 100644 --- a/src/main/kotlin/ca/gosyer/ui/reader/navigation/ViewerNavigation.kt +++ b/src/main/kotlin/ca/gosyer/ui/reader/navigation/ViewerNavigation.kt @@ -1,3 +1,9 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + package ca.gosyer.ui.reader.navigation import androidx.compose.ui.unit.IntOffset