2.0
This commit is contained in:
parent
c7ec3b8023
commit
8e019efed9
3 changed files with 13 additions and 11 deletions
|
|
@ -12,13 +12,15 @@ Other changes include:
|
||||||
- `MW_FORCE_CSD` (Linux only): set to force the wayland backend to use CSD instead of SSD
|
- `MW_FORCE_CSD` (Linux only): set to force the wayland backend to use CSD instead of SSD
|
||||||
- `MILSKO_BACKEND` has been renamed to `MW_BACKEND`
|
- `MILSKO_BACKEND` has been renamed to `MW_BACKEND`
|
||||||
- Redesigned look for radioboxes and checkboxes in the modern theme
|
- Redesigned look for radioboxes and checkboxes in the modern theme
|
||||||
- Clock Widget
|
- Clock Widget (MwClockClass)
|
||||||
- Chart Widgets
|
- Chart Widgets (MwChartClass)
|
||||||
- Bar Chart (2D or 3D)
|
- Bar Chart (MwCHART_BAR or MwCHART_BAR3D)
|
||||||
- Pie Chart (2D or 3D)
|
- Pie Chart (MwCHART_PIE or MwCHART_PIE3D)
|
||||||
- Line Chart
|
- Line Chart (MwCHART_LINE)
|
||||||
- New "Document" widget that supports markdown.
|
- Document widget (MwDocumentClass) - text box widget that supports markdown.
|
||||||
- New Direct3D9 helper widget that allows you to use Direct3D9 (Windows only)
|
- Direct3D9 widget (MwDirect3D9Class) - helper widget that sets up a D3D9 context for you (Windows only)
|
||||||
|
- Dark theme now uses Catppuccin Mocha theme
|
||||||
|
- MwNstrikethrough and MwNunderline now work on all text-based widgets
|
||||||
- Stability/performance fixes for the Wayland backend, most likely for the last time.
|
- Stability/performance fixes for the Wayland backend, most likely for the last time.
|
||||||
|
|
||||||
========================= 1.4 =========================
|
========================= 1.4 =========================
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
Greetings - Welcome to the Milsko GUI Toolkit (Version 1.4)
|
Greetings - Welcome to the Milsko GUI Toolkit (Version 2.0)
|
||||||
|
|
||||||
This document contains a brief summary of the contents of this source
|
This document contains a brief summary of the contents of this source
|
||||||
distributions and building instructions for Milsko GUI Toolkit.
|
distributions and building instructions for Milsko GUI Toolkit.
|
||||||
|
|
|
||||||
|
|
@ -8,12 +8,12 @@
|
||||||
/*!
|
/*!
|
||||||
* @brief Major version
|
* @brief Major version
|
||||||
*/
|
*/
|
||||||
#define MwMAJOR 1
|
#define MwMAJOR 2
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Minor version
|
* @brief Minor version
|
||||||
*/
|
*/
|
||||||
#define MwMINOR 3
|
#define MwMINOR 0
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Patchlevel of version, if patchlevel_alphabet is a or bigger, this value is calculated by `patchlevel_alphabet - 'a' + 1`. Otherwise 0
|
* @brief Patchlevel of version, if patchlevel_alphabet is a or bigger, this value is calculated by `patchlevel_alphabet - 'a' + 1`. Otherwise 0
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
/*!
|
/*!
|
||||||
* @brief Version in string
|
* @brief Version in string
|
||||||
*/
|
*/
|
||||||
#define MwVERSION "1.4"
|
#define MwVERSION "2.0"
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Version in string
|
* @brief Version in string
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue