Skip to content

Commit a0a964b

Browse files
committed
Released Version 0.2.4
This release is a small update that restores the default ESC key behavior. ### Changed: - Removed the forced fullscreen exit when pressing the ESC key. - Developers should now control this behavior using the `ExitFullscreen` API in JavaScript.
1 parent 661912e commit a0a964b

20 files changed

Lines changed: 34 additions & 26 deletions

assets/docs/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,19 @@ weaving elegance and stability into foobar2000’s ethereal form.*
4242
<br>
4343
<br>
4444

45+
## Version 0.2.4 - 16-12-2025
46+
This release is a small update that restores the default ESC key behavior.
47+
48+
<br>
49+
50+
### Changed:
51+
- Removed the forced fullscreen exit when pressing the ESC key.
52+
- Developers should now control this behavior using the `ExitFullscreen` API in JavaScript.
53+
54+
55+
<br>
56+
<br>
57+
4558
## Version 0.2.3 - 08-11-2025
4659
This release is a hotfix addressing fullscreen and window state issues.
4760

src/API/MyCOM.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// * Description:    MyCOM Source File                          * //
44
// * Author:         TT                                                      * //
55
// * Website:        https://github.com/The-Wizardium/UI-Wizard         * //
6-
// * Version:        0.2.3                                             * //
6+
// * Version:        0.2.4                                             * //
77
// * Dev. started:   12-12-2024                                              * //
88
// * Last change:    08-11-2025                                              * //
99
/////////////////////////////////////////////////////////////////////////////////

src/API/MyCOM.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// * Description:    MyCOM Header File                          * //
44
// * Author:         TT                                                      * //
55
// * Website:        https://github.com/The-Wizardium/UI-Wizard         * //
6-
// * Version:        0.2.3                                             * //
6+
// * Version:        0.2.4                                             * //
77
// * Dev. started:   12-12-2024                                              * //
88
// * Last change:    16-09-2025                                              * //
99
/////////////////////////////////////////////////////////////////////////////////

src/API/MyCOM.idl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// * Description: � �MyCOM Type Library File � � � � � � � � � � � � �* //
44
// * Author: � � � � TT � � � � � � � � � � � � � � � � � � � � � � � � � � �* //
55
// * Website: � � � �https://github.com/The-Wizardium/UI-Wizard � � � � * //
6-
// * Version: � � � �0.2.3 � � � � � � � � � � � � � � � � � � � � � � * //
6+
// * Version: � � � �0.2.4 � � � � � � � � � � � � � � � � � � � � � � * //
77
// * Dev. started: � 12-12-2024 � � � � � � � � � � � � � � � � � � � � � � �* //
88
// * Last change: � �16-09-2025 � � � � � � � � � � � � � � � � � � � � � � �* //
99
/////////////////////////////////////////////////////////////////////////////////

src/Main/UIW.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// * Description:    UI Wizard Source File                      * //
44
// * Author:         TT                                                      * //
55
// * Website:        https://github.com/The-Wizardium/UI-Wizard         * //
6-
// * Version:        0.2.3                                             * //
6+
// * Version:        0.2.4                                             * //
77
// * Dev. started:   12-12-2024                                              * //
88
// * Last change:    08-11-2025                                              * //
99
/////////////////////////////////////////////////////////////////////////////////
@@ -21,7 +21,7 @@
2121
/////////////////////////
2222
#pragma region Component Setup
2323
DECLARE_COMPONENT_VERSION(
24-
"UI Wizard", "0.2.3",
24+
"UI Wizard", "0.2.4",
2525

2626
"UI Wizard \n"
2727
"The Sapphire Spell Of Interface Enchantment \n"

src/Main/UIW.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// * Description:    UI Wizard Header File                      * //
44
// * Author:         TT                                                      * //
55
// * Website:        https://github.com/The-Wizardium/UI-Wizard         * //
6-
// * Version:        0.2.3                                             * //
6+
// * Version:        0.2.4                                             * //
77
// * Dev. started:   12-12-2024                                              * //
88
// * Last change:    01-09-2025                                              * //
99
/////////////////////////////////////////////////////////////////////////////////

src/Main/UIW_Callbacks.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// * Description:    UI Wizard Callbacks Source File                      * //
44
// * Author:         TT                                                      * //
55
// * Website:        https://github.com/The-Wizardium/UI-Wizard         * //
6-
// * Version:        0.2.3                                             * //
6+
// * Version:        0.2.4                                             * //
77
// * Dev. started:   12-12-2024                                              * //
88
// * Last change:    01-09-2025                                              * //
99
/////////////////////////////////////////////////////////////////////////////////

src/Main/UIW_Callbacks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// * Description:    UI Wizard Callbacks Header File                      * //
44
// * Author:         TT                                                      * //
55
// * Website:        https://github.com/The-Wizardium/UI-Wizard         * //
6-
// * Version:        0.2.3                                             * //
6+
// * Version:        0.2.4                                             * //
77
// * Dev. started:   12-12-2024                                              * //
88
// * Last change:    01-09-2025                                              * //
99
/////////////////////////////////////////////////////////////////////////////////

src/Main/UIW_Helpers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// * Description:    UI Wizard Helpers Source File                      * //
44
// * Author:         TT                                                      * //
55
// * Website:        https://github.com/The-Wizardium/UI-Wizard         * //
6-
// * Version:        0.2.3                                             * //
6+
// * Version:        0.2.4                                             * //
77
// * Dev. started:   12-12-2024                                              * //
88
// * Last change:    08-11-2025                                              * //
99
/////////////////////////////////////////////////////////////////////////////////

src/Main/UIW_Helpers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// * Description:    UI Wizard Helpers Header File                      * //
44
// * Author:         TT                                                      * //
55
// * Website:        https://github.com/The-Wizardium/UI-Wizard         * //
6-
// * Version:        0.2.3                                             * //
6+
// * Version:        0.2.4                                             * //
77
// * Dev. started:   12-12-2024                                              * //
88
// * Last change:    19-09-2025                                              * //
99
/////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)