~quequotion/plank:instance_controls

Last commit made on 2020-09-13
Get this branch:
git clone -b instance_controls https://git.launchpad.net/~quequotion/plank
Only quequotion can upload to this branch. If you are quequotion please log in for upload directions.

Branch merges

Branch information

Name:
instance_controls
Repository:
lp:~quequotion/plank

Recent commits

bba6dca... by quequotion

Add window controls to instance menu items /as a submenu/

Currently only "Close", "Switch to", and "Minimize".

The submenu is required to have a "close instance" feature.

Gtk won't allow a button on a MenuItem. Unfortunately, submenus
break MenuItem's .activate.connnect() signal--contrary to how
this is documented--so window switching also had to move from the
window_item into the submenu. I wanted "minimize active instance"
to happen on the window_item as well, but for the same reason it
must be done in the submenu.

It isn't as pretty as what I had in mind, but it does *work*.

20c16a0... by Rico Tzschichholz

build: Update git-version-gen to latest upstream

From commit 8a09003664733eb6bef031f56ef9cd575e403023 of
https://git.savannah.gnu.org/cgit/autoconf.git/tree/build-aux/git-version-gen

2ae156a... by Rico Tzschichholz

Back to development

469240e... by Rico Tzschichholz

po: Update translations

5967798... by Rico Tzschichholz

applications: Properly handle possible error of GMenu.Tree.load_sync()

Prevent crash on "g_mutex_clear() called on uninitialised or locked mutex"

248cc4a... by Rico Tzschichholz

build: Allow building with gettext ≥ 0.20

The use of AM_GNU_GETTEXT_VERSION in configure.ac instructs autopoint to
copy po/Makefile.in.in from the exact gettext version. It is fine if the
version of gettext installed on the system has the same minor version
number with the requested version, but it fails if you have a newer
version of gettext because of the mismatch between autoconf macros and
Makefile.in.in.

  *** error: gettext infrastructure mismatch: using a Makefile.in.in
  from gettext version 0.19 but the autoconf macros are from gettext
  version 0.20

Instead of specifying the exact version with AM_GNU_GETTEXT_VERSION, we
can use AM_GNU_GETTEXT_REQUIRE_VERSION to ask autopoint to simply use
the gettext version installed on the system to prevent the mismatch.

27c7863... by Rico Tzschichholz

Prepare 0.11.89 release

226a0a2... by Rico Tzschichholz

windowcontrol: Don't call center_and_focus_window() twice with targetWindow

96bbb1d... by Adam Bieńkowski

theme: Add "BadgeColor" option

If not set to "black" then this color will use as background color
for the badge instead of a color based on active GTK theme.

fb624c2... by Rico Tzschichholz

Constructors of abstract classes should not be public