Porównaj commity

...

3 Commity

Autor SHA1 Wiadomość Data
AlexandreRouma 314d78d9d2
Add another missing include to the spectran source 2024-04-27 07:00:27 +02:00
AlexandreRouma 4e455e6661
Add missing include in spectran source 2024-04-27 06:53:15 +02:00
AlexandreRouma 27072e9fe7 version bump to indicate ABI change. modules just need to be recompiled. 2024-04-23 22:46:43 +02:00
2 zmienionych plików z 7 dodań i 2 usunięć

Wyświetl plik

@ -1,3 +1,3 @@
#pragma once
#define VERSION_STR "1.1.0"
#define VERSION_STR "1.2.0"

Wyświetl plik

@ -9,8 +9,13 @@
#include <gui/smgui.h>
#include <utils/optionlist.h>
#include <codecvt>
#include <locale>
#include <aaroniartsaapi.h>
#ifndef _WIN32
#include <unistd.h>
#endif
#define CONCAT(a, b) ((std::string(a) + b).c_str())
SDRPP_MOD_INFO{
@ -547,4 +552,4 @@ MOD_EXPORT void _DELETE_INSTANCE_(ModuleManager::Instance* instance) {
MOD_EXPORT void _END_() {
config.disableAutoSave();
config.save();
}
}