From ca9acf02ff0c98bca8437cb30e6b3bb97e3d12ab Mon Sep 17 00:00:00 2001 From: Jules Fouchy Date: Sat, 9 Dec 2023 17:41:17 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20[beta-10]=20Release?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CMakeLists.txt | 2 +- changelog.md | 6 ++++-- src/main.cpp | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f6700354..c7c52aa2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.20) project(Coollab) -set(COOLLAB_VERSION "beta-10 WIP") +set(COOLLAB_VERSION "beta-10") add_executable(${PROJECT_NAME}) add_library(Coollab-Properties INTERFACE) # This is needed by both Coollab and its tests target_link_libraries(${PROJECT_NAME} PRIVATE Coollab-Properties) diff --git a/changelog.md b/changelog.md index ca0bbd91..d8a0270d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -- [🐣beta-10 WIP](#beta-10-wip) +- [🐣beta-10](#beta-10) - [🐣beta-9](#beta-9) - [🐣beta-8](#beta-8) - [🐣beta-7](#beta-7) @@ -12,11 +12,13 @@ - [🐣beta-1](#beta-1) - [🐣beta-0](#beta-0) -## 🐣beta-10 WIP +## 🐣beta-10 - ✨ Added Audio support! You can now import an audio file and play it while you generate your images. You can also use its volume and waveform to control your images. You can also receive sound from an input device (microphone, etc.). Check out [our audio tutorial](https://coollab-art.com/Tutorials/Features/Audio) to learn everything about it! +![node_spectrum](https://github.com/CoolLibs/Lab/assets/45451201/17e77692-7941-4983-b2cf-a30b13aeee12) - 🟦 Added new nodes that you can use to display the audio features: "Fill Function", "Function to Shape" and "Add Displacement". - 💄 Added icons in the Commands menu. +![open_audio_config_command](https://github.com/CoolLibs/Lab/assets/45451201/3a49dd4b-1247-4329-8ed0-81004940ae77) - 🐛 Fixed crash on Linux when opening a file explorer. - 🐛 Temporary workaround: on Linux the history isn't saved when closing Coollab, in order to avoid a crash. - 🚚 On Linux, moved user-data folder to *.local/share* diff --git a/src/main.cpp b/src/main.cpp index e3942acb..7bcfdb9f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -27,6 +27,6 @@ auto main(int argc, char** argv) -> int .title = "", // This is set when we load a project. .maximize_on_startup_if = true, }}, - .imgui_ini_version = 1, + .imgui_ini_version = 2, }); } \ No newline at end of file