Skip to content

Commit

Permalink
🔖 [beta-10] Release
Browse files Browse the repository at this point in the history
  • Loading branch information
JulesFouchy committed Dec 9, 2023
1 parent 80118de commit ca9acf0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
6 changes: 4 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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*
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});
}

0 comments on commit ca9acf0

Please sign in to comment.