diff options
author | raveit65 <[email protected]> | 2019-06-07 16:33:06 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-06-07 16:33:53 +0200 |
commit | e8457406d0877d6a96bfb754d2be3f214bed45d7 (patch) | |
tree | 7d2fcc790f6fc1c76282071db6df7ce8a0dae4eb | |
parent | 29a5e0b6162594e1e921d8d2b4cdf1973c2a33e8 (diff) | |
download | marco-e8457406d0877d6a96bfb754d2be3f214bed45d7.tar.bz2 marco-e8457406d0877d6a96bfb754d2be3f214bed45d7.tar.xz |
release 1.23.1v1.23.1
-rw-r--r-- | NEWS | 66 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 67 insertions, 1 deletions
@@ -1,3 +1,69 @@ +### marco 1.23.1 + + * tx: sync with transifex + * Make alt+tab max columns configurable and consider window label width + * add invisible-border + * theme: Fix window state when tiling from maximized + * compositor: fix possible crash closing/destroying window + * update window->has_resize_func at the right time when unfullscreening + * frames: include invisible area in cache + * frames: Rename layout to text_layout + * frames: again change meta_frames_applet_shapes + * Fix scaling overcorrection when caching frame borders + * compositor: fix border_size + * frame: make frame window transparent + * frames: apply shapes in different way + * frames: add dest_kind to apply_cairo_region_to_window + * frames: Fall back to title bar if nothing else matched + * theme-viewer: Fix invisible borders + * window: Correct coordinates for the configure event + * frame: Make sure to offset by invisible borders when unmanaging windows + * window: Fix _NET_FRAME_EXTENTS to work properly + * theme: don't add invisible borders for windows that can't be resized + * window: Fix window placement to exclude invisible borders + * theme: Don't add any bottom border to shaded windows + * Account for invisible borders when constraining modal dialogs + * compositor: fix shadow size and placement + * MetaWindow: Repurpose get_outer_rect and add get_input_rect + * MetaWindow: Compensate for invisible border changes + * ui: Replace inline borders in MetaFrameGeometry with MetaFrameBorder + * MetaFrameBorders: add invisible borders + * theme: add invisible_border to metacity theme + * compositor: don't draw shadow under decorations + * compositor: add function to convert cairo region to xserver region + * constraints: fix mem leak in meta_window_constrain() + * MetaFrames: factor out MetaUIFrame accessors for borders, corner radiuses + * frame: Add "get_corner_radiuses" chain + * frame: destroy window->frame_bounds when destroying the frame + * Only shadow ARGB windows with a frame outside the frame + * Fix XShape + * compositor: don't draw shadow under windows + * constraints: initialize window->user_rect in initial placement + * theme: Make meta_frame_draw_theme take a GtkStyleContext instead of a widget + * build everything as library + * Allow raise_on_click to be set independent of focus_mode + * window: initialize few variables + * frames: Explicitly initialize style contexts + * fix a crash-on-exit + * ui-frame: Add support for style variants + * ui-frames: Delay attaching the style to new frames + * core: Update frame style when _GTK_THEME_VARIANT changes + * ui: Add meta_ui_update_frame_style() + * core: Allow retrieving the theme variant via core_get() + * window: Parse _GTK_THEME_VARIANT property + * MetaFrameBorders: Add meta_frame_borders_clear + * Replace public MetaFrameGeometry with MetaFrameBorders + * alt+tab popup: bugfix mouse click handling for scale factor > 1 + * alt+tab popup: follow mouse while mouse button is pressed + * Handle mouse clicks in Alt+Tab Popup + * Allow use of up/down arrow keys in alt+tab popup + * libmetacity: use cairo to render gradient + * gradient: sync code with mutter before it was removed + * fix window type for splash + * Fix Could not parse desktop file marco.desktop + * travis: use fedora-30 and ubuntu-19.10 for building + * Migrate from intltool to gettext + ### marco 1.23.0 * tx: sync with transifex diff --git a/configure.ac b/configure.ac index d66c95bb..040383b8 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ(2.50) m4_define([marco_major_version], [1]) m4_define([marco_minor_version], [23]) -m4_define([marco_micro_version], [0]) +m4_define([marco_micro_version], [1]) m4_define([marco_version], [marco_major_version.marco_minor_version.marco_micro_version]) |