mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-09 18:30:08 +00:00
Start 4.12 development
This commit is contained in:
parent
7ed8c5b6c7
commit
93edb08094
2
NEWS
2
NEWS
@ -1,4 +1,4 @@
|
||||
Overview of Changes in 4.10.2, xx-xx-xxxx
|
||||
Overview of Changes in 4.11.1, xx-xx-xxxx
|
||||
=========================================
|
||||
|
||||
Overview of Changes in 4.10.1, 14-03-2023
|
||||
|
@ -128,6 +128,16 @@
|
||||
*/
|
||||
#define GDK_VERSION_4_10 (G_ENCODE_VERSION (4, 10))
|
||||
|
||||
/**
|
||||
* GDK_VERSION_4_12:
|
||||
*
|
||||
* A macro that evaluates to the 4.12 version of GDK, in a format
|
||||
* that can be used by the C pre-processor.
|
||||
*
|
||||
* Since: 4.12
|
||||
*/
|
||||
#define GDK_VERSION_4_12 (G_ENCODE_VERSION (4, 12))
|
||||
|
||||
|
||||
/* evaluates to the current stable version; for development cycles,
|
||||
* this means the next stable target, with a hard backstop to the
|
||||
@ -297,4 +307,18 @@
|
||||
# define GDK_DEPRECATED_IN_4_10_FOR(f) _GDK_EXTERN
|
||||
#endif
|
||||
|
||||
#if GDK_VERSION_MAX_ALLOWED < GDK_VERSION_4_12
|
||||
# define GDK_AVAILABLE_IN_4_12 GDK_UNAVAILABLE(4, 12)
|
||||
#else
|
||||
# define GDK_AVAILABLE_IN_4_12 _GDK_EXTERN
|
||||
#endif
|
||||
|
||||
#if GDK_VERSION_MIN_REQUIRED >= GDK_VERSION_4_12
|
||||
# define GDK_DEPRECATED_IN_4_12 GDK_DEPRECATED
|
||||
# define GDK_DEPRECATED_IN_4_12_FOR(f) GDK_DEPRECATED_FOR(f)
|
||||
#else
|
||||
# define GDK_DEPRECATED_IN_4_12 _GDK_EXTERN
|
||||
# define GDK_DEPRECATED_IN_4_12_FOR(f) _GDK_EXTERN
|
||||
#endif
|
||||
|
||||
#endif /* __GDK_VERSION_MACROS_H__ */
|
||||
|
@ -1,5 +1,5 @@
|
||||
project('gtk', 'c',
|
||||
version: '4.10.2',
|
||||
version: '4.11.1',
|
||||
default_options: [
|
||||
'buildtype=debugoptimized',
|
||||
'warning_level=1',
|
||||
|
@ -1 +1 @@
|
||||
invalid5.ui:3:1 Required GTK version 5.10, current version is 4.10
|
||||
invalid5.ui:3:1 Required GTK version 5.10, current version is 4.11
|
||||
|
Loading…
Reference in New Issue
Block a user