mirror of
https://gitlab.com/then-try-this/samplebrain.git
synced 2025-05-14 03:17:21 +00:00
Compare commits
6 Commits
v0.18.5_re
...
production
Author | SHA1 | Date | |
---|---|---|---|
|
30e290dcbd | ||
|
032fd7c039 | ||
|
a8ea957f45 | ||
|
edf2071467 | ||
|
2e517e3bff | ||
|
1b766822f6 |
16
README.md
16
README.md
@ -33,7 +33,7 @@ Load the demo using "load session" not "load brain" (sessions contain
|
|||||||
both the target and brain samples). The original samples used to
|
both the target and brain samples). The original samples used to
|
||||||
create the demo session [can be found here for
|
create the demo session [can be found here for
|
||||||
testing](https://static.thentrythis.org/samplebrain/samples/).
|
testing](https://static.thentrythis.org/samplebrain/samples/).
|
||||||
|
|
||||||
# Download
|
# Download
|
||||||
|
|
||||||
As this is experimental non-commercial software (only originally
|
As this is experimental non-commercial software (only originally
|
||||||
@ -41,12 +41,16 @@ written to run on a couple of computers!) you will have to bear with
|
|||||||
us as we gradually stabilise things based on your feedback. There
|
us as we gradually stabilise things based on your feedback. There
|
||||||
might currently be problems running it on 64bit Windows.
|
might currently be problems running it on 64bit Windows.
|
||||||
|
|
||||||
* **Windows**: [samplebrain_0.18.4_win.zip](https://static.thentrythis.org/samplebrain/samplebrain_0.18.4_win.zip)
|
* **Windows**: [samplebrain_0.18.5_win.zip](https://static.thentrythis.org/samplebrain/samplebrain_0.18.5_win.zip)
|
||||||
* **Mac (intel/m1)**: [samplebrain_0.18.4_macintel.zip](https://static.thentrythis.org/samplebrain/samplebrain_0.18.4_macintel.app.zip)
|
* **Mac (intel/m1)**: [samplebrain_0.18.5_macintel.zip](https://static.thentrythis.org/samplebrain/samplebrain_0.18.5_macintel.app.zip)
|
||||||
|
|
||||||
Changes in 0.18.4: New audio device settings window and updated
|
Changes in 0.18.5 (relased 28/10/22):
|
||||||
windows build. Better default block size, tool tip tweaks and fixes
|
|
||||||
for dark themes by [Claude Heiland-Allen](https://mathr.co.uk/).
|
* Target sound filename shown (and tells you if you don't have one)
|
||||||
|
* More soundfile formats supported (aiff,aifc,au,snd,fasttracker xi,flac)
|
||||||
|
* New configurable OSC ports in settings
|
||||||
|
* Warning boxes if the OSC network connection fails
|
||||||
|
* File path memory per-dialog rather than global
|
||||||
|
|
||||||
For old versions see the [changelog](changelog.md)
|
For old versions see the [changelog](changelog.md)
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ void OSC_server::error_handler(int num, const char *msg, const char *path) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int OSC_server::default_handler(const char *path, const char *types, lo_arg **argv,
|
int OSC_server::default_handler(const char *path, const char *types, lo_arg **argv,
|
||||||
int argc, void *data, void *user_data) {
|
int argc, lo_message data, void *user_data) {
|
||||||
OSC_server *server = (OSC_server*)user_data;
|
OSC_server *server = (OSC_server*)user_data;
|
||||||
if (!server) return -1;
|
if (!server) return -1;
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ public:
|
|||||||
bool ok() { return m_server!=NULL; }
|
bool ok() { return m_server!=NULL; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static int default_handler(const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data);
|
static int default_handler(const char *path, const char *types, lo_arg **argv, int argc, lo_message data, void *user_data);
|
||||||
static void error_handler(int num, const char *m, const char *path);
|
static void error_handler(int num, const char *m, const char *path);
|
||||||
|
|
||||||
lo_server_thread m_server;
|
lo_server_thread m_server;
|
||||||
|
@ -1,5 +1,14 @@
|
|||||||
# Changlog
|
# Changlog
|
||||||
|
|
||||||
|
0.18.4
|
||||||
|
|
||||||
|
* **Windows**: [samplebrain_0.18.4_win.zip](https://static.thentrythis.org/samplebrain/samplebrain_0.18.4_win.zip)
|
||||||
|
* **Mac (intel/m1)**: [samplebrain_0.18.4_macintel.zip](https://static.thentrythis.org/samplebrain/samplebrain_0.18.4_macintel.app.zip)
|
||||||
|
|
||||||
|
Changes in 0.18.4: New audio device settings window and updated
|
||||||
|
windows build. Better default block size, tool tip tweaks and fixes
|
||||||
|
for dark themes by [Claude Heiland-Allen](https://mathr.co.uk/).
|
||||||
|
|
||||||
0.18.3
|
0.18.3
|
||||||
|
|
||||||
* **Windows**: [samplebrain_0.18.3_win.zip](https://static.thentrythis.org/samplebrain/samplebrain_0.18.3_win.zip)
|
* **Windows**: [samplebrain_0.18.3_win.zip](https://static.thentrythis.org/samplebrain/samplebrain_0.18.3_win.zip)
|
||||||
|
11
debian/changelog
vendored
11
debian/changelog
vendored
@ -1,6 +1,11 @@
|
|||||||
samplebrain (0.18rc2-1ubuntu0~bionic4) bionic; urgency=medium
|
samplebrain (0.18.5rc1-1ubuntu0~bionic1) bionic; urgency=medium
|
||||||
|
|
||||||
* Initial release
|
* Target sound filename shown (and tells you if you don't have one)
|
||||||
|
* More soundfile formats supported (aiff,aifc,au,snd,fasttracker xi,flac)
|
||||||
|
* New configurable OSC ports in settings
|
||||||
|
* Warning boxes if the OSC network connection fails
|
||||||
|
* File path memory per-dialog rather than global
|
||||||
|
|
||||||
|
-- Dave Griffiths <dave@thentrythis.org> Thu, 29 Oct 2022 08:47:10 +0100
|
||||||
|
|
||||||
-- Dave Griffiths <dave@thentrythis.org> Thu, 08 Sep 2022 13:08:26 +0100
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user