Skip to content

Commit

Permalink
0.1.1-alpha released! (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebasconp authored Jan 2, 2025
1 parent 0f645eb commit 9533a0c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# CHANGELOG #

### 0.1.1-alpha released (20250101):
* 20250101 added `event_listener_scope_guard`

* 20241230 added `layer_manager` to handle layers
* 20241220 created `system_backend` containing SDL2 event loop
* 20241212 removed `ui_manager` singleton. Now is injected through all controls.
* 20241206 renamed `main_window` to `main_pane`
* 20241201 0.1.0-alpha released
* 20241206 removed `main_window`. Everything is a layer now

### 0.1.0-alpha released (20241201):
* 20241128 added `captionable_control::set_formatted_text` template method
* 20241128 added `clsn::system::get_build_id()` and `clsn::system::get_version()`
* 20241127 fix crash when resetting parent window and mouse grabbed
Expand Down
4 changes: 2 additions & 2 deletions code/classeine-lib/clsn/core/classeine_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
namespace clsn::core
{
// next release: 0.2.0-alpha
constexpr std::string_view classeine_version = "0.1.999";
constexpr bool classeine_released = false;
constexpr std::string_view classeine_version = "0.1.1-alpha";
constexpr bool classeine_released = true;
}

0 comments on commit 9533a0c

Please sign in to comment.