Skip to content

Commit a6a4512

Browse files
committed
update licence headers
Signed-off-by: alperozturk <alper_ozturk@proton.me>
1 parent 4b7223c commit a6a4512

16 files changed

+113
-47
lines changed

app/src/main/java/it/niedermann/owncloud/notes/share/NoteShareActivity.java

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
/*
2-
* Nextcloud Notes - Android Client
2+
* Nextcloud Android client application
33
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
4+
* @author Andy Scherzinger
5+
* @author Chris Narkiewicz <hello@ezaquarii.com>
6+
* @author TSI-mc
7+
*
8+
* Copyright (C) 2018 Andy Scherzinger
9+
* Copyright (C) 2020 Chris Narkiewicz <hello@ezaquarii.com>
10+
* Copyright (C) 2023 TSI-mc
11+
*
12+
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
613
*/
714
package it.niedermann.owncloud.notes.share;
815

app/src/main/java/it/niedermann/owncloud/notes/share/NoteShareDetailActivity.kt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
/*
2-
* Nextcloud Notes - Android Client
2+
* Nextcloud Android client application
33
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
4+
* @author TSI-mc
5+
* Copyright (C) 2021 TSI-mc
6+
* Copyright (C) 2021 Nextcloud GmbH
7+
*
8+
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
69
*/
710
package it.niedermann.owncloud.notes.share
811

app/src/main/java/it/niedermann/owncloud/notes/share/adapter/QuickSharingPermissionsAdapter.kt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
/*
2-
* Nextcloud Notes - Android Client
2+
* Nextcloud Android client application
33
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
4+
* @author TSI-mc
5+
* Copyright (C) 2021 TSI-mc
6+
* Copyright (C) 2021 Nextcloud GmbH
7+
*
8+
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
69
*/
710
package it.niedermann.owncloud.notes.share.adapter
811

app/src/main/java/it/niedermann/owncloud/notes/share/adapter/ShareeListAdapter.java

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
/*
2-
* Nextcloud Notes - Android Client
2+
* Nextcloud - Android Client
33
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
4+
* SPDX-FileCopyrightText: 2023 Alper Ozturk <alper.ozturk@nextcloud.com>
5+
* SPDX-FileCopyrightText: 2022 Álvaro Brey <alvaro@alvarobrey.com>
6+
* SPDX-FileCopyrightText: 2017-2018 Tobias Kaminsky <tobias@kaminsky.me>
7+
* SPDX-FileCopyrightText: 2020 Chris Narkiewicz <hello@ezaquarii.com>
8+
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH
9+
* SPDX-FileCopyrightText: 2015-2018 Andy Scherzinger <info@andy-scherzinger.de>
10+
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
611
*/
712
package it.niedermann.owncloud.notes.share.adapter;
813

app/src/main/java/it/niedermann/owncloud/notes/share/adapter/SuggestionAdapter.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ class SuggestionAdapter(context: Context, cursor: Cursor?, private val account:
4343
if (iconId != null) {
4444
icon.setImageDrawable(ContextCompat.getDrawable(context, iconId))
4545
}
46-
} catch (e: Exception) {
46+
} catch (_: Exception) {
4747
try {
4848
val username = cursor.getStringOrNull(iconColumn)
4949
if (username != null) {
5050
AvatarLoader.load(context, icon, account, username)
5151
}
52-
} catch (e: Exception) {
52+
} catch (_: Exception) {
5353
icon.setImageDrawable(ContextCompat.getDrawable(context, R.drawable.ic_account_circle_grey_24dp))
5454
}
5555
}

app/src/main/java/it/niedermann/owncloud/notes/share/adapter/holder/LinkShareViewHolder.java

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
/*
2-
* Nextcloud Notes - Android Client
32
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
3+
* Nextcloud Android client application
4+
*
5+
* @author Tobias Kaminsky
6+
* @author TSI-mc
7+
*
8+
* Copyright (C) 2020 Tobias Kaminsky
9+
* Copyright (C) 2020 Nextcloud GmbH
10+
* Copyright (C) 2021 TSI-mc
11+
*
12+
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
613
*/
714
package it.niedermann.owncloud.notes.share.adapter.holder;
815

app/src/main/java/it/niedermann/owncloud/notes/share/adapter/holder/ShareViewHolder.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
/*
2-
* Nextcloud Notes - Android Client
32
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
3+
* Nextcloud Android client application
4+
*
5+
* @author Tobias Kaminsky
6+
* @author TSI-mc
7+
* Copyright (C) 2020 Tobias Kaminsky
8+
* Copyright (C) 2020 Nextcloud GmbH
9+
* Copyright (C) 2021 TSI-mc
10+
*
11+
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
612
*/
713
package it.niedermann.owncloud.notes.share.adapter.holder;
814

app/src/main/java/it/niedermann/owncloud/notes/share/dialog/NoteShareActivityShareItemActionBottomSheetDialog.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
/*
2-
* Nextcloud Notes - Android Client
2+
* Nextcloud Android client application
33
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
4+
* @author TSI-mc
5+
* Copyright (C) 2021 TSI-mc
6+
* Copyright (C) 2021 Nextcloud GmbH
7+
*
8+
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
69
*/
710
package it.niedermann.owncloud.notes.share.dialog;
811

app/src/main/java/it/niedermann/owncloud/notes/share/dialog/QuickSharingPermissionsBottomSheetDialog.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
/*
2-
* Nextcloud Notes - Android Client
2+
* Nextcloud Android client application
33
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
4+
* @author TSI-mc
5+
* Copyright (C) 2021 TSI-mc
6+
* Copyright (C) 2021 Nextcloud GmbH
7+
*
8+
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
69
*/
710
package it.niedermann.owncloud.notes.share.dialog;
811

app/src/main/java/it/niedermann/owncloud/notes/share/dialog/ShareLinkDialog.kt

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
/*
2-
* Nextcloud Notes - Android Client
2+
* Nextcloud - Android Client
33
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
4+
* SPDX-FileCopyrightText: 2024 Alper Ozturk <alper.ozturk@nextcloud.com>
5+
* SPDX-FileCopyrightText: 2017-2018 Andy Scherzinger <info@andy-scherzinger.de>
6+
* SPDX-FileCopyrightText: 2017-2018 Tobias Kaminsky <tobias@kaminsky.me>
7+
* SPDX-FileCopyrightText: 2015 ownCloud Inc.
8+
* SPDX-FileCopyrightText: 2015 David A. Velasco <dvelasco@solidgear.es>
9+
* SPDX-License-Identifier: GPL-2.0-only AND (AGPL-3.0-or-later OR GPL-2.0-only)
610
*/
711
package it.niedermann.owncloud.notes.share.dialog
812

app/src/main/java/it/niedermann/owncloud/notes/share/dialog/SharePasswordDialogFragment.kt

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
/*
2-
* Nextcloud Notes - Android Client
2+
* Nextcloud - Android Client
33
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
4+
* SPDX-FileCopyrightText: 2023 Alper Ozturk <alper.ozturk@nextcloud.com>
5+
* SPDX-FileCopyrightText: 2022 Álvaro Brey <alvaro@alvarobrey.com>
6+
* SPDX-FileCopyrightText: 2017-2020 Tobias Kaminsky <tobias@kaminsky.me>
7+
* SPDX-FileCopyrightText: 2018 Andy Scherzinger <info@andy-scherzinger.de>
8+
* SPDX-FileCopyrightText: 2015 María Asensio Valverde <masensio@solidgear.es>
9+
* SPDX-FileCopyrightText: 2015 ownCloud Inc.
10+
* SPDX-License-Identifier: GPL-2.0-only AND (AGPL-3.0-or-later OR GPL-2.0-only)
611
*/
712
package it.niedermann.owncloud.notes.share.dialog
813

app/src/main/java/it/niedermann/owncloud/notes/share/helper/SharingMenuHelper.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
/*
2-
* Nextcloud Notes - Android Client
2+
* Nextcloud Android client application
33
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
4+
* @author Andy Scherzinger
5+
* @author TSI-mc
6+
* Copyright (C) 2018 Andy Scherzinger
7+
* Copyright (C) 2021 TSI-mc
8+
*
9+
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
610
*/
711
package it.niedermann.owncloud.notes.share.helper;
812

app/src/main/java/it/niedermann/owncloud/notes/share/helper/UsersAndGroupsSearchProvider.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
/*
2-
* Nextcloud Notes - Android Client
2+
* Nextcloud - Android Client
33
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
4+
* SPDX-FileCopyrightText: 2019-2020 Tobias Kaminsky <tobias@kaminsky.me>
5+
* SPDX-FileCopyrightText: 2019 Chris Narkiewicz <hello@ezaquarii.com>
6+
* SPDX-FileCopyrightText: 2015 ownCloud Inc.
7+
* SPDX-FileCopyrightText: 2016 Juan Carlos González Cabrero <malkomich@gmail.com>
8+
* SPDX-FileCopyrightText: 2015 David A. Velasco <dvelasco@solidgear.es>
9+
* SPDX-License-Identifier: GPL-2.0-only AND (AGPL-3.0-or-later OR GPL-2.0-only)
610
*/
711
package it.niedermann.owncloud.notes.share.helper;
812

app/src/main/java/it/niedermann/owncloud/notes/share/listener/NoteShareItemAction.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
/*
2-
* Nextcloud Notes - Android Client
2+
* Nextcloud Android client application
33
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
4+
* @author TSI-mc
5+
* Copyright (C) 2021 TSI-mc
6+
* Copyright (C) 2021 Nextcloud GmbH
7+
*
8+
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
69
*/
710
package it.niedermann.owncloud.notes.share.listener;
811

app/src/main/java/it/niedermann/owncloud/notes/share/listener/ShareeListAdapterListener.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
/*
2-
* Nextcloud Notes - Android Client
32
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
3+
* Nextcloud Android client application
4+
*
5+
* @author Tobias Kaminsky
6+
* @author TSI-mc
7+
* Copyright (C) 2020 Tobias Kaminsky
8+
* Copyright (C) 2020 Nextcloud GmbH
9+
* Copyright (C) 2021 TSI-mc
10+
*
11+
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
612
*/
713
package it.niedermann.owncloud.notes.share.listener;
814

app/src/main/java/it/niedermann/owncloud/notes/share/model/QuickPermissionModel.kt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
/*
2-
* Nextcloud Notes - Android Client
2+
* Nextcloud Android client application
33
*
4-
* SPDX-FileCopyrightText: 2015-2025 Nextcloud GmbH and Nextcloud contributors
5-
* SPDX-License-Identifier: GPL-3.0-or-later
4+
* @author TSI-mc
5+
* Copyright (C) 2021 TSI-mc
6+
* Copyright (C) 2021 Nextcloud GmbH
7+
*
8+
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
69
*/
710
package it.niedermann.owncloud.notes.share.model
811

0 commit comments

Comments
 (0)