diff options
-rw-r--r-- | ChangeLog | 54 | ||||
-rw-r--r-- | NEWS | 38 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | debian/changelog | 7 |
4 files changed, 99 insertions, 4 deletions
@@ -1,6 +1,56 @@ -2019-11-27 10:13:11 +0000 Mike Gabriel +2020-08-17 22:50:19 +0200 Mike Gabriel - * release 0.5.3 (HEAD -> master, tag: 0.5.3) + * release 0.8.0 (HEAD -> master, tag: 0.8.0) + +2020-08-10 21:58:16 +0200 Mike Gabriel (a95fa57) + + * configure.ac: Drop data/upstart/Makefile from AC_OUTPUT. Regresion + fix for 172e6823. + +2020-08-10 17:01:24 +0200 Robert Tari (c6909fa) + + * Merge branch 'sunweaver-pr/drop-upstart-support' Attributes GH PR + #4: + https://github.com/AyatanaIndicators/ayatana-indicator-application/pull/4 + +2020-08-10 16:59:48 +0200 Robert Tari (c7c7c61) + + * Merge branch 'pr/drop-upstart-support' of + https://github.com/sunweaver/ayatana-indicator-application + into sunweaver-pr/drop-upstart-support Attributes GH PR + #4: + https://github.com/AyatanaIndicators/ayatana-indicator-application/pull/4 + +2020-08-10 16:34:58 +0200 Robert Tari (9e09aaa) + + * Merge branch 'sunweaver-pr/fix-systemd' Attributes GH PR #3: + https://github.com/AyatanaIndicators/ayatana-indicator-application/pull/3 + +2020-08-10 12:14:43 +0200 Mike Gabriel (172e682) + + * Drop all references to upstart. + +2020-08-10 12:06:04 +0200 Mike Gabriel (ac816c0) + + * debian/*: Install systemd user service file correctly into DEB + package. + +2020-08-10 12:05:40 +0200 Mike Gabriel (bcd0095) + + * Start indicator in systemd when ayatana-indicators.target is + started. + +2020-08-10 12:02:35 +0200 Mike Gabriel (05e0a70) + + * debian/control: Improve dh-autoreconf build-dependency. + +2019-11-27 11:26:34 +0100 Mike Gabriel (1aa5f07) + + * Drop release/build cruft file src/ChangeLog. + +2019-11-27 11:13:37 +0100 Mike Gabriel (e86b005) + + * release 0.5.3 (tag: 0.5.3) 2019-11-27 10:11:25 +0000 Mike Gabriel (8b967ee) @@ -0,0 +1,38 @@ +Overview of changes in ayatana-indicator-application 0.8.0 + + - Version bump to bring all system indicators (and the + renderer libraries to the same version level). + - Start the indicator with the ayatana-indicators.target. + - Drop upstart support. + +Overview of changes in ayatana-indicator-application 0.5.3 + + - Avoid deprecated g_type_class_add_private. + - autogen.sh: Adapt PKG_NAME autogen.sh to ayatana- namespace. + - {configure.ac,Makefile.am}: Drop distcheck features. + - Make systemd optional. If systemd is not available at build-time, + the creation of the .service file is omitted. + +Overview of changes in ayatana-indicator-application 0.5.2 + + - data/ayatana-indicator-application.desktop.in: Add Budgie as + candidate for launching ayatana-indicator-application. + - data/ayatana-indicator-application.desktop.in: Add XFCE as candidate + for launching ayatana-indicator-application. + - data/ayatana-indicator-application.desktop.in: Drop AutostartCondition, + drop GNOME from OnlyShowIn. + - XDG-autostart this indicator in MATE, too. + +Overview of changes in ayatana-indicator-application 0.5.1 + + - src/application-service-watcher.c: Comment out upstart specific code + for now. We can reintroduce it once we know if our session is + upstart-managed (or systemd-managed). + - upstart service files: Fix namespace overlapping with the project we + forked from. + - Work inside a snap by prefixing hard coded paths with. + - Hide 'Indicator Application' from Startup Applications. + - Adding a systemd user unit. + - build system: Switch to mate-common. + - dbus-shared.h: Use org.ayatana namespace for the DBus service object. + - Fork from Ubuntu's indicator-application code project. diff --git a/configure.ac b/configure.ac index 520370a..cdfc5b1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,11 +1,11 @@ -AC_INIT(ayatana-indicator-application, 0.5.3, mike.gabriel@das-netzwerkteam.de) +AC_INIT(ayatana-indicator-application, 0.8.0, mike.gabriel@das-netzwerkteam.de) AC_COPYRIGHT([Copyright 2009, 2010 Canonical Copyright 2015 Arctica Project]) AC_PREREQ(2.53) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(ayatana-indicator-application, 0.5.3) +AM_INIT_AUTOMAKE(ayatana-indicator-application, 0.8.0) AM_MAINTAINER_MODE diff --git a/debian/changelog b/debian/changelog index ce333c9..31fd3b6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +ayatana-indicator-application (0.8.0-0) unstable; urgency=medium + + * Upstream-provided Debian package for ayatana-indicator-application. + See upstream ChangeLog for recent changes. + + -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Mon, 17 Aug 2020 22:43:16 +0200 + ayatana-indicator-application (0.5.3-0) unstable; urgency=medium * Upstream-provided Debian package for ayatana-indicator-application. |