Skip to content

Commit

Permalink
Merge pull request #54 from SubhadeepJasu/settings
Browse files Browse the repository at this point in the history
Fix function pointer bug, lower refresh rate of Recorder progress UI.
  • Loading branch information
SubhadeepJasu committed Nov 23, 2021
2 parents 15f0d10 + e7ee975 commit e7981af
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions data/com.github.subhadeepjasu.ensembles.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@
<content_attribute id="money-gambling">none</content_attribute>
</content_rating>
<releases>
<release version="0.0.16" date="2021-11-24">
<description>
<p>HotFix:</p>
<ul>
<li>Fixed a memory issue with style engine that only appears in flatpak build and causes crashes</li>
</ul>
</description>
</release>
<release version="0.0.15" date="2021-11-21">
<description>
<p>New:</p>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
project (
'com.github.subhadeepjasu.ensembles',
'c', 'vala',
version: '0.0.15',
version: '0.0.16',
)

# GNOME module
Expand Down
2 changes: 1 addition & 1 deletion src/Core/MidiRecorder.vala
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ namespace Ensembles.Core {
if (current_state == RecorderState.STOPPED) {
break;
}
Thread.usleep (10000);
Thread.usleep (45454);
if (current_state == RecorderState.STOPPED) {
break;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Core/style_player.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ int style_original_chord_main = 0;
typedef void
(*style_player_change_state_callback)(gint state);

style_player_change_state_callback state_change_callback;
static style_player_change_state_callback state_change_callback;

void
set_style_change_callback (style_player_change_state_callback callback) {
Expand Down
2 changes: 1 addition & 1 deletion src/Core/synthesizer.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ typedef void
gfloat** output_r,
gint* output_r_length1);

synthesizer_fx_callback fx_callback;
static synthesizer_fx_callback fx_callback;

void
set_fx_callback (synthesizer_fx_callback callback) {
Expand Down

0 comments on commit e7981af

Please sign in to comment.