Skip to content

Commit

Permalink
fix: sort release notes in vm too
Browse files Browse the repository at this point in the history
  • Loading branch information
Aitorbp committed Jun 26, 2024
1 parent 9d5c653 commit 73341d8
Showing 1 changed file with 31 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,37 @@ class ReleaseNotesViewModel(
subtitle = R.string.release_notes_4_3_0_subtitle_2,
type = ReleaseNoteType.ENHANCEMENT,
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_new_ui_manage_accounts,
subtitle = R.string.release_notes_4_3_0_subtitle_new_ui_manage_accounts,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_manual_removal_local_storage,
subtitle = R.string.release_notes_4_3_0_subtitle_manual_removal_local_storage,
type = ReleaseNoteType.ENHANCEMENT,
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_password_generator,
subtitle = R.string.release_notes_4_3_0_subtitle_password_generator,
type = ReleaseNoteType.ENHANCEMENT
),

ReleaseNote(
title = R.string.release_notes_4_3_0_title_create_open_shortcut,
subtitle = R.string.release_notes_4_3_0_subtitle_create_open_shortcut,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_report_feedback_central_github,
subtitle = R.string.release_notes_4_3_0_subtitle_report_feedback_central_github,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_clear_data_button_hard_reset,
subtitle = R.string.release_notes_4_3_0_subtitle_clear_data_button_hard_reset,
type = ReleaseNoteType.BUGFIX,
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_4,
subtitle = R.string.release_notes_4_3_0_subtitle_4,
Expand All @@ -80,26 +111,11 @@ class ReleaseNotesViewModel(
subtitle = R.string.release_notes_4_3_0_subtitle_retried_successful_uploads_delete_temporary_folder,
type = ReleaseNoteType.BUGFIX,
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_manual_removal_local_storage,
subtitle = R.string.release_notes_4_3_0_subtitle_manual_removal_local_storage,
type = ReleaseNoteType.ENHANCEMENT,
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_clear_data_button_hard_reset,
subtitle = R.string.release_notes_4_3_0_subtitle_clear_data_button_hard_reset,
type = ReleaseNoteType.BUGFIX,
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_improvements_remove_dialog,
subtitle = R.string.release_notes_4_3_0_subtitle_improvements_remove_dialog,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_password_generator,
subtitle = R.string.release_notes_4_3_0_subtitle_password_generator,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_display_name_truncation,
subtitle = R.string.release_notes_4_3_0_subtitle_display_name_truncation,
Expand Down Expand Up @@ -135,21 +151,6 @@ class ReleaseNotesViewModel(
subtitle = R.string.release_notes_4_3_0_subtitle_av_offline_files_removed_locally_with_local_only_option,
type = ReleaseNoteType.BUGFIX
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_create_open_shortcut,
subtitle = R.string.release_notes_4_3_0_subtitle_create_open_shortcut,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_report_feedback_central_github,
subtitle = R.string.release_notes_4_3_0_subtitle_report_feedback_central_github,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_new_ui_manage_accounts,
subtitle = R.string.release_notes_4_3_0_subtitle_new_ui_manage_accounts,
type = ReleaseNoteType.ENHANCEMENT
),
)
}
}

0 comments on commit 73341d8

Please sign in to comment.