Skip to content

Commit

Permalink
Update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiko2k committed Sep 4, 2022
1 parent d0f5582 commit 7c41c12
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion extra/com.github.taiko2k.tauonmb.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

<releases>

<release version="7.4.0" date="2022-08-12">
<release version="7.4.0" date="2022-09-04">
<description>
<ul>
<li>Improved Chromecast support</li>
Expand Down
6 changes: 3 additions & 3 deletions src/phazor/phazor.c
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ int get_audio(int max, float* buff){
void data_callback(ma_device* pDevice, void* pOutput, const void* pInput, ma_uint32 frameCount){

int b = get_audio(frameCount * 2, pOutput);
if (0 < b && b < frameCount) printf("ph: Buffer underrun\n");
//if (0 < b && b < frameCount) printf("ph: Buffer underrun\n");
}


Expand Down Expand Up @@ -1131,7 +1131,7 @@ void connect_pulse() {
}
}

printf("ph: Connect device\n");
//printf("ph: Connect device\n");

ma_context_config c_config = ma_context_config_init();
c_config.pulse.pApplicationName = "Tauon Music Box";
Expand Down Expand Up @@ -1166,7 +1166,7 @@ void connect_pulse() {
}

//dev = config_output_sink;
printf("ph: Using samplerate %uhz\n", device.sampleRate);
printf("ph: Connected using samplerate %uhz\n", device.sampleRate);

sample_rate_out = device.sampleRate;
current_sample_rate = sample_rate_out;
Expand Down
5 changes: 3 additions & 2 deletions t_modules/t_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,10 +797,11 @@ def no_padding(info):
import_cursors = False

if desktop == "GNOME":
print("Using crash workaround for gdk crash")
#print("Using crash workaround for gdk")
import_cursors = True

if import_cursors and system == "linux" and not macos and not msys:
# broken?
c_br = cursor_get_gdk(4)
c_rs = cursor_get_gdk(8)
c_ts = cursor_get_gdk(9)
Expand Down Expand Up @@ -6017,7 +6018,7 @@ def test_progress(self):

id = self.advance(quiet=True, end=True, dry=True)
if id is not None and not spot_ctl.playing:
print("Commit")
#print("Commit")
self.commit = id
target = self.g(id)
self.target_open = target.fullpath
Expand Down

0 comments on commit 7c41c12

Please sign in to comment.