diff --git a/README.md b/README.md index cddb1d7b..1ba7d50d 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,8 @@ The problem currently usually happens with the flatpak version. **PipeWire** support is planned and Ensembles will detect if you have it installed and it will modify the PulseAudio driver settings internally to better utilise PipeWire-Pulse if that is available. +**Jack** is also an option but it currently only works from outside the flatpak soundbox, ie. when you compile it natively. + ## Discussions If you want to ask any questions or provide feedback, you can make issues in this repository or use the discussions section of this repository. diff --git a/data/com.github.subhadeepjasu.ensembles.appdata.xml.in b/data/com.github.subhadeepjasu.ensembles.appdata.xml.in index 600a04bb..1c89a1fc 100644 --- a/data/com.github.subhadeepjasu.ensembles.appdata.xml.in +++ b/data/com.github.subhadeepjasu.ensembles.appdata.xml.in @@ -56,6 +56,10 @@ Multi-track Recorder https://raw.githubusercontent.com/SubhadeepJasu/Ensembles/master/screenshots/ScreenshotMultiTrackRecorder.png + + Voice Menu and MIDI File Player + https://raw.githubusercontent.com/SubhadeepJasu/Ensembles/master/screenshots/ScreenshotVoice.png + none @@ -87,6 +91,37 @@ none + + +

Fixed:

+
    +
  • Major rewrite and re-organisation of code
  • +
  • Reduced number of synths to two and using more channels instead
  • +
  • Prevent out of bound memory access in style engine and registry memory
  • +
  • Fixed layout for HiDPI screens
  • +
  • Fixed Recorder timer false update
  • +
+

Improved:

+
    +
  • Improved multi-touch detection in on-screen keybed
  • +
  • Style engine updated to use updated MIDI Player in FluidSynth 2.2.4
  • +
  • Recorder event sturcture improved and optimized
  • +
  • Fixed layout scalability for HiDPI screens
  • +
  • Use Gtk.Dialog for Preferences window
  • +
  • Improved knob input behavior
  • +
  • Visualize MIDI File events and automation events like harmonization, on the keybed
  • +
  • Reverb and Chorus effects improved (Note: styles haven't been updated to utilise them)
  • +
+

New:

+
    +
  • Added ability to change central display themes
  • +
  • Added Jack driver support (only works outside sandbox for now)
  • +
  • Implemented tempo "Tap" button. Tap the button to the beats of a song to copy it's tempo
  • +
  • Implemented "Stop" and "Sustain" (Sostenuto) button on keybed top bar
  • +
  • Display version updated to AW-200. New manual/user-guide coming soon.
  • +
+
+

HotFix:

diff --git a/meson.build b/meson.build index c5167beb..aa4b30be 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project ( 'com.github.subhadeepjasu.ensembles', 'c', 'vala', - version: '0.0.16', + version: '0.0.17', ) # Common Display Version diff --git a/screenshots/Screenshot.png b/screenshots/Screenshot.png index 95f61337..b519c7e5 100644 Binary files a/screenshots/Screenshot.png and b/screenshots/Screenshot.png differ diff --git a/screenshots/ScreenshotChannelModulators.png b/screenshots/ScreenshotChannelModulators.png index 6e4b6f30..70b1e9dc 100644 Binary files a/screenshots/ScreenshotChannelModulators.png and b/screenshots/ScreenshotChannelModulators.png differ diff --git a/screenshots/ScreenshotLFO.png b/screenshots/ScreenshotLFO.png index 6197f33f..e51b3571 100644 Binary files a/screenshots/ScreenshotLFO.png and b/screenshots/ScreenshotLFO.png differ diff --git a/screenshots/ScreenshotMultiTrackRecorder.png b/screenshots/ScreenshotMultiTrackRecorder.png index 6008fa22..58d99652 100644 Binary files a/screenshots/ScreenshotMultiTrackRecorder.png and b/screenshots/ScreenshotMultiTrackRecorder.png differ diff --git a/screenshots/ScreenshotStyles.png b/screenshots/ScreenshotStyles.png index 05778d43..210921ad 100644 Binary files a/screenshots/ScreenshotStyles.png and b/screenshots/ScreenshotStyles.png differ diff --git a/screenshots/ScreenshotVoice.png b/screenshots/ScreenshotVoice.png new file mode 100644 index 00000000..11694cd6 Binary files /dev/null and b/screenshots/ScreenshotVoice.png differ