From cf26af25d8fc1c769a4c71a769d647f142f00922 Mon Sep 17 00:00:00 2001 From: Nik Clayton Date: Sat, 2 Sep 2023 22:46:15 +0200 Subject: [PATCH] docs: Update copyright statement on relevant files Update the copyright statement on files I wrote or substantially rewrote. --- .github/ci-gradle.properties | 8 +++---- .../tusky/adapter/AccountViewHolder.kt | 17 +++++++++++++++ .../tusky/adapter/FollowRequestViewHolder.kt | 12 ++++++----- .../adapter/ReportNotificationViewHolder.kt | 12 ++++++----- .../compose/view/ComposeScheduleView.kt | 12 ++++++----- .../compose/view/ProgressImageView.kt | 12 ++++++----- .../notifications/FollowViewHolder.kt | 8 +++---- .../notifications/NotificationFetcher.kt | 17 +++++++++++++++ .../notifications/NotificationsFragment.kt | 8 +++---- .../NotificationsPagingAdapter.kt | 8 +++---- .../NotificationsPagingSource.kt | 8 +++---- .../notifications/NotificationsRepository.kt | 8 +++---- .../notifications/NotificationsViewModel.kt | 8 +++---- .../StatusNotificationViewHolder.kt | 8 +++---- .../notifications/StatusViewHolder.kt | 8 +++---- .../timeline/TimelineLoadStateAdapter.kt | 8 +++---- .../timeline/TimelineLoadStateViewHolder.kt | 8 +++---- .../viewthread/edits/ViewEditsViewModel.kt | 12 ++++++----- .../tusky/di/CoroutineScopeModule.kt | 8 +++---- .../keylesspalace/tusky/di/WorkerModule.kt | 8 +++---- .../com/keylesspalace/tusky/entity/Error.kt | 8 +++---- .../tusky/usecase/DeveloperToolsUseCase.kt | 17 +++++++++++++++ .../util/CompositeWithOpaqueBackground.kt | 8 +++---- .../tusky/util/FlowExtensions.kt | 8 +++---- .../tusky/util/HttpHeaderLink.kt | 9 ++++---- .../tusky/util/StatusDisplayOptions.kt | 8 +++---- .../keylesspalace/tusky/util/ThemeUtils.kt | 12 ++++++----- .../tusky/util/TimestampUtils.kt | 12 ++++++----- .../tusky/view/BezelImageView.kt | 12 ++++++----- .../tusky/view/ClickableSpanTextView.kt | 8 +++---- .../tusky/view/EndlessOnScrollListener.kt | 12 ++++++----- .../tusky/view/SliderPreference.kt | 17 +++++++++++++++ .../tusky/viewdata/NotificationViewData.kt | 21 ++++--------------- .../tusky/worker/NotificationWorker.kt | 8 +++---- .../tusky/worker/PruneCacheWorker.kt | 8 +++---- .../layout/item_load_state_footer_view.xml | 8 +++---- .../main/res/menu/activity_announcements.xml | 17 +++++++++++++++ app/src/main/res/menu/activity_main.xml | 19 ++++++++++++++++- .../res/menu/activity_scheduled_status.xml | 17 +++++++++++++++ .../main/res/menu/fragment_account_media.xml | 17 +++++++++++++++ .../main/res/menu/fragment_conversations.xml | 17 +++++++++++++++ .../main/res/menu/fragment_notifications.xml | 8 +++---- .../res/menu/fragment_report_statuses.xml | 17 +++++++++++++++ app/src/main/res/menu/fragment_search.xml | 17 +++++++++++++++ app/src/main/res/menu/fragment_timeline.xml | 17 +++++++++++++++ app/src/main/res/menu/fragment_view_edits.xml | 17 +++++++++++++++ app/src/main/res/menu/status_favourite.xml | 17 +++++++++++++++ app/src/main/res/menu/status_reblog.xml | 17 +++++++++++++++ .../ComposeActivity/StatusLengthTest.kt | 8 +++---- .../NotificationsPagingSourceTest.kt | 8 +++---- .../NotificationsViewModelTestBase.kt | 8 +++---- ...icationsViewModelTestClearNotifications.kt | 8 +++---- .../NotificationsViewModelTestFilter.kt | 8 +++---- ...icationsViewModelTestNotificationAction.kt | 8 +++---- .../NotificationsViewModelTestStatusAction.kt | 8 +++---- ...ationsViewModelTestStatusDisplayOptions.kt | 8 +++---- .../NotificationsViewModelTestUiState.kt | 8 +++---- .../NotificationsViewModelTestVisibleId.kt | 8 +++---- .../tusky/util/FlowExtensionsTest.kt | 8 +++---- .../tusky/util/HttpHeaderLinkTest.kt | 17 +++++++++++++++ .../tusky/util/NumberUtilsTest.kt | 17 +++++++++++++++ 61 files changed, 494 insertions(+), 199 deletions(-) diff --git a/.github/ci-gradle.properties b/.github/ci-gradle.properties index b27d29785..9cb9fc93b 100644 --- a/.github/ci-gradle.properties +++ b/.github/ci-gradle.properties @@ -1,17 +1,17 @@ # -# Copyright 2023 Tusky Contributors +# Copyright 2023 Pachli Association # -# This file is a part of Tusky. +# This file is a part of Pachli. # # 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. # -# Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even +# Pachli 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 Tusky; if not, +# You should have received a copy of the GNU General Public License along with Pachli; if not, # see . # diff --git a/app/src/main/java/com/keylesspalace/tusky/adapter/AccountViewHolder.kt b/app/src/main/java/com/keylesspalace/tusky/adapter/AccountViewHolder.kt index f125422c3..a793cc64d 100644 --- a/app/src/main/java/com/keylesspalace/tusky/adapter/AccountViewHolder.kt +++ b/app/src/main/java/com/keylesspalace/tusky/adapter/AccountViewHolder.kt @@ -1,3 +1,20 @@ +/* + * Copyright 2023 Pachli Association + * + * This file is a part of Pachli. + * + * 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. + * + * Pachli 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 Pachli; if not, + * see . + */ + package com.keylesspalace.tusky.adapter import androidx.recyclerview.widget.RecyclerView diff --git a/app/src/main/java/com/keylesspalace/tusky/adapter/FollowRequestViewHolder.kt b/app/src/main/java/com/keylesspalace/tusky/adapter/FollowRequestViewHolder.kt index 446536e6e..9efb1b96b 100644 --- a/app/src/main/java/com/keylesspalace/tusky/adapter/FollowRequestViewHolder.kt +++ b/app/src/main/java/com/keylesspalace/tusky/adapter/FollowRequestViewHolder.kt @@ -1,17 +1,19 @@ -/* Copyright 2021 Tusky Contributors +/* + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, - * see . */ + * You should have received a copy of the GNU General Public License along with Pachli; if not, + * see . + */ package com.keylesspalace.tusky.adapter diff --git a/app/src/main/java/com/keylesspalace/tusky/adapter/ReportNotificationViewHolder.kt b/app/src/main/java/com/keylesspalace/tusky/adapter/ReportNotificationViewHolder.kt index 7502c24e9..22b093913 100644 --- a/app/src/main/java/com/keylesspalace/tusky/adapter/ReportNotificationViewHolder.kt +++ b/app/src/main/java/com/keylesspalace/tusky/adapter/ReportNotificationViewHolder.kt @@ -1,17 +1,19 @@ -/* Copyright 2021 Tusky Contributors +/* + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, - * see . */ + * You should have received a copy of the GNU General Public License along with Pachli; if not, + * see . + */ package com.keylesspalace.tusky.adapter diff --git a/app/src/main/java/com/keylesspalace/tusky/components/compose/view/ComposeScheduleView.kt b/app/src/main/java/com/keylesspalace/tusky/components/compose/view/ComposeScheduleView.kt index 2f6fad162..c7a5b0e03 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/compose/view/ComposeScheduleView.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/compose/view/ComposeScheduleView.kt @@ -1,17 +1,19 @@ -/* Copyright 2019 kyori19 +/* + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, - * see . */ + * You should have received a copy of the GNU General Public License along with Pachli; if not, + * see . + */ package com.keylesspalace.tusky.components.compose.view import android.content.Context diff --git a/app/src/main/java/com/keylesspalace/tusky/components/compose/view/ProgressImageView.kt b/app/src/main/java/com/keylesspalace/tusky/components/compose/view/ProgressImageView.kt index 6678356ea..686fcc458 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/compose/view/ProgressImageView.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/compose/view/ProgressImageView.kt @@ -1,17 +1,19 @@ -/* Copyright 2017 Andrew Dawson +/* + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, - * see . */ + * You should have received a copy of the GNU General Public License along with Pachli; if not, + * see . + */ package com.keylesspalace.tusky.components.compose.view import android.content.Context diff --git a/app/src/main/java/com/keylesspalace/tusky/components/notifications/FollowViewHolder.kt b/app/src/main/java/com/keylesspalace/tusky/components/notifications/FollowViewHolder.kt index 70f564c0c..b433a73ee 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/notifications/FollowViewHolder.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/notifications/FollowViewHolder.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationFetcher.kt b/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationFetcher.kt index b8ebc47d6..efb322263 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationFetcher.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationFetcher.kt @@ -1,3 +1,20 @@ +/* + * Copyright 2023 Pachli Association + * + * This file is a part of Pachli. + * + * 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. + * + * Pachli 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 Pachli; if not, + * see . + */ + package com.keylesspalace.tusky.components.notifications import android.app.NotificationManager diff --git a/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsFragment.kt b/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsFragment.kt index 01c832e35..26104499f 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsFragment.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsFragment.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsPagingAdapter.kt b/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsPagingAdapter.kt index 26e0b4a1d..f7476e318 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsPagingAdapter.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsPagingAdapter.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsPagingSource.kt b/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsPagingSource.kt index f48361047..37c72f0ec 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsPagingSource.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsPagingSource.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsRepository.kt b/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsRepository.kt index 080aeb377..7de654f8a 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsRepository.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsRepository.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModel.kt b/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModel.kt index 97f659117..8e010f9a4 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModel.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModel.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/components/notifications/StatusNotificationViewHolder.kt b/app/src/main/java/com/keylesspalace/tusky/components/notifications/StatusNotificationViewHolder.kt index 27c20ef27..ab23d45d2 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/notifications/StatusNotificationViewHolder.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/notifications/StatusNotificationViewHolder.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/components/notifications/StatusViewHolder.kt b/app/src/main/java/com/keylesspalace/tusky/components/notifications/StatusViewHolder.kt index 478ae7e05..380129130 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/notifications/StatusViewHolder.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/notifications/StatusViewHolder.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/components/timeline/TimelineLoadStateAdapter.kt b/app/src/main/java/com/keylesspalace/tusky/components/timeline/TimelineLoadStateAdapter.kt index d7adf23d0..286f2cdce 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/timeline/TimelineLoadStateAdapter.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/timeline/TimelineLoadStateAdapter.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/components/timeline/TimelineLoadStateViewHolder.kt b/app/src/main/java/com/keylesspalace/tusky/components/timeline/TimelineLoadStateViewHolder.kt index 3b7dcc34a..60b82162b 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/timeline/TimelineLoadStateViewHolder.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/timeline/TimelineLoadStateViewHolder.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/components/viewthread/edits/ViewEditsViewModel.kt b/app/src/main/java/com/keylesspalace/tusky/components/viewthread/edits/ViewEditsViewModel.kt index 85786efa2..059312b49 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/viewthread/edits/ViewEditsViewModel.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/viewthread/edits/ViewEditsViewModel.kt @@ -1,17 +1,19 @@ -/* Copyright 2022 Tusky Contributors +/* + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, - * see . */ + * You should have received a copy of the GNU General Public License along with Pachli; if not, + * see . + */ package com.keylesspalace.tusky.components.viewthread.edits diff --git a/app/src/main/java/com/keylesspalace/tusky/di/CoroutineScopeModule.kt b/app/src/main/java/com/keylesspalace/tusky/di/CoroutineScopeModule.kt index bee62f7ec..750535986 100644 --- a/app/src/main/java/com/keylesspalace/tusky/di/CoroutineScopeModule.kt +++ b/app/src/main/java/com/keylesspalace/tusky/di/CoroutineScopeModule.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/di/WorkerModule.kt b/app/src/main/java/com/keylesspalace/tusky/di/WorkerModule.kt index 212d4d319..717650555 100644 --- a/app/src/main/java/com/keylesspalace/tusky/di/WorkerModule.kt +++ b/app/src/main/java/com/keylesspalace/tusky/di/WorkerModule.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/entity/Error.kt b/app/src/main/java/com/keylesspalace/tusky/entity/Error.kt index f78cafacd..738b4499d 100644 --- a/app/src/main/java/com/keylesspalace/tusky/entity/Error.kt +++ b/app/src/main/java/com/keylesspalace/tusky/entity/Error.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/usecase/DeveloperToolsUseCase.kt b/app/src/main/java/com/keylesspalace/tusky/usecase/DeveloperToolsUseCase.kt index cd98ed6c4..c7da0aed5 100644 --- a/app/src/main/java/com/keylesspalace/tusky/usecase/DeveloperToolsUseCase.kt +++ b/app/src/main/java/com/keylesspalace/tusky/usecase/DeveloperToolsUseCase.kt @@ -1,3 +1,20 @@ +/* + * Copyright 2023 Pachli Association + * + * This file is a part of Pachli. + * + * 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. + * + * Pachli 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 Pachli; if not, + * see . + */ + package com.keylesspalace.tusky.usecase import androidx.room.withTransaction diff --git a/app/src/main/java/com/keylesspalace/tusky/util/CompositeWithOpaqueBackground.kt b/app/src/main/java/com/keylesspalace/tusky/util/CompositeWithOpaqueBackground.kt index 0aaef6d5c..e053e4e3f 100644 --- a/app/src/main/java/com/keylesspalace/tusky/util/CompositeWithOpaqueBackground.kt +++ b/app/src/main/java/com/keylesspalace/tusky/util/CompositeWithOpaqueBackground.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/util/FlowExtensions.kt b/app/src/main/java/com/keylesspalace/tusky/util/FlowExtensions.kt index 8de7129ce..4da6fc381 100644 --- a/app/src/main/java/com/keylesspalace/tusky/util/FlowExtensions.kt +++ b/app/src/main/java/com/keylesspalace/tusky/util/FlowExtensions.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/util/HttpHeaderLink.kt b/app/src/main/java/com/keylesspalace/tusky/util/HttpHeaderLink.kt index a5ccd35be..b1734eddc 100644 --- a/app/src/main/java/com/keylesspalace/tusky/util/HttpHeaderLink.kt +++ b/app/src/main/java/com/keylesspalace/tusky/util/HttpHeaderLink.kt @@ -1,16 +1,17 @@ -/* Copyright 2022 Tusky Contributors +/* + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ package com.keylesspalace.tusky.util diff --git a/app/src/main/java/com/keylesspalace/tusky/util/StatusDisplayOptions.kt b/app/src/main/java/com/keylesspalace/tusky/util/StatusDisplayOptions.kt index 481c1bd0b..21b89693d 100644 --- a/app/src/main/java/com/keylesspalace/tusky/util/StatusDisplayOptions.kt +++ b/app/src/main/java/com/keylesspalace/tusky/util/StatusDisplayOptions.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/util/ThemeUtils.kt b/app/src/main/java/com/keylesspalace/tusky/util/ThemeUtils.kt index 10f8df1a4..b13ed756c 100644 --- a/app/src/main/java/com/keylesspalace/tusky/util/ThemeUtils.kt +++ b/app/src/main/java/com/keylesspalace/tusky/util/ThemeUtils.kt @@ -1,17 +1,19 @@ -/* Copyright 2017 Andrew Dawson +/* + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, - * see . */ + * You should have received a copy of the GNU General Public License along with Pachli; if not, + * see . + */ @file:JvmName("ThemeUtils") package com.keylesspalace.tusky.util diff --git a/app/src/main/java/com/keylesspalace/tusky/util/TimestampUtils.kt b/app/src/main/java/com/keylesspalace/tusky/util/TimestampUtils.kt index a6717ed4f..97ef49432 100644 --- a/app/src/main/java/com/keylesspalace/tusky/util/TimestampUtils.kt +++ b/app/src/main/java/com/keylesspalace/tusky/util/TimestampUtils.kt @@ -1,17 +1,19 @@ -/* Copyright 2017 Andrew Dawson +/* + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, - * see . */ + * You should have received a copy of the GNU General Public License along with Pachli; if not, + * see . + */ @file:JvmName("TimestampUtils") package com.keylesspalace.tusky.util diff --git a/app/src/main/java/com/keylesspalace/tusky/view/BezelImageView.kt b/app/src/main/java/com/keylesspalace/tusky/view/BezelImageView.kt index f217ddef2..abd04fa9d 100644 --- a/app/src/main/java/com/keylesspalace/tusky/view/BezelImageView.kt +++ b/app/src/main/java/com/keylesspalace/tusky/view/BezelImageView.kt @@ -1,17 +1,19 @@ -/* Copyright 2019 Tusky contributors +/* + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, - * see . */ + * You should have received a copy of the GNU General Public License along with Pachli; if not, + * see . + */ package com.keylesspalace.tusky.view import android.content.Context diff --git a/app/src/main/java/com/keylesspalace/tusky/view/ClickableSpanTextView.kt b/app/src/main/java/com/keylesspalace/tusky/view/ClickableSpanTextView.kt index 4caf47c14..cefef191b 100644 --- a/app/src/main/java/com/keylesspalace/tusky/view/ClickableSpanTextView.kt +++ b/app/src/main/java/com/keylesspalace/tusky/view/ClickableSpanTextView.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/view/EndlessOnScrollListener.kt b/app/src/main/java/com/keylesspalace/tusky/view/EndlessOnScrollListener.kt index c240adf90..b4ef1d105 100644 --- a/app/src/main/java/com/keylesspalace/tusky/view/EndlessOnScrollListener.kt +++ b/app/src/main/java/com/keylesspalace/tusky/view/EndlessOnScrollListener.kt @@ -1,17 +1,19 @@ -/* Copyright 2017 Andrew Dawson +/* + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, - * see . */ + * You should have received a copy of the GNU General Public License along with Pachli; if not, + * see . + */ package com.keylesspalace.tusky.view import androidx.recyclerview.widget.LinearLayoutManager diff --git a/app/src/main/java/com/keylesspalace/tusky/view/SliderPreference.kt b/app/src/main/java/com/keylesspalace/tusky/view/SliderPreference.kt index 12b0b990e..f435afbe2 100644 --- a/app/src/main/java/com/keylesspalace/tusky/view/SliderPreference.kt +++ b/app/src/main/java/com/keylesspalace/tusky/view/SliderPreference.kt @@ -1,3 +1,20 @@ +/* + * Copyright 2023 Pachli Association + * + * This file is a part of Pachli. + * + * 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. + * + * Pachli 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 Pachli; if not, + * see . + */ + package com.keylesspalace.tusky.view import android.content.Context diff --git a/app/src/main/java/com/keylesspalace/tusky/viewdata/NotificationViewData.kt b/app/src/main/java/com/keylesspalace/tusky/viewdata/NotificationViewData.kt index 8a5fa3fe3..c96039b14 100644 --- a/app/src/main/java/com/keylesspalace/tusky/viewdata/NotificationViewData.kt +++ b/app/src/main/java/com/keylesspalace/tusky/viewdata/NotificationViewData.kt @@ -1,33 +1,20 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ -/* - * This file is a part of Tusky. - * - * 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. - * - * Tusky 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 Tusky; if not, - * see . */ package com.keylesspalace.tusky.viewdata import com.keylesspalace.tusky.entity.Notification diff --git a/app/src/main/java/com/keylesspalace/tusky/worker/NotificationWorker.kt b/app/src/main/java/com/keylesspalace/tusky/worker/NotificationWorker.kt index cc99b78b1..b7b769d11 100644 --- a/app/src/main/java/com/keylesspalace/tusky/worker/NotificationWorker.kt +++ b/app/src/main/java/com/keylesspalace/tusky/worker/NotificationWorker.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/java/com/keylesspalace/tusky/worker/PruneCacheWorker.kt b/app/src/main/java/com/keylesspalace/tusky/worker/PruneCacheWorker.kt index 5a65a2ef9..870e77655 100644 --- a/app/src/main/java/com/keylesspalace/tusky/worker/PruneCacheWorker.kt +++ b/app/src/main/java/com/keylesspalace/tusky/worker/PruneCacheWorker.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/main/res/layout/item_load_state_footer_view.xml b/app/src/main/res/layout/item_load_state_footer_view.xml index 4f80cd657..fdd86802c 100644 --- a/app/src/main/res/layout/item_load_state_footer_view.xml +++ b/app/src/main/res/layout/item_load_state_footer_view.xml @@ -1,18 +1,18 @@ diff --git a/app/src/main/res/menu/activity_announcements.xml b/app/src/main/res/menu/activity_announcements.xml index bf722917f..62b415068 100644 --- a/app/src/main/res/menu/activity_announcements.xml +++ b/app/src/main/res/menu/activity_announcements.xml @@ -1,4 +1,21 @@ + + + + - \ No newline at end of file + diff --git a/app/src/main/res/menu/activity_scheduled_status.xml b/app/src/main/res/menu/activity_scheduled_status.xml index bf722917f..62b415068 100644 --- a/app/src/main/res/menu/activity_scheduled_status.xml +++ b/app/src/main/res/menu/activity_scheduled_status.xml @@ -1,4 +1,21 @@ + + + + + + diff --git a/app/src/main/res/menu/fragment_report_statuses.xml b/app/src/main/res/menu/fragment_report_statuses.xml index bf722917f..62b415068 100644 --- a/app/src/main/res/menu/fragment_report_statuses.xml +++ b/app/src/main/res/menu/fragment_report_statuses.xml @@ -1,4 +1,21 @@ + + + + + + + + + + + + . */ diff --git a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsPagingSourceTest.kt b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsPagingSourceTest.kt index b91e07161..db067827c 100644 --- a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsPagingSourceTest.kt +++ b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsPagingSourceTest.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestBase.kt b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestBase.kt index 15bfc0ff5..97fe05c33 100644 --- a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestBase.kt +++ b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestBase.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestClearNotifications.kt b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestClearNotifications.kt index e6b765be4..72c698d97 100644 --- a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestClearNotifications.kt +++ b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestClearNotifications.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestFilter.kt b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestFilter.kt index 98737e431..bb8c41b2d 100644 --- a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestFilter.kt +++ b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestFilter.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestNotificationAction.kt b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestNotificationAction.kt index 3c48dd2b1..c465d8bf4 100644 --- a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestNotificationAction.kt +++ b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestNotificationAction.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestStatusAction.kt b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestStatusAction.kt index 0f4bf3e07..096de2b0e 100644 --- a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestStatusAction.kt +++ b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestStatusAction.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestStatusDisplayOptions.kt b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestStatusDisplayOptions.kt index f3dd3c478..2434e9233 100644 --- a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestStatusDisplayOptions.kt +++ b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestStatusDisplayOptions.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestUiState.kt b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestUiState.kt index 942fe717b..59e6d537f 100644 --- a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestUiState.kt +++ b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestUiState.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestVisibleId.kt b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestVisibleId.kt index f6b7360e6..e488486a9 100644 --- a/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestVisibleId.kt +++ b/app/src/test/java/com/keylesspalace/tusky/components/notifications/NotificationsViewModelTestVisibleId.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/test/java/com/keylesspalace/tusky/util/FlowExtensionsTest.kt b/app/src/test/java/com/keylesspalace/tusky/util/FlowExtensionsTest.kt index 5cbb231b6..00e8032cf 100644 --- a/app/src/test/java/com/keylesspalace/tusky/util/FlowExtensionsTest.kt +++ b/app/src/test/java/com/keylesspalace/tusky/util/FlowExtensionsTest.kt @@ -1,17 +1,17 @@ /* - * Copyright 2023 Tusky Contributors + * Copyright 2023 Pachli Association * - * This file is a part of Tusky. + * This file is a part of Pachli. * * 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. * - * Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * Pachli 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 Tusky; if not, + * You should have received a copy of the GNU General Public License along with Pachli; if not, * see . */ diff --git a/app/src/test/java/com/keylesspalace/tusky/util/HttpHeaderLinkTest.kt b/app/src/test/java/com/keylesspalace/tusky/util/HttpHeaderLinkTest.kt index ac253db03..bc7496abd 100644 --- a/app/src/test/java/com/keylesspalace/tusky/util/HttpHeaderLinkTest.kt +++ b/app/src/test/java/com/keylesspalace/tusky/util/HttpHeaderLinkTest.kt @@ -1,3 +1,20 @@ +/* + * Copyright 2023 Pachli Association + * + * This file is a part of Pachli. + * + * 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. + * + * Pachli 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 Pachli; if not, + * see . + */ + package com.keylesspalace.tusky.util import androidx.test.ext.junit.runners.AndroidJUnit4 diff --git a/app/src/test/java/com/keylesspalace/tusky/util/NumberUtilsTest.kt b/app/src/test/java/com/keylesspalace/tusky/util/NumberUtilsTest.kt index 25ac69ee1..565a4f58b 100644 --- a/app/src/test/java/com/keylesspalace/tusky/util/NumberUtilsTest.kt +++ b/app/src/test/java/com/keylesspalace/tusky/util/NumberUtilsTest.kt @@ -1,3 +1,20 @@ +/* + * Copyright 2023 Pachli Association + * + * This file is a part of Pachli. + * + * 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. + * + * Pachli 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 Pachli; if not, + * see . + */ + package com.keylesspalace.tusky.util import org.junit.AfterClass