Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ target_compile_definitions(MStarPlayer PRIVATE
JUCE_WEB_BROWSER=0
JUCE_USE_CURL=0
JUCE_USE_CDREADER=1
JUCE_MODAL_LOOPS_PERMITTED=1
JUCE_APPLICATION_NAME_STRING="$<TARGET_PROPERTY:MStarPlayer,JUCE_PRODUCT_NAME>"
JUCE_APPLICATION_VERSION_STRING="$<TARGET_PROPERTY:MStarPlayer,JUCE_VERSION>"
)
Expand Down
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

* The dialogs to edit or remove files of a track work again.

## [1.3.0] - 2026-02-07

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Source/TrackUi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void TrackUi::buttonClicked(juce::Button* button)

juce::File file(m_track.getTrackConfig().file);
m_track.unloadFile();
juce::AlertWindow::showMessageBoxAsync(juce::AlertWindow::NoIcon,
juce::AlertWindow::showMessageBox(juce::AlertWindow::NoIcon,
TRANS("Audio editor launched"),
TRANS("Modify the file in the audio editor. Click on 'ok' after the file was saved to load it "
"again."));
Expand Down
Loading