Skip to content

Commit 803b213

Browse files
committed
Version number bumped to 0.63
1 parent 340fb22 commit 803b213

File tree

4 files changed

+42
-16
lines changed

4 files changed

+42
-16
lines changed

ChangeLog

+26
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,29 @@ V0.62 Fixed app icon drawing on non-composited displays.
6262
When an app's windows are minimised by clicking on the app's dock
6363
icon and then maximised by clicking it again, the app window that
6464
was previously active is made active again.
65+
66+
V0.63 Removed the tooltip that appears when the mouse hovers over a docked
67+
app and replaced it with a list of the app's open windows. For
68+
each window, the list displays the app icon, an indicator showing which
69+
window is currently active, the window title, and a close icon.
70+
Clicking the close icon closes the window, clicking anywhere else
71+
makes the window active.
72+
Removed the list of app windows from the applet right click menu as
73+
they are no longer required.
74+
Changed the way the applet works when a running app's dock icon is
75+
clicked. This no longer minimizes/maximises all windows, but simply
76+
activates the app's last active window.
77+
Using the mouse scroll wheel over a running app's dock icon now
78+
scrolls through each of the app's open windows, unminimizing them
79+
and activating them as necessary
80+
.desktop files located in the user's home directory now take
81+
precedence over those located elsewhere in the filesystem. This allows
82+
users to create their own .desktop files (e.g. to customize an app's icon)
83+
and have them recognized by the applet
84+
Changed factory service file to explicitly invoke applet with python 3
85+
The applet now saves its settings in ~/.config/mate_dock_applet.conf
86+
as well as in dconf. On first being added to a panel, the applet
87+
checks to see if this file exists and if it does it offers to use this
88+
configuration. This allows e.g. an easy way to restore the applet
89+
after an accidental deletion from the panel, and also a way to move
90+
applet configurations from one computer to another.

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ AUTOHEADER = ${SHELL} /home/robin/devel/dock_applet/missing autoheader
205205
AUTOMAKE = ${SHELL} /home/robin/devel/dock_applet/missing automake-1.15
206206
AWK = gawk
207207
CYGPATH_W = echo
208-
DEFS = -DPACKAGE_NAME=\"Dock\ Applet\" -DPACKAGE_TARNAME=\"dock-applet\" -DPACKAGE_VERSION=\"0.62\" -DPACKAGE_STRING=\"Dock\ Applet\ 0.62\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dock-applet\" -DVERSION=\"0.62\"
208+
DEFS = -DPACKAGE_NAME=\"Dock\ Applet\" -DPACKAGE_TARNAME=\"dock-applet\" -DPACKAGE_VERSION=\"0.63\" -DPACKAGE_STRING=\"Dock\ Applet\ 0.63\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dock-applet\" -DVERSION=\"0.63\"
209209
ECHO_C =
210210
ECHO_N = -n
211211
ECHO_T =
@@ -224,10 +224,10 @@ MKDIR_P = /usr/bin/mkdir -p
224224
PACKAGE = dock-applet
225225
PACKAGE_BUGREPORT =
226226
PACKAGE_NAME = Dock Applet
227-
PACKAGE_STRING = Dock Applet 0.62
227+
PACKAGE_STRING = Dock Applet 0.63
228228
PACKAGE_TARNAME = dock-applet
229229
PACKAGE_URL =
230-
PACKAGE_VERSION = 0.62
230+
PACKAGE_VERSION = 0.63
231231
PATH_SEPARATOR = :
232232
PKG_CONFIG = /usr/bin/pkg-config
233233
PKG_CONFIG_LIBDIR =
@@ -240,7 +240,7 @@ PYTHON_VERSION = 3.4
240240
SET_MAKE =
241241
SHELL = /bin/sh
242242
STRIP =
243-
VERSION = 0.62
243+
VERSION = 0.63
244244
abs_builddir = /home/robin/devel/dock_applet
245245
abs_srcdir = /home/robin/devel/dock_applet
246246
abs_top_builddir = /home/robin/devel/dock_applet
@@ -272,7 +272,7 @@ oldincludedir = /usr/include
272272
pdfdir = ${docdir}
273273
pkgpyexecdir = ${pyexecdir}/dock-applet
274274
pkgpythondir = ${pythondir}/dock-applet
275-
prefix = /usr/local
275+
prefix = /usr
276276
program_transform_name = s,x,x,
277277
psdir = ${docdir}
278278
pyexecdir = ${exec_prefix}/lib/python3.4/site-packages

configure

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for Dock Applet 0.62.
3+
# Generated by GNU Autoconf 2.69 for Dock Applet 0.63.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -576,8 +576,8 @@ MAKEFLAGS=
576576
# Identity of this package.
577577
PACKAGE_NAME='Dock Applet'
578578
PACKAGE_TARNAME='dock-applet'
579-
PACKAGE_VERSION='0.62'
580-
PACKAGE_STRING='Dock Applet 0.62'
579+
PACKAGE_VERSION='0.63'
580+
PACKAGE_STRING='Dock Applet 0.63'
581581
PACKAGE_BUGREPORT=''
582582
PACKAGE_URL=''
583583

@@ -1217,7 +1217,7 @@ if test "$ac_init_help" = "long"; then
12171217
# Omit some internal or obsolete options to make the list less imposing.
12181218
# This message is too long to be a string in the A/UX 3.1 sh.
12191219
cat <<_ACEOF
1220-
\`configure' configures Dock Applet 0.62 to adapt to many kinds of systems.
1220+
\`configure' configures Dock Applet 0.63 to adapt to many kinds of systems.
12211221
12221222
Usage: $0 [OPTION]... [VAR=VALUE]...
12231223
@@ -1283,7 +1283,7 @@ fi
12831283

12841284
if test -n "$ac_init_help"; then
12851285
case $ac_init_help in
1286-
short | recursive ) echo "Configuration of Dock Applet 0.62:";;
1286+
short | recursive ) echo "Configuration of Dock Applet 0.63:";;
12871287
esac
12881288
cat <<\_ACEOF
12891289
@@ -1370,7 +1370,7 @@ fi
13701370
test -n "$ac_init_help" && exit $ac_status
13711371
if $ac_init_version; then
13721372
cat <<\_ACEOF
1373-
Dock Applet configure 0.62
1373+
Dock Applet configure 0.63
13741374
generated by GNU Autoconf 2.69
13751375
13761376
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1387,7 +1387,7 @@ cat >config.log <<_ACEOF
13871387
This file contains any messages produced by compilers while
13881388
running configure, to aid debugging if configure makes a mistake.
13891389
1390-
It was created by Dock Applet $as_me 0.62, which was
1390+
It was created by Dock Applet $as_me 0.63, which was
13911391
generated by GNU Autoconf 2.69. Invocation command line was
13921392
13931393
$ $0 $@
@@ -2251,7 +2251,7 @@ fi
22512251
22522252
# Define the identity of the package.
22532253
PACKAGE='dock-applet'
2254-
VERSION='0.62'
2254+
VERSION='0.63'
22552255
22562256
22572257
cat >>confdefs.h <<_ACEOF
@@ -3406,7 +3406,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
34063406
# report actual input values of CONFIG_FILES etc. instead of their
34073407
# values after options handling.
34083408
ac_log="
3409-
This file was extended by Dock Applet $as_me 0.62, which was
3409+
This file was extended by Dock Applet $as_me 0.63, which was
34103410
generated by GNU Autoconf 2.69. Invocation command line was
34113411
34123412
CONFIG_FILES = $CONFIG_FILES
@@ -3459,7 +3459,7 @@ _ACEOF
34593459
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
34603460
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
34613461
ac_cs_version="\\
3462-
Dock Applet config.status 0.62
3462+
Dock Applet config.status 0.63
34633463
configured by $0, generated by GNU Autoconf 2.69,
34643464
with options \\"\$ac_cs_config\\"
34653465

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([Dock Applet], [0.62])
1+
AC_INIT([Dock Applet], [0.63])
22

33
AM_INIT_AUTOMAKE
44
AM_PATH_PYTHON([3.0])

0 commit comments

Comments
 (0)