Skip to content

Commit

Permalink
release 3.25.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0w committed Aug 11, 2022
1 parent e3f1402 commit c062e2d
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 4 deletions.
69 changes: 69 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,72 @@
Overview of Changes in CTK+ 3.25.3
===================================

* ctk3-sections: add 'ctk_dialog_add_button_with_icon_name'

* ctkdialog:
- move function 'ctk_dialog_add_button_with_icon_name'

* update AUTHORS

* Fix ctk website links

* README: remove info about mailing lists

* Fix [-Wmissing-field-initializers] warnings

* testctk: Fix CtkActionEntry with label 'entry'

* adapt debian patches from gtk+3.0 (3.24.24-4+deb11u1) and (3.24.24-4+deb11u2)

* ctkprintbackendcups: reduce the scope of some variables

* ci: add aptitude

* reftests,symbolic-icon-translucent-color: update icon

* don't make deprecated:
- cdkcolor
- cdk_cairo_set_source_color
- cdk_display_get_pointer
- cdk_display_get_window_at_pointer
- cdk_display_keyboard_ungrab
- cdk_display_pointer_ungrab
- cdk_display_pointer_is_grabbed
- cdk_display_warp_pointer
- cdk_keyboard_grab
- cdk_keyboard_ungrab
- cdk_pointer_grab
- cdk_pointer_is_grabbed
- cdk_pointer_ungrab
- cdk_window_at_pointer
- cdk_window_get_pointer
- cdk_window_process_all_updates
- cdk_window_process_updates
- cdk_window_set_debug_updates
- ctkalignment
- ctkcolorbutton
- ctkcolorsel
- ctkcolorseldialog
- ctk_button_new_from_stock
- ctk_container_get_focus_chain
- ctk_container_set_focus_chain
- ctk_container_unset_focus_chain
- ctk_dialog_get_action_area
- ctk_menu_popup
- ctk_menu_popup_for_device
- ctk_message_dialog_get_image
- ctk_message_dialog_set_image
- ctk_style_context_get_background_color
- ctk_widget_override_background_color
- ctk_widget_override_color

* Avoid deprecated in the inline comments if no deprecation guards were found around the declaration

* avoid unneeded G_GNUC_BEGIN/END_IGNORE_DEPRECATIONS at some points

* Update translations


Overview of Changes in CTK+ 3.25.2
===================================

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

m4_define([ctk_major_version], [3])
m4_define([ctk_minor_version], [25])
m4_define([ctk_micro_version], [2])
m4_define([ctk_interface_age], [0])
m4_define([ctk_micro_version], [3])
m4_define([ctk_interface_age], [1])
m4_define([ctk_binary_age],
[m4_eval(100 * ctk_minor_version + ctk_micro_version)])
m4_define([ctk_version],
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('ctk+-3.0', 'c',
version: '3.25.2',
version: '3.25.3',
default_options: [
'buildtype=debugoptimized',
'warning_level=1'
Expand Down Expand Up @@ -52,7 +52,7 @@ ctk_version = meson.project_version()
ctk_major_version = ctk_version.split('.')[0].to_int()
ctk_minor_version = ctk_version.split('.')[1].to_int()
ctk_micro_version = ctk_version.split('.')[2].to_int()
ctk_interface_age = 0
ctk_interface_age = 1
add_project_arguments('-DCTK_VERSION="@0@"'.format(meson.project_version()), language: 'c')

add_project_arguments('-D_GNU_SOURCE', language: 'c')
Expand Down

0 comments on commit c062e2d

Please sign in to comment.