mirror of
https://github.com/VincentWei/MiniGUI.git
synced 2026-09-23 16:43:58 +08:00
notes for ver-4-0-1
This commit is contained in:
@@ -1,5 +1,24 @@
|
||||
# Release Notes
|
||||
|
||||
## Version 4.0.1
|
||||
|
||||
The MiniGUI development team announces the availability of MiniGUI 4.0.0.
|
||||
We strongly recommend that you use this version for any new MiniGUI
|
||||
apps, especially if the new features of MiniGUI 4.0.0 are must for your
|
||||
new apps.
|
||||
|
||||
Please report any bugs and incompatibilities in
|
||||
|
||||
https://github.com/VincentWei/minigui
|
||||
|
||||
### What's new in this version
|
||||
|
||||
This version mainly fixed some minor issues:
|
||||
|
||||
- Use FVN algorithm to implement Str2Key.
|
||||
- Tune some API description.
|
||||
- Tune format string to use '%z' instead of '%l' or '%ll' for `size_t` values.
|
||||
|
||||
## Version 4.0.0
|
||||
|
||||
The MiniGUI development team announces the availability of MiniGUI 4.0.0.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Version 4.0.0 (2019/06/30)
|
||||
Version 4.0.1 (2019/07/31)
|
||||
|
||||
This release needs the following resource packages:
|
||||
|
||||
@@ -6,4 +6,4 @@ This release needs the following resource packages:
|
||||
|
||||
The latest samples package is:
|
||||
|
||||
* mg-samples-4.0.0.tar.gz
|
||||
* mg-samples-4.0.1.tar.gz
|
||||
|
||||
+4
-4
@@ -1,6 +1,6 @@
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
AC_PREREQ(2.60)
|
||||
AC_INIT(libminigui, 4.0.0)
|
||||
AC_INIT(libminigui, 4.0.1)
|
||||
AC_CONFIG_SRCDIR(src/main/main.c)
|
||||
|
||||
dnl Set various version strings - taken gratefully from the SDL sources
|
||||
@@ -16,9 +16,9 @@ dnl Set various version strings - taken gratefully from the SDL sources
|
||||
#
|
||||
MINIGUI_MAJOR_VERSION=4
|
||||
MINIGUI_MINOR_VERSION=0
|
||||
MINIGUI_MICRO_VERSION=0
|
||||
MINIGUI_INTERFACE_AGE=0
|
||||
MINIGUI_BINARY_AGE=0
|
||||
MINIGUI_MICRO_VERSION=1
|
||||
MINIGUI_INTERFACE_AGE=1
|
||||
MINIGUI_BINARY_AGE=1
|
||||
MINIGUI_VERSION=$MINIGUI_MAJOR_VERSION.$MINIGUI_MINOR_VERSION.$MINIGUI_MICRO_VERSION
|
||||
|
||||
AC_SUBST(MINIGUI_MAJOR_VERSION)
|
||||
|
||||
Reference in New Issue
Block a user