Skip to content

Commit

Permalink
changelog updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Specy committed Jul 2, 2024
1 parent 7796360 commit 97899d1
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 12 deletions.
18 changes: 9 additions & 9 deletions src/Config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ import type {Tauri} from "$types/TauriTypes"
import type {NoteImage} from "$cmp/shared/SvgNotes"

export const APP_NAME: AppName = process.env.NEXT_PUBLIC_APP_NAME as AppName || ["Sky", "Genshin"][1]
export const APP_VERSION = '3.4.1' as const
export const APP_VERSION = '3.5.0' as const
console.log(`${APP_NAME}-V${APP_VERSION}`)
export const UPDATE_MESSAGE = (APP_NAME === 'Genshin'
? `
- Added chinese, indonesian, portuguese translations for the app, we are looking for translators!
- Added button to install app to home screen
- Added custom keyboard layout as a note name type
- MIDI bug fixes
- Added looping of song section
- Added ability to hide notes in practice mode
- Select how many chunks to show in the visual sheet
- Added Turkish translation
`
: `
- Added chinese, indonesian, portuguese translations for the app, we are looking for translators!
- Added button to install app to home screen
- Added custom keyboard layout as a note name type
- MIDI bug fixes
- Added looping of song section
- Added ability to hide notes in practice mode
- Select how many chunks to show in the visual sheet
- Added Turkish translation
`).trim()

export const UPDATE_URL = process.env.NODE_ENV === 'development'
Expand Down
6 changes: 3 additions & 3 deletions src/PagesVersions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ export const PAGES_VERSIONS = {
error: makePageVersion('error', 0),
keybinds: makePageVersion('keybinds', 1, ['Fixed bug not allowing MIDI connection']),
partners: makePageVersion('partners', 0),
player: makePageVersion('player', 2,
player: makePageVersion('player', 3,
APP_NAME === "Genshin"
? ["Added indonesian and portuguese translations", "⚠️ I know of the Nightwind Horn, it needs a lot of work to implement sustained notes"]
: ["Added indonesian and portuguese translations"]
? ["Added sheet looping, note hiding in practice mode, custom visual sheet size, turkish translation", "Work on the Nightwind Horn, needs more time"]
: ["Added sheet looping, note hiding in practice mode, custom visual sheet size, turkish translation"]
),
privacy: makePageVersion('privacy', 0),
sheetVisualizer: makePageVersion('sheetVisualizer', 0),
Expand Down
12 changes: 12 additions & 0 deletions src/changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ type Update = {
}

export const CHANGELOG: Update[] = [
{
version: '3.5.0',
title: "Loop, Visual sheets settings, Turkish translation",
date: new Date('2024-07-02'),
changes: [
'Added looping of section for practice/playing/approaching mode',
'The notes of the section to repeat can now be also be written as a number',
'Added ability to hide notes in practice mode, to help you test your memory of the song',
'You can now select how many chunks to show in the visual sheet',
'Added Turkish translation',
]
},
{
version: '3.4.1',
title: "Indonesian, Portuguese translations",
Expand Down

0 comments on commit 97899d1

Please sign in to comment.