aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rw-r--r--CMakeLists.txt2
-rw-r--r--ChangeLog23
-rw-r--r--NEWS6
-rw-r--r--debian/changelog7
-rw-r--r--src/dbus-names.h59
6 files changed, 37 insertions, 61 deletions
diff --git a/AUTHORS b/AUTHORS
index f3d30fd..4f0a727 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -50,6 +50,7 @@ Moo <hazap@hotmail.com>
M Ramani Priya <priya.maremanda@gmail.com>
MrJang <ijin1322@gmail.com>
Oğuz Ersen <oguz@ersen.moe>
+OPNA2608 <opna2608@protonmail.com>
Pavel Borecki <pavel.borecki@gmail.com>
Pete Woods <pete.woods@canonical.com>
Petter Reinholdtsen <pere-weblate@hungry.com>
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0b306c5..e711b4b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.13)
-project(ayatana-indicator-display VERSION 24.4.1 LANGUAGES C CXX)
+project(ayatana-indicator-display VERSION 24.5.0 LANGUAGES C CXX)
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
SET(CMAKE_INSTALL_PREFIX "/usr" CACHE PATH "..." FORCE)
diff --git a/ChangeLog b/ChangeLog
index c626e38..78b032e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,27 @@
+2024-05-22 Mike Gabriel
+
+ * release 24.5.0 (HEAD -> main, tag: 24.5.0)
+
+2024-05-22 Robert Tari
+
+ * Merge branch 'sunweaver-pr/lomiri-indicators-target' (b982756f)
+
+2024-05-21 Mike Gabriel
+
+ * data/ayatana-indicator-display.service.in: Become part of
+ lomiri-indicators.target. (3699389a)
+
+2024-05-22 Mike Gabriel
+
+ * Merge branch 'OPNA2608-fix/recursive-schema-lookup' (ffec0d45)
+
+2024-05-20 OPNA2608
+
+ * src/service.cpp: Look up schemas recursively (50b2197c)
+
2024-05-17 Mike Gabriel
- * release 24.4.1 (HEAD -> main, tag: 24.4.1)
+ * release 24.4.1 (4d95bad3) (tag: 24.4.1)
2024-05-17 Robert Tari
diff --git a/NEWS b/NEWS
index 51a4344..5a7a8be 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+Overview of changes in ayatana-indicator-display 24.5.0
+
+ - src/service.cpp: Look up schemas recursively
+ - data/ayatana-indicator-display.service.in: Become part of
+ lomiri-indicators.target.
+
Overview of changes in ayatana-indicator-display 24.4.1
- src/main.cpp: Initialize LC_NUMERIC with 'POSIX'.
diff --git a/debian/changelog b/debian/changelog
index 81c323c..2aba540 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+ayatana-indicator-display (24.5.0-0) unstable; urgency=medium
+
+ * Upstream-provided Debian package for ayatana-indicator-display.
+ See upstream ChangeLog for recent changes.
+
+ -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Wed, 22 May 2024 08:49:48 +0200
+
ayatana-indicator-display (24.4.1-0) unstable; urgency=medium
* Upstream-provided Debian package for ayatana-indicator-display.
diff --git a/src/dbus-names.h b/src/dbus-names.h
deleted file mode 100644
index aa7ef2a..0000000
--- a/src/dbus-names.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright 2016 Canonical Ltd.
- *
- * This program is free software: you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 3, as published
- * by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranties of
- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * Authors:
- * Charles Kerr <charles.kerr@canonical.com>
- */
-
-#pragma once
-
-namespace DBusNames
-{
- namespace Notify
- {
- static constexpr char const * NAME = "org.freedesktop.Notifications";
- static constexpr char const * PATH = "/org/freedesktop/Notifications";
- static constexpr char const * INTERFACE = "org.freedesktop.Notifications";
-
- namespace ActionInvoked
- {
- static constexpr char const * NAME = "ActionInvoked";
- }
-
- namespace NotificationClosed
- {
- static constexpr char const * NAME = "NotificationClosed";
- enum Reason { EXPIRED=1, DISMISSED=2, API=3, UNDEFINED=4 };
- }
- }
-
- namespace Greeter
- {
- static constexpr char const * NAME = "org.ayatana.Greeter";
- static constexpr char const * PATH = "/";
- static constexpr char const * INTERFACE = "org.ayatana.Greeter";
- }
-
- namespace Properties
- {
- static constexpr char const * INTERFACE = "org.freedesktop.DBus.Properties";
-
- namespace PropertiesChanged
- {
- static constexpr char const* NAME = "PropertiesChanged";
- static constexpr char const* ARGS_VARIANT_TYPE = "(sa{sv}as)";
- }
- }
-}