aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2022-04-08 23:59:38 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2022-04-08 23:59:38 +0200
commitf225dccbd82f48bb1ab10767b9b074e24fedb0f3 (patch)
treefdf6ea663a63206225b5c5964277a914c2d7d98a
parent59e472a3caf62f7760f2568729fec8dbc25f8a18 (diff)
downloadlibayatana-appindicator-release-builds.tar.gz
libayatana-appindicator-release-builds.tar.bz2
libayatana-appindicator-release-builds.zip
release 0.5.910.5.91release-builds
-rw-r--r--AUTHORS1
-rw-r--r--CMakeLists.txt2
-rw-r--r--ChangeLog73
-rw-r--r--NEWS11
-rw-r--r--bindings/mono/AssemblyInfo.cs2
-rw-r--r--debian/changelog7
6 files changed, 93 insertions, 3 deletions
diff --git a/AUTHORS b/AUTHORS
index 9bf0aa1..a3a37c0 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -28,6 +28,7 @@ Ken VanDine <ken.vandine@canonical.com>
Krzysztof Klimonda <kklimonda@laptop>
Krzysztof Klimonda <kklimonda@syntaxhighlighted.com>
Lars Uebernickel <lars.uebernickel@canonical.com>
+Luca Weiss <luca@z3ntu.xyz>
Łukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com>
Luke Yelavich <luke.yelavich@canonical.com>
Marco Trevisan (Treviño) <mail@3v1n0.net>
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e6bed2a..3d6d749 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.13)
project(libayatana-appindicator C)
-set(PROJECT_VERSION "0.5.90")
+set(PROJECT_VERSION "0.5.91")
set(PROJECT_NAME "libayatana-appindicator")
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
diff --git a/ChangeLog b/ChangeLog
index c82fddd..2d8612a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,77 @@
+2022-04-08 Mike Gabriel
+
+ * release 0.5.91 (HEAD -> master, tag: 0.5.91)
+ * Merge branch 'pr/discord-segfaulting' (59e472a)
+
+2022-04-01 Mike Gabriel
+
+ * src/appindicator.c: Clean up all g_signal_emit and g_signal_new
+ calls so that they correspond with each other. (05dee64)
+ * src/appindicator.c: Fix path NULL check in status_icon_change().
+ (540b7bf)
+
+2022-04-01 Robert Tari
+
+ * Merge branch 'sunweaver-pr/gpl-3-copying-file' (5b0a474)
+
+2022-04-01 Mike Gabriel
+
+ * COPYING.GPL.3: Add file. Some code files are licensed GPL-3. Thanks
+ to Luca Weiss for spotting this. (6c01f2c)
+
+2022-02-16 Mike Gabriel
+
+ * Merge branch 'tari01-pr/cleanup-compile-flags' (420dcd2)
+
+2022-02-11 Robert Tari
+
+ * .build.yml: Drop extra compilation flags (0ea872f)
+ * Clean up compilation flags (e6b34ef)
+
+2022-02-09 Robert Tari
+
+ * Merge branch 'sunweaver-pr/let-run-xvfv-sh-run-in-bin-sh' (3bec2d1)
+
+2022-02-08 Mike Gabriel
+
+ * tests/run-xvfb.sh: Allow sourcing run-xvfb.sh with /bin/sh.
+ (772bab7)
+ * Merge branch 'z3ntu-tests-bash' (ea135ed)
+
+2022-02-06 Luca Weiss
+
+ * Use /bin/sh for running tests (dc4d76b)
+
+2022-02-08 Robert Tari
+
+ * .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
+ (b09086c)
+
+2022-01-27 Robert Tari
+
+ * Merge branch 'sunweaver-pr/pkg-config-file-for-gtk2-broken'
+ (43cfc1e)
+
+2021-12-21 Mike Gabriel
+
+ * src/ayatana-appindicator3-0.1.pc.in: Update description field and
+ mention GTK-3+. (1f74aa3)
+ * src/ayatana-appindicator-0.1.pc.in: Adapt file for CMake builds.
+ This slipped through when porting from autotools to CMake,
+ it seems. (Thanks to Unit193 for reporting this via IRC).
+ (7019d68)
+
+2021-12-08 Mike Gabriel
+
+ * Merge branch 'z3ntu-canonicalize_file_name' (e689457)
+
+2021-12-07 Luca Weiss
+
+ * Fix build with musl libc (89415c0)
+
2021-11-18 Mike Gabriel
- * release 0.5.90 (HEAD -> master, tag: 0.5.90)
+ * release 0.5.90 (afb37c4) (tag: 0.5.90)
2021-10-24 Mike Gabriel
diff --git a/NEWS b/NEWS
index bce8830..b071fc7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,14 @@
+Overview of changes in libayatana-appindicator 0.5.91
+
+ - src/appindicator.c: Clean up all g_signal_emit and g_signal_new calls
+ so that they correspond with each other.
+ - src/appindicator.c: Fix path NULL check in status_icon_change().
+ - Clean up compilation flags.
+ - tests/run-xvfb.sh: Allow sourcing run-xvfb.sh with /bin/sh.
+ - Use /bin/sh for running tests.
+ - src/ayatana-appindicator-0.1.pc.in. Fix for use with CMake.
+ - Fix build with musl libc.
+
Overview of changes in libayatana-appindicator 0.5.90
- Mono bindings: Change namespace from ayatana-appindicator-sharp3
diff --git a/bindings/mono/AssemblyInfo.cs b/bindings/mono/AssemblyInfo.cs
index 437ce53..6964ebe 100644
--- a/bindings/mono/AssemblyInfo.cs
+++ b/bindings/mono/AssemblyInfo.cs
@@ -27,4 +27,4 @@ using System.Reflection;
[assembly: AssemblyCopyright ("© 2010 Canonical, Ltd.; © 2015 Mike Gabriel; © 2021 Robert Tari")]
[assembly: AssemblyTrademark ("")]
[assembly: AssemblyCulture ("")]
-[assembly: AssemblyVersion ("0.5.90.0")]
+[assembly: AssemblyVersion ("0.5.91.0")]
diff --git a/debian/changelog b/debian/changelog
index 117e054..2860b65 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libayatana-appindicator (0.5.91-0) unstable; urgency=medium
+
+ * Upstream-provided Debian package for libayatana-appindicator.
+ See upstream ChangeLog for recent changes.
+
+ -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Fri, 08 Apr 2022 23:52:51 +0200
+
libayatana-appindicator (0.5.90-0) unstable; urgency=medium
* Upstream-provided Debian package for libayatana-appindicator.