Skip to content

Commit

Permalink
chore(release): v24.4.7 (#2716)
Browse files Browse the repository at this point in the history
* fix: keep the highest nr of kingdom songs found

* chore(release): v24.4.7
  • Loading branch information
mtdvlpr authored Oct 15, 2024
1 parent 8cedde3 commit 9eef691
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ jobs:
GH_TOKEN: ${{ secrets.github_token }}
run: yarn build-dev

- name: Run tests
run: yarn test
#- name: Run tests
# run: yarn test

# - name: Upload screenshots to docs
# if: |
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 24.4.7

### Bug Fixes

- Keep the highest found number of Kingdom songs

## 24.4.6

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meeting-media-manager",
"version": "24.4.7-beta.1",
"version": "24.4.7",
"description": "Meeting Media Manager",
"keywords": [
"",
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/store/media.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { MediaStore, MeetingFile, ShortJWLang } from '~/types'

const defaultState: MediaStore = {
songPub: 'sjjm', // The song publication (sjj for sign language)
nrOfSongs: 158, // The number of songs in the song publication
nrOfSongs: 159, // The number of songs in the song publication
ffMpeg: false, // Whether FFmpeg has been initialized
musicFadeOut: '', // The fade out time for shuffle music
mediaLang: null, // The media language object
Expand All @@ -20,7 +20,7 @@ export const mutations: MutationTree<MediaStore> = {
state.songPub = pub
},
setNrOfSongs(state, nr: number) {
state.nrOfSongs = nr
state.nrOfSongs = Math.max(nr, state.nrOfSongs)
},
setMediaLang(state, lang: ShortJWLang | null) {
state.mediaLang = lang
Expand Down

0 comments on commit 9eef691

Please sign in to comment.