From c32dbd32e401ec9fad80eeaff48dde2bd1a6e844 Mon Sep 17 00:00:00 2001 From: "HyunWoo Lee (Nunu Lee)" <54518925+l2hyunwoo@users.noreply.github.com> Date: Tue, 26 Mar 2024 22:54:04 +0900 Subject: [PATCH] Update year of license header (#82) --- build.gradle.kts | 2 +- .../src/main/kotlin/module.publication.gradle.kts | 2 +- convention-plugins/src/main/kotlin/root.publication.gradle.kts | 2 +- peekaboo-image-picker/build.gradle.kts | 2 +- .../preat/peekaboo/image/picker/ImagePickerLauncher.android.kt | 2 +- .../com/preat/peekaboo/image/picker/ImagePickerLauncher.kt | 2 +- .../com/preat/peekaboo/image/picker/ImagePickerLauncher.ios.kt | 2 +- peekaboo-ui/build.gradle.kts | 2 +- .../com/preat/peekaboo/ui/camera/PeekabooCamera.android.kt | 2 +- .../com/preat/peekaboo/ui/gallery/model/PeekabooMediaImage.kt | 2 +- .../peekaboo/ui/gallery/repository/PeekabooGalleryRepository.kt | 2 +- .../peekaboo/ui/gallery/viewmodel/PeekabooGalleryViewModel.kt | 2 +- .../ui/gallery/viewmodel/PeekabooGalleryViewModelFactory.kt | 2 +- .../kotlin/com/preat/peekaboo/ui/camera/CameraMode.kt | 2 +- .../kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.kt | 2 +- .../kotlin/com/preat/peekaboo/ui/camera/PeekabooCameraState.kt | 2 +- .../preat/peekaboo/ui/gallery/ExperimentalPeekabooGalleryApi.kt | 2 +- .../kotlin/com/preat/peekaboo/ui/gallery/PeekabooGallery.kt | 2 +- .../iosMain/kotlin/com/preat/peekaboo/ui/camera/CameraAccess.kt | 2 +- .../kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.ios.kt | 2 +- .../kotlin/com/preat/peekaboo/ui/gallery/PeekabooGallery.ios.kt | 2 +- .../src/commonMain/kotlin/com/preat/peekaboo/common/App.kt | 2 +- .../com/preat/peekaboo/common/component/CircularButton.kt | 2 +- .../preat/peekaboo/common/component/InstagramCameraButton.kt | 2 +- settings.gradle.kts | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 8c89809..eb0bfeb 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/convention-plugins/src/main/kotlin/module.publication.gradle.kts b/convention-plugins/src/main/kotlin/module.publication.gradle.kts index 5794c3e..cf99493 100644 --- a/convention-plugins/src/main/kotlin/module.publication.gradle.kts +++ b/convention-plugins/src/main/kotlin/module.publication.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/convention-plugins/src/main/kotlin/root.publication.gradle.kts b/convention-plugins/src/main/kotlin/root.publication.gradle.kts index 09b8670..18a4962 100644 --- a/convention-plugins/src/main/kotlin/root.publication.gradle.kts +++ b/convention-plugins/src/main/kotlin/root.publication.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-image-picker/build.gradle.kts b/peekaboo-image-picker/build.gradle.kts index 5841e71..6efd1f8 100644 --- a/peekaboo-image-picker/build.gradle.kts +++ b/peekaboo-image-picker/build.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-image-picker/src/androidMain/kotlin/com/preat/peekaboo/image/picker/ImagePickerLauncher.android.kt b/peekaboo-image-picker/src/androidMain/kotlin/com/preat/peekaboo/image/picker/ImagePickerLauncher.android.kt index 3513c74..609b9d7 100644 --- a/peekaboo-image-picker/src/androidMain/kotlin/com/preat/peekaboo/image/picker/ImagePickerLauncher.android.kt +++ b/peekaboo-image-picker/src/androidMain/kotlin/com/preat/peekaboo/image/picker/ImagePickerLauncher.android.kt @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-image-picker/src/commonMain/kotlin/com/preat/peekaboo/image/picker/ImagePickerLauncher.kt b/peekaboo-image-picker/src/commonMain/kotlin/com/preat/peekaboo/image/picker/ImagePickerLauncher.kt index 5dccb9a..2caf38a 100644 --- a/peekaboo-image-picker/src/commonMain/kotlin/com/preat/peekaboo/image/picker/ImagePickerLauncher.kt +++ b/peekaboo-image-picker/src/commonMain/kotlin/com/preat/peekaboo/image/picker/ImagePickerLauncher.kt @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-image-picker/src/iosMain/kotlin/com/preat/peekaboo/image/picker/ImagePickerLauncher.ios.kt b/peekaboo-image-picker/src/iosMain/kotlin/com/preat/peekaboo/image/picker/ImagePickerLauncher.ios.kt index 42493aa..3211062 100644 --- a/peekaboo-image-picker/src/iosMain/kotlin/com/preat/peekaboo/image/picker/ImagePickerLauncher.ios.kt +++ b/peekaboo-image-picker/src/iosMain/kotlin/com/preat/peekaboo/image/picker/ImagePickerLauncher.ios.kt @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/build.gradle.kts b/peekaboo-ui/build.gradle.kts index 7696dfd..a0ae2a5 100644 --- a/peekaboo-ui/build.gradle.kts +++ b/peekaboo-ui/build.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.android.kt b/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.android.kt index 7e4b8b6..960f1dd 100644 --- a/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.android.kt +++ b/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.android.kt @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/model/PeekabooMediaImage.kt b/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/model/PeekabooMediaImage.kt index 1d2c6dd..6ab2a34 100644 --- a/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/model/PeekabooMediaImage.kt +++ b/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/model/PeekabooMediaImage.kt @@ -1,5 +1,5 @@ /* - * Copyright 2024 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/repository/PeekabooGalleryRepository.kt b/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/repository/PeekabooGalleryRepository.kt index d155ebb..843e7ad 100644 --- a/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/repository/PeekabooGalleryRepository.kt +++ b/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/repository/PeekabooGalleryRepository.kt @@ -1,5 +1,5 @@ /* - * Copyright 2024 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/viewmodel/PeekabooGalleryViewModel.kt b/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/viewmodel/PeekabooGalleryViewModel.kt index aad2832..2a589e6 100644 --- a/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/viewmodel/PeekabooGalleryViewModel.kt +++ b/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/viewmodel/PeekabooGalleryViewModel.kt @@ -1,5 +1,5 @@ /* - * Copyright 2024 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/viewmodel/PeekabooGalleryViewModelFactory.kt b/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/viewmodel/PeekabooGalleryViewModelFactory.kt index 4ca7cf5..98a2b01 100644 --- a/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/viewmodel/PeekabooGalleryViewModelFactory.kt +++ b/peekaboo-ui/src/androidMain/kotlin/com/preat/peekaboo/ui/gallery/viewmodel/PeekabooGalleryViewModelFactory.kt @@ -1,5 +1,5 @@ /* - * Copyright 2024 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/camera/CameraMode.kt b/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/camera/CameraMode.kt index a8a0738..0040180 100644 --- a/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/camera/CameraMode.kt +++ b/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/camera/CameraMode.kt @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.kt b/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.kt index ed4bdd7..92d4c9e 100644 --- a/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.kt +++ b/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.kt @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCameraState.kt b/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCameraState.kt index 7386c67..2b767a9 100644 --- a/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCameraState.kt +++ b/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCameraState.kt @@ -1,5 +1,5 @@ /* - * Copyright 2024 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/gallery/ExperimentalPeekabooGalleryApi.kt b/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/gallery/ExperimentalPeekabooGalleryApi.kt index a93eede..282398e 100644 --- a/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/gallery/ExperimentalPeekabooGalleryApi.kt +++ b/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/gallery/ExperimentalPeekabooGalleryApi.kt @@ -1,5 +1,5 @@ /* - * Copyright 2024 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/gallery/PeekabooGallery.kt b/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/gallery/PeekabooGallery.kt index 33140a9..2981fb8 100644 --- a/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/gallery/PeekabooGallery.kt +++ b/peekaboo-ui/src/commonMain/kotlin/com/preat/peekaboo/ui/gallery/PeekabooGallery.kt @@ -1,5 +1,5 @@ /* - * Copyright 2024 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/iosMain/kotlin/com/preat/peekaboo/ui/camera/CameraAccess.kt b/peekaboo-ui/src/iosMain/kotlin/com/preat/peekaboo/ui/camera/CameraAccess.kt index 6811f88..3498f79 100644 --- a/peekaboo-ui/src/iosMain/kotlin/com/preat/peekaboo/ui/camera/CameraAccess.kt +++ b/peekaboo-ui/src/iosMain/kotlin/com/preat/peekaboo/ui/camera/CameraAccess.kt @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/iosMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.ios.kt b/peekaboo-ui/src/iosMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.ios.kt index e6d0569..47b22ab 100644 --- a/peekaboo-ui/src/iosMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.ios.kt +++ b/peekaboo-ui/src/iosMain/kotlin/com/preat/peekaboo/ui/camera/PeekabooCamera.ios.kt @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/peekaboo-ui/src/iosMain/kotlin/com/preat/peekaboo/ui/gallery/PeekabooGallery.ios.kt b/peekaboo-ui/src/iosMain/kotlin/com/preat/peekaboo/ui/gallery/PeekabooGallery.ios.kt index be744f6..1a6fac0 100644 --- a/peekaboo-ui/src/iosMain/kotlin/com/preat/peekaboo/ui/gallery/PeekabooGallery.ios.kt +++ b/peekaboo-ui/src/iosMain/kotlin/com/preat/peekaboo/ui/gallery/PeekabooGallery.ios.kt @@ -1,5 +1,5 @@ /* - * Copyright 2024 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sample/common/src/commonMain/kotlin/com/preat/peekaboo/common/App.kt b/sample/common/src/commonMain/kotlin/com/preat/peekaboo/common/App.kt index b13791a..e1dc407 100644 --- a/sample/common/src/commonMain/kotlin/com/preat/peekaboo/common/App.kt +++ b/sample/common/src/commonMain/kotlin/com/preat/peekaboo/common/App.kt @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sample/common/src/commonMain/kotlin/com/preat/peekaboo/common/component/CircularButton.kt b/sample/common/src/commonMain/kotlin/com/preat/peekaboo/common/component/CircularButton.kt index 84dda79..addff19 100644 --- a/sample/common/src/commonMain/kotlin/com/preat/peekaboo/common/component/CircularButton.kt +++ b/sample/common/src/commonMain/kotlin/com/preat/peekaboo/common/component/CircularButton.kt @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sample/common/src/commonMain/kotlin/com/preat/peekaboo/common/component/InstagramCameraButton.kt b/sample/common/src/commonMain/kotlin/com/preat/peekaboo/common/component/InstagramCameraButton.kt index c42cd60..07b7785 100644 --- a/sample/common/src/commonMain/kotlin/com/preat/peekaboo/common/component/InstagramCameraButton.kt +++ b/sample/common/src/commonMain/kotlin/com/preat/peekaboo/common/component/InstagramCameraButton.kt @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/settings.gradle.kts b/settings.gradle.kts index 401ebfc..28104f0 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright 2023 onseok + * Copyright 2023-2024 onseok * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.