From feb6ec9ff355250ae32b301ff8dc1f05ca83bb23 Mon Sep 17 00:00:00 2001 From: joragua Date: Thu, 3 Oct 2024 11:31:21 +0200 Subject: [PATCH] refactor: removed 4.4.0 release notes --- .../releasenotes/ReleaseNotesViewModel.kt | 33 +------------------ 1 file changed, 1 insertion(+), 32 deletions(-) diff --git a/owncloudApp/src/main/java/com/owncloud/android/presentation/releasenotes/ReleaseNotesViewModel.kt b/owncloudApp/src/main/java/com/owncloud/android/presentation/releasenotes/ReleaseNotesViewModel.kt index 369c8c3d963..8557cda9fa1 100644 --- a/owncloudApp/src/main/java/com/owncloud/android/presentation/releasenotes/ReleaseNotesViewModel.kt +++ b/owncloudApp/src/main/java/com/owncloud/android/presentation/releasenotes/ReleaseNotesViewModel.kt @@ -44,37 +44,6 @@ class ReleaseNotesViewModel( } companion object { - val releaseNotesList = listOf( - ReleaseNote( - title = R.string.release_notes_4_4_0_title_improved_from_original_folder_auto_upload, - subtitle = R.string.release_notes_4_4_0_subtitle_improved_from_original_folder_auto_upload, - type = ReleaseNoteType.ENHANCEMENT - ), - ReleaseNote( - title = R.string.release_notes_4_4_0_title_resharing_capability, - subtitle = R.string.release_notes_4_4_0_subtitle_resharing_capability, - type = ReleaseNoteType.ENHANCEMENT - ), - ReleaseNote( - title = R.string.release_notes_4_4_6_4_bugfixes_title, - subtitle = R.string.release_notes_4_4_6_4_bugfixes_subtitle, - type = ReleaseNoteType.BUGFIX - ), - ReleaseNote( - title = R.string.release_notes_4_4_0_title_audio_player_android14, - subtitle = R.string.release_notes_4_4_0_subtitle_audio_player_android14, - type = ReleaseNoteType.BUGFIX - ), - ReleaseNote( - title = R.string.release_notes_4_3_0_title_accessibility_improvements, - subtitle = R.string.release_notes_4_3_0_subtitle_accessibility_improvements, - type = ReleaseNoteType.ENHANCEMENT - ), - ReleaseNote( - title = R.string.release_notes_bugfixes_title, - subtitle = R.string.release_notes_bugfixes_subtitle, - type = ReleaseNoteType.BUGFIX - ), - ) + val releaseNotesList : List = emptyList() } }