I miss Linux. As soon as I'm back on Linux, Buzztrax will be one of the first things to get installed. I plan to buy a new Linux workstation very soon . Can't wait! I'm really glad such a program as Buzztrax exists, and is open source on top of it.
I sold my devices when I needed cash, living barely by my means (which was fun), and then I got a job and work has given me MacBooks. But the latest MacBooks are so far impossible to install Linux on, due to the new Apple T2 security module. There's nothing on ArchLinux on how to get passed that yet.
ZBook Studio x360 G5 with Intel® Core™ i9-8950HK processor (2.9 GHz, up to 4.8 GHz with Turbo Boost, 12 MB cache, 6 core) + NVIDIA® Quadro® P2000 (4 GB GDDR5 dedicated) (5SJ36AV)
, with selected 64GB RAM, and 4k "DreamColor" display. This one, after configuration.
Right laptop. I not sure whats the situation with the new Ryzen CPU and the new Navi GPUs for laptops. I just brought a new desktop, so that my kids can play the latest games. Steam works better on linux every day :)
Huh! Been a while since I tried Steam, back in the day when I was playing Day of Defeat (Half Life mod).
4GB GPU mem is okay for everything but games
Yeah, but still like having 6 integrated intel GPUs, which is better than one of those. I guess that's the best one that's available on an all-in-one laptop/tablet combo so far.
@ensonic Hello!
Any ideas about this? Buzztrax/buzztrax#91 I'm looking forward to getting it back up and running now that I'm in Linux! :D
glib
error like in the GitHub issue, but I do get a couple errors like this before it quits with error state:tests/bt-check.h:153:5: error: too many arguments to function ‘_tcase_add_test’
153 | _tcase_add_test (tc, tf, fname, signal, allowed_exit_value, start, end);
| ^~~~~~~~~~~~~~~
Hey there Stefan, I'm still poking around Buzztrax from time to time. I was using "pulsesrc" in a song, I think that's a regular gstreamer plugin, and I found that it only worked if I created it straight away in the song. If I save and then load again, the pulsesrc plugin fails to start:
ERROR: Failed to connect: Invalid argument (GStreamer encountered a general resource error.)
Finally, I found that if I removed the saved pulsesrc properties "server" and "device" from the saved file then that solved the problem. What do you think might be going on here?
Also, would you mind if we saved the songs pretty-printed? It makes debugging a lot easier. It's an easy change in song-io-native-xml.c
: from xmlSaveFile
to xmlSaveFormatFile (file_name, song_doc, 1)
Hello, I think there might be an issue with the UI interactions for the boolean parameter types. Both button-release-event
and toggled
events are connected on the checkbox, and it seems button release is fired before the toggle one. It's in on_button_release_event
that update_param_after_interaction
is called, but at that stage the value of the property hasn't been updated because on_checkbox_property_toggled
hasn't been called. The effect is for the parameter to take on the value of the checkbox at the last click, not the current click.
For now I've just commented out button-release-event
for the checkbox and restored the call to update_param_after_interaction
in on_checkbox_property_toggled
, but please let me know if there's a better fix.