aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.build.yml44
-rw-r--r--.travis.yml4
-rw-r--r--AUTHORS84
-rw-r--r--CMakeLists.txt36
-rw-r--r--ChangeLog11100
-rw-r--r--NEWS36
-rw-r--r--debian/changelog35
-rw-r--r--debian/libayatana-indicator-dev.install2
-rw-r--r--debian/libayatana-indicator3-7.symbols5
-rw-r--r--debian/libayatana-indicator3-dev.install2
-rw-r--r--debian/libayatana-indicator7.symbols5
-rwxr-xr-xdebian/rules8
-rw-r--r--src/CMakeLists.txt36
-rw-r--r--src/indicator-image-helper.c16
-rw-r--r--src/indicator-ng.c31
-rw-r--r--src/indicator-service.c835
-rw-r--r--src/indicator.symbols6
-rw-r--r--tests/CMakeLists.txt3
-rw-r--r--tests/dummy-indicator-blank.c2
-rw-r--r--tests/dummy-indicator-entry-func.h2
-rw-r--r--tests/dummy-indicator-null.c2
-rw-r--r--tests/dummy-indicator-signaler.c2
-rw-r--r--tests/dummy-indicator-simple.c2
-rw-r--r--tests/dummy-indicator-visible.c2
-rw-r--r--tests/service-manager-connect-service.c2
-rw-r--r--tests/service-manager-connect.c2
-rw-r--r--tests/service-manager-no-connect.c2
-rw-r--r--tests/service-manager-nostart-connect.c2
-rw-r--r--tests/service-shutdown-timeout.c2
-rw-r--r--tests/service-version-bad-service.c2
-rw-r--r--tests/service-version-good-service.c2
-rw-r--r--tests/service-version-manager.c2
-rw-r--r--tests/service-version-multiwatch-manager-impolite.c2
-rw-r--r--tests/service-version-multiwatch-manager.c2
-rw-r--r--tests/service-version-multiwatch-service.c2
-rw-r--r--tests/test-desktop-shortcuts.c2
-rw-r--r--tests/test-loader.c2
-rw-r--r--tools/CMakeLists.txt1
-rw-r--r--tools/indicator-loader.c2
39 files changed, 4368 insertions, 7961 deletions
diff --git a/.build.yml b/.build.yml
index 6aca8ad..e674b7b 100644
--- a/.build.yml
+++ b/.build.yml
@@ -11,7 +11,8 @@ requires:
- startup-notification
- which
- pacman
- - mate-common
+ - cmake
+ - cmake-extras
- gtk3
- glib2
# - ayatana-ido
@@ -21,7 +22,6 @@ requires:
debian:
# Useful URL: https://salsa.debian.org/debian-ayatana-team/libayatana-indicator
- - autopoint
- clang
- clang-tools
- cppcheck
@@ -29,7 +29,6 @@ requires:
- libtool
- cmake
- cmake-extras
- - mate-common
- at-spi2-core
- intltool
- gtk-doc-tools
@@ -47,14 +46,12 @@ requires:
- xvfb
ubuntu:
- - autopoint
- clang
- clang-tools
- git
- libtool
- cmake
- cmake-extras
- - mate-common
- at-spi2-core
- intltool
- gtk-doc-tools
@@ -95,19 +92,20 @@ before_scripts:
- cmake . -DCMAKE_INSTALL_PREFIX=/usr
- make
- make install
+ - cd -
+ - rm -Rf ayatana-ido-build/
build_scripts:
- if [ ${DISTRO_NAME} == "debian" ];then
- - export CFLAGS+=" -Wsign-compare -Wunused-parameter"
- cppcheck --enable=warning,style,performance,portability,information,missingInclude .
- fi
-
- mkdir build-gtk3/
- cd build-gtk3/
- if [ ${DISTRO_NAME} == "debian" ];then
- - scan-build $CHECKERS cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DENABLE_TESTS=ON -DFLAVOUR_GTK3=ON
+ - scan-build $CHECKERS cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DENABLE_TESTS=ON -DFLAVOUR_GTK3=ON -DENABLE_WERROR=ON
- else
- - scan-build $CHECKERS cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DFLAVOUR_GTK3=ON
+ - scan-build $CHECKERS cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DFLAVOUR_GTK3=ON -DENABLE_WERROR=ON
- fi
-
- if [ $CPU_COUNT -gt 1 ]; then
@@ -128,9 +126,9 @@ build_scripts:
- mkdir build-gtk3-no-IDO/
- cd build-gtk3-no-IDO/
- if [ ${DISTRO_NAME} == "debian" ];then
- - scan-build $CHECKERS cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DENABLE_TESTS=ON -DFLAVOUR_GTK3=ON -DENABLE_IDO=OFF
+ - scan-build $CHECKERS cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DENABLE_TESTS=ON -DFLAVOUR_GTK3=ON -DENABLE_IDO=OFF -DENABLE_WERROR=ON
- else
- - scan-build $CHECKERS cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DFLAVOUR_GTK3=ON -DENABLE_IDO=OFF
+ - scan-build $CHECKERS cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DFLAVOUR_GTK3=ON -DENABLE_IDO=OFF -DENABLE_WERROR=ON
- fi
-
- if [ $CPU_COUNT -gt 1 ]; then
@@ -170,19 +168,15 @@ build_scripts:
- scan-build $CHECKERS --keep-cc -o html-report make
- fi
- cd ../
-
-after_scripts:
- - if [ ${BUILD_TYPE} == "scripts" ];then
- - XVFB_RUN="$(which xvfb-run || true)"
- - if [ ${DISTRO_NAME} == "debian" ];then
- - cd build-gtk3/
- - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test
- - cd ../
- - cd build-gtk3-no-IDO/
- - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test
- - cd ../
- - cd build-gtk2/
- - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test
- - cd ../
- - fi
+ -
+ - if [ ${DISTRO_NAME} == "debian" ];then
+ - cd build-gtk3/
+ - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test
+ - cd ../
+ - cd build-gtk3-no-IDO/
+ - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test
+ - cd ../
+ - cd build-gtk2/
+ - ${XVFB_RUN} env CTEST_OUTPUT_ON_FAILURE=1 make test
+ - cd ../
- fi
diff --git a/.travis.yml b/.travis.yml
index c78142c..0dec3a1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,11 +1,11 @@
# vim: set ts=2 sts=2 sw=2 expandtab :
-dist: bionic
+dist: focal
language: shell
os: linux
arch:
- amd64
- - ppc64le
+# - ppc64le
services:
- docker
diff --git a/AUTHORS b/AUTHORS
index bb181a9..76d290d 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,38 +1,46 @@
- Allan LeSage
- Aurelien Gateau
- Automatic PS uploader
- Charles Kerr
- CI bot
- Cody Russell
- Colin Watson
- Daniel d'Andrada
- Didier Roche
- Eitan Isaacson
- Evgeni Golov
- György Balló
- Hernando Torque
- Iain Lane
- Javier Jardón
- Jonathan Riddell
- Karl
- Ken VanDine
- Lars Uebernickel
- Łukasz 'sil2100' Zemczak
- Luke Yelavich
- Marco Trevisan (Treviño)
- Martin Pitt
- Mathieu Trudel-Lapierre
- Michael Terry
- Mike Gabriel
- Mikkel Kamstrup Erlandsen
- Neil Jagdish Patel
- Robert Ancell
- Robert Carr
- Robert Collins
- seb128
- Sebastien Bacher
- Steve Langasek
- Ted Gould
- Timo Jyrinki
- unknown
- William Hua
+Alexander Schlarb <alexander@ninetailed.ninja>
+Allan LeSage <allanlesage@gmail.com>
+Aurelien Gateau <aurelien.gateau@canonical.com>
+Charles Kerr <charles.kerr@canonical.com>
+Cody Russell <crussell@canonical.com>
+Colin Watson <cjwatson@canonical.com>
+Daniel d'Andrada <daniel.dandrada@canonical.com>
+Dani Llewellyn <diddledani@ubuntu.com>
+Didier Roche <didier.roche@canonical.com>
+Didier Roche <didrocks@ubuntu.com>
+Eitan Isaacson <eitan@ascender.com>
+Evgeni Golov <evgeni@debian.org>
+György Balló <ballogy@freestart.hu>
+Hernando Torque <sirius@sonnenkinder.org>
+Iain Lane <iain.lane@canonical.com>
+Iain Lane <iain@orangesquash.org.uk>
+Javier Jardón <javier.jardon@codethink.co.uk>
+Jonathan Riddell <jriddell@canonical.com>
+Karl <karl@karl-desktop>
+Ken VanDine <ken.vandine@canonical.com>
+Lars Uebernickel <lars.uebernickel@canonical.com>
+Łukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com>
+Luke Yelavich <luke.yelavich@canonical.com>
+Marco Trevisan (Treviño) <mail@3v1n0.net>
+Marius Gripsgard <marius@ubports.com>
+Martin Pitt <martin.pitt@canonical.com>
+Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>
+Michael Terry <michael.terry@canonical.com>
+Michael Terry <mike@mterry.name>
+Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
+Mikkel Kamstrup Erlandsen <mikkel.kamstrup@gmail.com>
+Neil Jagdish Patel <neil.patel@canonical.com>
+Robert Ancell <robert.ancell@canonical.com>
+Robert Carr <racarr@ender>
+Robert Collins <robertc@robertcollins.net>
+Robert Tari <robert@tari.in>
+seb128 <seb128@seb128-desktop>
+Sebastien Bacher <seb128@ubuntu.com>
+Steve Langasek <steve.langasek@canonical.com>
+Ted Gould <ted@canonical.com>
+Ted Gould <ted@gould.cx>
+Ted Gould <ted@ubuntu.com>
+Till Maas <opensource@till.name>
+Timo Jyrinki <timo.jyrinki@canonical.com>
+unknown <robert.ancell@canonical.com>
+William Hua <william.hua@canonical.com>
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8b92a3c..8af6ff5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,8 +19,13 @@ else()
endif()
if(ENABLE_WERROR)
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror")
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
+ add_definitions("-Werror")
+endif()
+
+if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
+ add_definitions("-Weverything")
+else()
+ add_definitions("-Wall")
endif()
# Check for prerequisites
@@ -40,10 +45,21 @@ endif()
set(DEPS
glib-2.0>=2.37
- gtk+-3.0>=3.24
gmodule-2.0
gio-unix-2.0
)
+if (FLAVOUR_GTK3)
+ set(DEPS
+ ${DEPS}
+ gtk+-3.0>=3.24
+ )
+endif()
+if (FLAVOUR_GTK2)
+ set(DEPS
+ ${DEPS}
+ gtk+-2.0>=2.18
+ )
+endif()
if (FLAVOUR_GTK3 AND ENABLE_IDO)
set(DEPS
@@ -67,21 +83,9 @@ endif (HAVE_LIB_M)
include(GNUInstallDirs)
set(ABI_VERSION "7")
set(API_VERSION "4")
-set(PROJECT_VERSION "0.8.4")
+set(PROJECT_VERSION "0.9.4")
set(PROJECT_NAME "libayatana-indicator")
-if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
-
- set(COMPILE_FLAGS "${COMPILE_FLAGS} -Weverything")
- set(COMPILE_FLAGS "${COMPILE_FLAGS} -Wno-c++98-compat -Wno-padded")
- set(COMPILE_FLAGS "${COMPILE_FLAGS} -Wno-documentation")
-
-else()
-
- set(COMPILE_FLAGS "${COMPILE_FLAGS} -Wall")
-
-endif()
-
# Make everything
add_subdirectory(src)
diff --git a/ChangeLog b/ChangeLog
index f2f8a60..32d39af 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6863 +1,4020 @@
-2021-01-25 17:11:13 +0100 Mike Gabriel
+2023-10-13 Mike Gabriel
- * release 0.8.4 (HEAD -> master, tag: 0.8.4)
+ * release 0.9.4 (HEAD -> main, tag: 0.9.4)
-2021-01-25 17:05:29 +0100 Mike Gabriel (d0abfc5c)
+2023-09-06 Robert Tari
- * Makefile.am: Set DISTCHECK_CONFIGURE_FLAGS.
+ * Merge branch 'tyll-executable_so' (0d5eaeb)
-2021-01-25 17:05:09 +0100 Mike Gabriel (dec55b81)
+2023-09-05 Till Maas
- * debian/*: Update from official Debian packaging.
+ * cmake: Install library as library (05e4368)
-2020-12-04 11:36:43 +0100 Robert Tari (6935c683)
+2022-10-26 Mike Gabriel
- * Merge branch 'sunweaver-pr/debian-build-with-unit-tests'
+ * src/indicator-service.c: Fix Robert's lastname in license header.
+ (bae7a9c)
+ * release 0.9.3 (a62e8ca) (tag: 0.9.3)
-2020-12-04 10:32:25 +0100 Mike Gabriel (03219183)
+2022-10-08 Mike Gabriel
- * configure.ac: Drop superfluous square bracket (typo fix).
+ * Merge branch 'tari01-pr/fix-tooltip' (bf432c5)
-2020-12-04 10:29:39 +0100 Mike Gabriel (d6b4c6b8)
+2022-10-04 Robert Tari
- * tests/Makefile.am: Wrap test-indicator-ng around Xvfb and
- dbus-runner.
+ * src/indicator-ng.c: Do not show tooltip on labels while the menu is
+ open (3ae6943)
-2020-12-04 10:28:55 +0100 Mike Gabriel (29f118a4)
+2022-09-15 Mike Gabriel
- * libayatana-indicator/indicator-ng.c: Only run gtk_box_set_spacing()
- if object to operate on is a GTK_BOX.
+ * release 0.9.2 (d9ca686) (tag: 0.9.2)
-2020-12-04 11:29:47 +0100 Robert Tari (fbb8dbe1)
+2022-07-15 Mike Gabriel
- * Merge branch 'sunweaver-pr/fix-typo-in-configure-ac'
+ * Merge branch 'tari01-pr/add-tooltips' (ad8abda)
-2020-12-04 10:29:39 +0100 Mike Gabriel (fb1450e9)
+2022-07-13 Robert Tari
- * tests/Makefile.am: Wrap test-indicator-ng around Xvfb and
- dbus-runner.
+ * src/indicator-ng.c: Add tooltip support (c065f45)
-2020-12-04 10:28:55 +0100 Mike Gabriel (cbf345ed)
+2022-07-15 Mike Gabriel
- * libayatana-indicator/indicator-ng.c: Only run gtk_box_set_spacing()
- if object to operate on is a GTK_BOX.
+ * Merge branch 'tari01-pr/enable-werror' (4f306dd)
-2020-12-04 11:22:11 +0100 Robert Tari (1f54cb3f)
+2022-07-13 Robert Tari
- * Merge branch 'sunweaver-pr/fix-test-indicator-ng'
+ * .build.yml: Build the GTK3 flavour with -Werror (a7b1463)
-2020-12-04 10:33:48 +0100 Mike Gabriel (fb9db8a6)
+2022-07-15 Mike Gabriel
- * debian/rules: Enable unit tests after build.
+ * Merge branch 'tari01-pr/crash-on-session-error' (88a19ee)
-2020-12-04 10:32:25 +0100 Mike Gabriel (6eab8445)
+2022-07-13 Robert Tari
- * configure.ac: Drop superfluous square bracket (typo fix).
+ * src/indicator-service.c: Make failure to connect to the session
+ DBus fatal (3db4f03)
+ * Whitespace fix (755ee95)
-2020-12-04 10:29:39 +0100 Mike Gabriel (1a62e1e5)
+2022-02-17 Mike Gabriel
- * tests/Makefile.am: Wrap test-indicator-ng around Xvfb and
- dbus-runner.
+ * release 0.9.1 (80dae40) (tag: 0.9.1)
+ * Merge branch 'tari01-pr/cleanup-compile-flags' (4231e8b)
-2020-12-04 10:28:55 +0100 Mike Gabriel (770efbcc)
+2022-02-17 Robert Tari
- * libayatana-indicator/indicator-ng.c: Only run gtk_box_set_spacing()
- if object to operate on is a GTK_BOX.
+ * .build.yml: Drop extra compilation flags (cf542e4)
+ * Clean up compilation flags (4b442de)
-2020-11-09 20:27:33 +0100 Mike Gabriel (4489b124)
+2022-02-08 Robert Tari
- * release 0.8.3 (tag: 0.8.3)
+ * .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
+ (47244a9)
-2020-10-30 14:36:45 +0100 Mike Gabriel (2806da07)
+2021-11-18 Robert Tari
- * Merge branch 'tari01-pr/fix-menu-resizing'
+ * Merge branch 'sunweaver-pr/dont-export-private-symbols' (7c5e41b)
-2020-10-30 13:11:08 +0100 Robert Tari (f5663d0b)
+2021-11-18 Mike Gabriel
- * indicator-ng.c: Fix menu resizing for all themes
+ * debian/libayatana-indicator*-7.symbols: Drop private symbols again.
+ (ceb487f)
+ * src/{CMakeLists.txt,indicator.symbols}: Don't export private
+ symbols. Immitate symbol exports as previously done with
+ libtool. (7cfded8)
-2020-09-10 21:28:25 +0200 Mike Gabriel (afa8c6af)
+2021-11-17 Mike Gabriel
- * release 0.8.2 (tag: 0.8.2)
+ * d/changelog: Raise upstream version of DEB builds, due to wrong
+ package revision in 0.9.0 release. (659cc9c)
+ * release 0.9.0 (6a16c6f) (tag: 0.9.0)
-2020-09-10 21:03:01 +0200 Mike Gabriel (cce52a7e)
+2021-11-10 Mike Gabriel
- * Merge branch 'tari01-pr/trim-lcov-py3'
+ * Merge branch 'tari01-pr/check-menu-item-name-null' (c118af3)
-2020-09-10 01:08:01 +0200 Robert Tari (c310b42b)
+2021-11-05 Robert Tari
- * trim-lcov.py: Port trim-lcov to Python 3
+ * src/indicator-ng.c: Make sure old menu item name is not NULL before
+ comparison (40e310b)
-2020-09-08 15:36:47 +0200 Mike Gabriel (6b0ca375)
+2021-11-01 Robert Tari
- * Merge branch 'tari01-pr/disable-menu-arrows'
+ * Merge branch 'sunweaver-pr/travis-cleanup' (71b39fb)
-2020-08-26 19:47:54 +0200 Robert Tari (1df0f1d0)
+2021-10-26 Mike Gabriel
- * Disable menu arrows
+ * .build.yml: Remove source code of locally built dependency after it
+ has been installed. (e43c209)
+ * .build.yml: Run unit tests in build_scripts: target. (7839b52)
+ * .build.yml: Drop autotools dependencies. (d995a6e)
-2020-09-08 15:33:33 +0200 Mike Gabriel (2130f284)
+2021-10-22 Robert Tari
- * Merge branch 'tari01-pr/blank-label-padding-spacing'
+ * Merge branch 'sunweaver-pr/gtk2-flavour-build-fix' (c9063c6)
-2020-09-05 22:35:17 +0200 Robert Tari (73fd4da1)
+2021-10-22 Mike Gabriel
- * indicator-ng.c: Fix padding and spacing for hidden indicator item
- labels
+ * debian/rules: Use one spelling for 'flavour'. (c15189f)
+ * CMakeLists.txt: Don't build GTK2 flavour against GTK3. (bde82da)
-2020-09-05 21:15:45 +0200 Mike Gabriel (cba1c3cb)
+2021-10-21 Mike Gabriel
- * Merge branch 'tari01-pr/blank-label'
+ * Merge branch 'diddledani-icon-scaling' (99649c5)
-2020-09-05 18:07:06 +0200 Robert Tari (d8b5315b)
+2021-10-15 Dani Llewellyn
- * indicator-ng.c: Do not hide image when toggling label visibility
+ * Scale icons when loading from filename (7e02a15)
-2020-09-05 18:06:09 +0200 Robert Tari (8c8822dc)
+2021-10-20 Robert Tari
- * Whitespace fix
+ * .travis.yml: Temporarily disable ppc64le builds (1904f33)
-2020-09-05 17:55:25 +0200 Robert Tari (8ccd3bc9)
+2021-10-19 Robert Tari
- * Whitespace fix
+ * Merge branch
+ 'sunweaver-pr/different-folders-for-include-files-based-on-GTK-flavour'
+ (79db730)
-2020-09-05 13:22:34 +0200 Mike Gabriel (242b20be)
+2021-09-20 Robert Tari
- * Merge branch 'tari01-pr/duplicate-locations'
+ * Fix copyright headers (eecd9dd)
-2020-09-02 17:20:30 +0200 Robert Tari (6e5ab2c2)
+2021-09-02 Robert Tari
- * Fix duplicate location in the datetime indicator.
+ * Fix Travis status image (0b69ab9)
-2020-08-26 09:33:53 +0200 Mike Gabriel (f89575ea)
+2021-10-19 Mike Gabriel
- * release 0.8.1 (tag: 0.8.1)
+ * debian/libayatana-indicator*-dev.install: Ship include header files
+ correctly in two separate dev:pkgs. (548d13a)
+ * src/CMakeLists.txt: Use different include paths for GTK-2 and GTK-3
+ builds (even if header files are indentical). (6721575)
-2020-08-26 09:21:27 +0200 Mike Gabriel (7ad3a787)
+2021-09-20 Robert Tari
- * Merge branch 'tari01-pr/fix-menu-scrolling'
+ * Fix copyright headers (7a377a1)
-2020-08-25 17:49:48 +0200 Robert Tari (6de1c026)
+2021-09-02 Robert Tari
- * Enable menu scrolling + reset offset on popup
+ * Fix Travis status image (4e7a5b1)
-2020-08-17 10:08:51 +0200 Mike Gabriel (cb4cf542)
+2021-08-29 Mike Gabriel
- * Merge branch 'tari01-pr/multiple-messaging-clients'
+ * debian/{control,compat}: Bump to level 10. (18eade4)
+ * debian/rules: Enable unit tests. (7f3efa9)
-2020-08-16 14:55:23 +0200 Robert Tari (b6fd2c19)
+2021-08-28 Mike Gabriel
- * Fix IDO insertion index in Indicator Messages with multiple clients
+ * .travis.yml: Use Ayatana Indicators project's dev-scripts repo.
+ (3c111d0)
-2020-08-14 21:10:25 +0200 Mike Gabriel (8beffb39)
+2021-08-10 Mike Gabriel
- * release 0.8.0 (tag: 0.8.0)
+ * Merge branch 'tari01-pr/add-enable-werror-option' (cb74130)
-2020-08-14 21:02:22 +0200 Mike Gabriel (d87433d8)
+2021-08-09 Robert Tari
- * debian/control: Let ayatana-indicator-common break system
- indicators before 0.8.0 (except power indicator, that one
- before 2.1.0).
-
-2020-08-14 20:45:28 +0200 Mike Gabriel (758b74dd)
-
- * debian/control: Update versioned B-D on libayatana-ido3-dev to
- 0.8.0-0~.
-
-2020-08-14 20:44:50 +0200 Mike Gabriel (5afd8bf0)
-
- * configure.ac: Bump IDO_REQUIRED_VERSION to 0.8.0.
-
-2020-08-14 12:59:22 +0200 Robert Tari (0a798f3b)
-
- * Fix width of menu panes.
-
-2020-08-13 22:46:39 +0200 Robert Tari (e9902ad4)
-
- * Merge branch 'sunweaver-pr/ayatanamenuitemfactory-from-ido'
- Attributes GH PR #15:
- https://github.com/AyatanaIndicators/libayatana-indicator/pull/15
-
-2020-08-13 22:26:50 +0200 Mike Gabriel (e34f12e2)
+ * Add ENABLE_WERROR option (cb0c07e)
- * Use ayatanamenuitemfactory.(c|h) from ayatana-ido. Reduce code
- duplications.
+2021-06-27 Mike Gabriel
-2020-08-13 13:13:30 +0200 Mike Gabriel (573e40f5)
+ * README.md: Add missing parenthesis close. (304b8b8)
- * Merge branch 'tari01-pr/ido-insertion-error-handling'
+2021-06-17 Mike Gabriel
-2020-08-13 11:08:52 +0200 Robert Tari (f0ee1dfa)
+ * debian/control: Drop B-D: dh-exec. Not needed anymore since removal
+ of ayatana-indicator-common bin:pkg. (0275b35)
+ * debian/rules: Drop remnants of ayatana-indicator-common (found in
+ dh_install and dh_missing overrides). (3ccffba)
- * Try to prevent cascading failure if IDO creation fails
+2021-06-16 Mike Gabriel
-2020-08-11 14:09:24 +0200 Mike Gabriel (27f00a52)
+ * Merge branch 'tari01-pr/drop-ayatana-indicators-target' (9b15f3c)
- * Merge branch 'tari01-pr/replace-x-canonical-attributes'
+2021-06-15 Robert Tari
-2020-08-11 11:08:49 +0200 Robert Tari (004ae044)
+ * debian/: Drop bin:pkg ayatana-indicator-common (moved to src:pkg
+ libayatana-common). (1343147)
+ * .build.yml: Remove systemd dependency. (888ceb9)
+ * data/: Drop ayatana-indicators.target (moved to libayatana-common).
+ (cbca7c3)
- * Replace x-canonical attributes
+2021-06-10 Mike Gabriel
-2020-08-10 08:48:08 +0200 Mike Gabriel (f57637e5)
+ * Merge branch 'tari01-pr/disable-loader' (0523726)
- * debian/ayatana-indicator-common.links: Add FIXME/reminder to drop
- manual symlinking of systemd user service file once DH
- compat level is raised to a level above 12.
+2021-06-10 Robert Tari
-2020-08-10 08:45:41 +0200 Mike Gabriel (985f4926)
+ * Add option to disable Loader build/installation (777d748)
- * Merge branch 'ubports-fix-systemd'
+2021-06-09 Mike Gabriel
-2020-08-09 21:56:14 +0200 Marius Gripsgard (42358cc3)
+ * Merge branch 'tari01-pr/cmake-install-full' (a25c5f1)
- * Use indicators.target as the systemd lifecycle unit
+2021-06-08 Robert Tari
-2020-08-08 10:05:24 +0200 Robert Tari (7ceee62e)
+ * Use CMAKE_INSTALL_FULL_*DIR locations (dea96dd)
- * Fix tests and deprecations (fixes #1)
+2021-06-08 Mike Gabriel
-2020-07-31 00:26:05 +0200 Robert Tari (a5b13749)
+ * debian/control: Add D (libayatana-indicator3-dev):
+ libayatana-ido3-dev. (912f071)
- * Merge pull request #5 from tari01/master
+2021-05-25 Mike Gabriel
-2020-07-31 00:18:18 +0200 Robert Tari (e528ee84)
+ * README.md: Slight adjustment to the .desktop file comparison.
+ (f2b907a)
+ * Merge branch 'tari01-pr/update-docs' (cd7c85d)
- * Resize open menus as items change
+2021-05-24 Robert Tari
-2020-07-28 21:38:31 +0200 Mike Gabriel (74cfb210)
+ * README: Drop old file (b4cb3aa)
+ * Add documentation files (77c690f)
- * release 0.7.1 (tag: 0.7.1)
+2021-05-17 Robert Tari
-2020-07-27 23:25:43 +0200 Robert Tari (a7c9a356)
+ * Merge branch 'sunweaver-pr/support-disabling-IDO' (a129e90)
- * Merge pull request #4 from tari01/master
+2021-05-17 Mike Gabriel
-2020-07-27 23:22:14 +0200 Robert Tari (208176b9)
+ * Travis CI: Also test GTK+-3.0 builds with IDO support disabled.
+ (99f8f1f)
+ * CMakeLists.txt: Report more build parameters to stdout when CMake
+ configures the build. (80253cf)
+ * {,**/}CMakeLists.txt: Support builds against GTK+-3.0 with IDO
+ support disabled. (b28e807)
- * Display and connect the Indicator Messages widgets
+2021-05-17 Robert Tari
-2020-07-24 07:10:44 +0200 Mike Gabriel (9a41af8c)
+ * Merge branch 'tari01-pr/fix-tests-and-coverage' (f6baada)
- * debian/*: Update from official Debian packaging.
+2021-05-16 Mike Gabriel
-2020-07-23 10:50:04 +0200 Mike Gabriel (87e85c2a)
+ * CMakeLists.txt: Fix coverage report. We need to reference the test
+ executables here, not the test wrappers. (a914848)
+ * tests/CMakeLists.txt: Rewrite to fix tests and coverage (49d522e)
+ * Revert "tests/run-xvfb.sh: Drop file, not required with CMake."
+ (9c35f2f)
- * release 0.7.0 (tag: 0.7.0)
+2021-03-16 Robert Tari
-2020-07-22 20:31:48 +0000 Mike Gabriel (e32b9d0a)
+ * tests/org.ayatana.indicator.test.service.in: Fix placeholder
+ (629f2a7)
+ * tests/service-manager-connect.service.in: Fix placeholder (e37c1b8)
+ * tests/service-version-good.service.in: Fix placeholder (4a5c707)
+ * tests/service-version-bad.service.in: Fix placeholder (b9842a3)
+ * tests/session.conf.in: Fix placeholder (94ee3f9)
+ * tests/test-indicator-ng.c: Enable all tests (8fe500d)
- * debian/libayatana-indicator3-7.symbols: Add new symbols, already
- targetting next upstream release.
+2021-05-14 Robert Tari
-2020-07-22 20:30:21 +0000 Mike Gabriel (1917f00a)
+ * Merge branch 'sunweaver-pr/bring-back-gtk2-builds' (763acde)
- * libayatana-indicator/Makefile.am: Make sure,
- ayatanamenuitemfactory.c gets built during GTK-3 builds.
+2021-05-12 Mike Gabriel
-2020-07-22 14:17:17 +0200 Robert Tari (b619354a)
+ * Travis CI: Drop autotools support, build and test GTK+-2.0 and
+ GTK+-3.0 flavours. (173f104)
+ * debian/libayatana-indicator3-tools.install: Install
+ ayatana-indicator3-loader test tool to LIBEXECDIR.
+ (b2214f2)
+ * debian/libayatana-indicator*-dev.install: No .a files shipped
+ anymore. (08a856c)
+ * debian/*.symbols: Update symbols files. (8eec783)
+ * debian/rules: Run GTK2/GTK3 unit tests sequentially. (262df76)
+ * debian/rules: Explicitly enable tests at build time. (0371084)
+ * debian/rules: Adjust to CMake based build. (Fixes DEB builds after
+ CMake switch). (73e6c3a)
+ * debian/control: Adjust B-Ds for CMake based build. (1140a11)
+ * CMakeLists.txt: Always builds indicator3 loader tool (not just when
+ ENABLE_TESTS is set). (0a9b030)
+ * Bring back GTK+-2.0 and GTK+-3.0 build flavours. (bfb679d)
+ * tests/run-xvfb.sh: Drop file, not required with CMake. (c7a152a)
+ * trim-lcov.py: Drop file, not required anymore with CMake. (e2d3331)
+ */Makefile.am: Drop more remnants of autotools. (eb53143)
+ * Merge branch 'tari01-pr/move-to-cmake' (025c376)
- * Display IDO widgets/Use own action muxer/Allow IDO CSS styling
+2021-02-10 Robert Tari
-2020-07-22 21:54:24 +0200 Mike Gabriel (c984cc54)
+ * Append us to copyright headers (c277aa6)
- * Merge branch 'ntninja-master'
+2021-02-11 Robert Tari
-2019-12-12 11:53:48 +0100 Alexander Schlarb (c6f93fed)
+ * Remove Automake-related files (e20daf6)
+ * Add CMakeLists.txt files + tests/test-loader.c: fix library paths +
+ Fix include paths (1fa174f)
+ * tests/test-indicator-ng.c: disable menu test for now, it will not
+ work with GCovr (729e95b)
- * Make building of `ayatana-indicator-loader3` optional
+2021-02-10 Robert Tari
-2019-11-20 14:20:38 +0100 Mike Gabriel (faf27849)
+ * Whitespace fix (1cba923)
+ * Add ayatana-indicator3-0.4.pc.in to data (25c2922)
+ * Move source files to src (b8b206c)
- * release 0.6.3 (tag: 0.6.3)
+2021-05-06 Mike Gabriel
-2019-11-20 12:16:43 +0000 Mike Gabriel (a5bc4679)
+ * Travis CI: Also support CMake based CI builds. (13c1c80)
- * debian/rules: Switch from dh_install --fail-missing to dh_missing
- --fail-missing.
+2021-05-06 Robert Tari
-2019-11-20 12:10:51 +0000 Mike Gabriel (dd16c4c2)
+ * Merge branch 'sunweaver-pr/travis-ci-with-cmake-support' (aa6723b)
- * **/Makefile.am: Set -DGTK_DISABLE_DEPRECATED for gtk2 builds. Fixes
- FTBFS against Glib2.0 >= 2.62.
+2021-05-06 Mike Gabriel
-2019-08-29 20:14:30 +0200 Mike Gabriel (b4a069f2)
+ * Travis CI: Also support CMake based CI builds. (bc6886f)
- * libayatana-indicator/indicator-object.c: Typo fix in comment.
+2021-05-04 Robert Tari
-2018-11-05 10:05:10 +0000 Mike Gabriel (a734066d)
+ * Merge branch 'sunweaver-pr/travis-ci' (d68a7de)
- * GObject private API/ABI: Get rid of g_type_class_add_private() and
- use DEFINE_TYPE_WITH_PRIVATE().
+2021-05-04 Mike Gabriel
-2018-11-05 10:39:49 +0100 Mike Gabriel (e8073fda)
+ * .build.yml: Build ayatana-ido from upstream Git rather than using
+ the possibly outdate packaged version of ayatana-ido.
+ (f2b0b01)
+ * .travis.yml: Don't run autotools builds twice (once via script,
+ once directly). (c58c269)
+ * .travis.yml: Also do CI builds against Debian stable. (89db74c)
+ * .travis.yml: Temporarily disable CI builds on ubuntu:rolling.
+ Ubuntu's I series is not ready yet as docker container.
+ (195c450)
+ */Makefile.am: Drop -Werror compiler flag for now. Not helpful when
+ setting up CI builds for dirty code. (246f41f)
- * debian/control: Switch B-D from libayatana-ido3-0.4-dev ->
- libayatana-ido3-dev.
+2021-04-21 Mike Gabriel
-2018-03-20 10:40:49 +0100 Mike Gabriel (3927e0f7)
+ * .build.yml: Drop distcheck target. Not required. (1760be4)
+ * .build.yml: Enable unit tests during configure. (a7375c8)
+ * .build.yml: Output test-suite.log at the end of unit testings.
+ (9b913f0)
+ * .build.yml: No tests are run on Archlinux, neither are they run on
+ Ubuntu. (962eea0)
+ * .build.yml: Unit tests require xvfb (and xauth). (a849b4a)
- * release 0.6.2 (tag: 0.6.2)
+2021-04-20 Mike Gabriel
-2018-03-20 08:54:48 +0000 Mike Gabriel (34b4321e)
+ * tools/indicator-loader.c: Silence unused parameter warnings/errors
+ for various functions. (1911cb3)
+ * libayatana-indicator/indicator-service{,-manager}.c: Drop return
+ statements and g_error_free() calls that never get
+ reached. (8338069)
+ * libayatana-indicator/indicator-ng.c: Stricter type usage when
+ comparing Integer like variable. (ade4d68)
+ * libayatana-indicator/indicator-ng.c: Silence unused parameter
+ warnings/errors for various functions. (ad0e922)
+ * libayatana-indicator/indicator-service-manager.c: Silence unused
+ parameter warnings/errors for various functions. (432174b)
+ * libayatana-indicator/indicator-service.c: Avoid error: use of GNU
+ old-style field designator extension. (cc7f8ce)
+ * libayatana-indicator/indicator-service.c: Silence unused parameter
+ warnings/errors for callback functions. (995b2cd)
+ * libayatana-indicator/indicator-image-helper.c: Silence unused
+ parameter warnings/errors for callback functions.
+ (b829a57)
+ * libayatana-indicator/indicator-desktop-shortcuts.c: Avoid
+ comparison of integers of different signs. Thanks to
+ scan-build on Travis-CI. (7e70eb7)
+ * Travis-CI: Also build against Ubuntu 20.04 (for Ubuntu Touch's
+ sake). (4880df3)
+ * Travis-CI: temporarily disable archlinux:latest CI builds.
+ (e86d11e)
+ * TRAVIS: Initial attempt to get TRAVIS CI working for this project.
+ (5424403)
- * libayatana-indicator/indicator-ng.c: Type cast assignments from
- g_object_ref_sink().
+2021-02-03 Mike Gabriel
-2018-03-20 09:12:03 +0100 Mike Gabriel (3b3c2658)
+ * debian/rules: Don't build/run unit tests parallely. (5cd5b0c)
+ * debian/control: Add B-D at-spi2-core. Fix FTBFS during unit tests.
+ (9b1ca2a)
- * debian/control: Drop unneeded D (libayatana-indicator3-dev):
- libayatana-indicator-dev.
+2021-02-03 Robert Tari
-2017-10-26 19:16:22 +0200 Mike Gabriel (8de3f59f)
+ * Merge branch 'sunweaver-pr/drop-Werror-flag-from-unit-test-builds'
+ (84b7a79)
- * Makefile.am: Drop distcheck features.
+2021-02-03 Mike Gabriel
-2017-10-22 21:12:38 +0200 Mike Gabriel (cffab72a)
+ * tests/Makefile.am: Drop -Werror from unit test builds. (800747d)
- * debian/changelog: Fix source project name in most recent changelog
- stanza.
+2021-01-25 Mike Gabriel
-2017-09-27 16:01:44 +0200 Mike Gabriel (fb3d8fee)
+ * release 0.8.4 (9a887fb) (tag: 0.8.4)
+ * Makefile.am: Set DISTCHECK_CONFIGURE_FLAGS. (d0abfc5)
+ * debian/*: Update from official Debian packaging. (dec55b8)
- * debian/changelog: post-release fix in date strings (2)
+2020-12-04 Robert Tari
-2017-09-27 11:12:43 +0200 Mike Gabriel (7a2f6846)
+ * Merge branch 'sunweaver-pr/debian-build-with-unit-tests' (6935c68)
- * debian/changelog: post-release fix in date strings (for 0.6.0 and
- 0.6.1)
+2020-12-04 Mike Gabriel
-2017-09-23 01:14:17 +0200 Mike Gabriel (4f355a35)
+ * configure.ac: Drop superfluous square bracket (typo fix). (0321918)
+ * tests/Makefile.am: Wrap test-indicator-ng around Xvfb and
+ dbus-runner. (d6b4c6b)
+ * libayatana-indicator/indicator-ng.c: Only run gtk_box_set_spacing()
+ if object to operate on is a GTK_BOX. (29f118a)
- * post-release fix-up of debian/changelog
+2020-12-04 Robert Tari
-2017-09-22 11:14:40 +0200 Mike Gabriel (62339430)
+ * Merge branch 'sunweaver-pr/fix-typo-in-configure-ac' (fbb8dbe)
- * debian/rules: Drop dh_install call for bin:pkg
- -plibayatana-indicator-tools. We don't ship that anymore.
+2020-12-04 Mike Gabriel
-2017-09-22 10:16:08 +0200 Mike Gabriel (72223397)
+ * tests/Makefile.am: Wrap test-indicator-ng around Xvfb and
+ dbus-runner. (fb1450e)
+ * libayatana-indicator/indicator-ng.c: Only run gtk_box_set_spacing()
+ if object to operate on is a GTK_BOX. (cbf345e)
- * debian/ayatana-indicator-common.install: Set x-bit on file
- permissions.
+2020-12-04 Robert Tari
-2017-09-22 10:11:39 +0200 Mike Gabriel (20640dd3)
+ * Merge branch 'sunweaver-pr/fix-test-indicator-ng' (1f54cb3)
- * release 0.6.1 (tag: 0.6.1)
+2020-12-04 Mike Gabriel
-2017-09-22 10:01:32 +0200 Mike Gabriel (df6c2e93)
+ * debian/rules: Enable unit tests after build. (fb9db8a)
+ * configure.ac: Drop superfluous square bracket (typo fix). (6eab844)
+ * tests/Makefile.am: Wrap test-indicator-ng around Xvfb and
+ dbus-runner. (1a62e1e)
+ * libayatana-indicator/indicator-ng.c: Only run gtk_box_set_spacing()
+ if object to operate on is a GTK_BOX. (770efbc)
- * debian/control: Add B-D systemd [linux-any].
+2020-11-09 Mike Gabriel
-2017-09-22 10:01:13 +0200 Mike Gabriel (7bd1d1db)
+ * release 0.8.3 (4489b12) (tag: 0.8.3)
- * debian/{control,ayatana-indicators-common}: Leave
- ayatana-indicators-commin bin:package empty on non-systemd
- systems.
+2020-10-30 Mike Gabriel
-2017-09-22 09:58:06 +0200 Mike Gabriel (afba9ad9)
+ * Merge branch 'tari01-pr/fix-menu-resizing' (2806da0)
- * configure.ac: Support pkg-config (<< 0.27).
+2020-10-30 Robert Tari
-2017-09-22 09:57:35 +0200 Mike Gabriel (2b5c1b07)
+ * indicator-ng.c: Fix menu resizing for all themes (f5663d0)
- * autotools: Make systemd dependency optional. This makes
- libayatana-indicator available on Debian GNU/kFreeBSD and
- Debian GNU/Hurd.
+2020-09-10 Mike Gabriel
-2017-05-22 15:29:02 +0200 Mike Gabriel (5ff71741)
+ * release 0.8.2 (afa8c6a) (tag: 0.8.2)
+ * Merge branch 'tari01-pr/trim-lcov-py3' (cce52a7)
- * debian/*: Adopt packaging improvements from official Debian
- package.
+2020-09-10 Robert Tari
-2017-05-22 13:48:53 +0200 Mike Gabriel (4fd7ae86)
+ * trim-lcov.py: Port trim-lcov to Python 3 (c310b42)
- * release 0.6.0 (tag: 0.6.0)
+2020-09-08 Mike Gabriel
-2017-05-22 14:03:19 +0200 Mike Gabriel (c49b409b)
+ * Merge branch 'tari01-pr/disable-menu-arrows' (6b0ca37)
- * Add empty NEWS file to prevent FTBFS.
+2020-08-26 Robert Tari
-2017-05-22 13:47:34 +0200 Mike Gabriel (9029a50f)
+ * Disable menu arrows (1df0f1d)
- * Update AUTHORS file.
+2020-09-08 Mike Gabriel
-2017-05-22 13:46:17 +0200 Mike Gabriel (0409f010)
+ * Merge branch 'tari01-pr/blank-label-padding-spacing' (2130f28)
- * Move NEWS -> NEWS.Canonical.
+2020-09-05 Robert Tari
-2017-05-22 13:46:00 +0200 Mike Gabriel (820f332a)
+ * indicator-ng.c: Fix padding and spacing for hidden indicator item
+ labels (73fd4da)
- * autogen.sh: Add 'ayatana-' to the PKG_NAME value.
+2020-09-05 Mike Gabriel
-2017-05-22 13:45:40 +0200 Mike Gabriel (6523f703)
+ * Merge branch 'tari01-pr/blank-label' (cba1c3c)
- * README: Update, don't mention Unity. We are non-Ubuntu centric.
- Also adapt path where indicator service files have to be
- placed.
+2020-09-05 Robert Tari
-2017-05-16 11:09:43 +0200 Mike Gabriel (8c2a254a)
+ * indicator-ng.c: Do not hide image when toggling label visibility
+ (d8b5315)
+ * Whitespace fix (8c8822d)
+ * Whitespace fix (8ccd3bc)
- * Fix up for previous commit.
+2020-09-05 Mike Gabriel
-2017-05-15 16:46:44 +0200 Mike Gabriel (ac3c9604)
+ * Merge branch 'tari01-pr/duplicate-locations' (242b20b)
- * One step back... Mimick Canonical's API. Use their namespace for
- item attributes.
+2020-09-02 Robert Tari
-2017-05-15 16:45:55 +0200 Mike Gabriel (9c42187a)
+ * Fix duplicate location in the datetime indicator. (6e5ab2c)
- * tools/80indicator-debugging: Adapt comment header to our fork.
+2020-08-26 Mike Gabriel
-2017-05-15 11:03:55 +0200 Ted Gould (0f686054)
+ * release 0.8.1 (f89575e) (tag: 0.8.1)
+ * Merge branch 'tari01-pr/fix-menu-scrolling' (7ad3a78)
- * ayatana-indicator-common: Add a package to hold shared systemd
- targets for systemd user session.
+2020-08-25 Robert Tari
-2017-05-15 10:49:03 +0200 Mike Gabriel (4ab98129)
+ * Enable menu scrolling + reset offset on popup (6de1c02)
- * drop buildcruft file
+2020-08-17 Mike Gabriel
-2017-05-15 10:18:27 +0200 Mike Gabriel (c4a411dd)
+ * Merge branch 'tari01-pr/multiple-messaging-clients' (cb4cf54)
- * build system: Switch from gnome-common to mate-common.
+2020-08-16 Robert Tari
-2016-02-19 10:56:53 +0100 Iain Lane (0871d147)
+ * Fix IDO insertion index in Indicator Messages with multiple clients
+ (b6fd2c1)
- * Add -lm via LDADD to resolve FTBFS in Ubuntu 16.04 and Debian
- stretch/unstable.
+2020-08-14 Mike Gabriel
-2015-11-16 16:05:54 +0100 Mike Gabriel (c9b08c10)
+ * release 0.8.0 (8beffb3) (tag: 0.8.0)
+ * debian/control: Let ayatana-indicator-common break system
+ indicators before 0.8.0 (except power indicator, that one
+ before 2.1.0). (d87433d)
+ * debian/control: Update versioned B-D on libayatana-ido3-dev to
+ 0.8.0-0~. (758b74d)
+ * configure.ac: Bump IDO_REQUIRED_VERSION to 0.8.0. (5afd8bf)
- * Use x-ayatanaindicator-* instead of x-canonical-*.
+2020-08-14 Robert Tari
-2015-11-16 15:16:58 +0100 Mike Gabriel (1748adda)
+ * Fix width of menu panes. (0a798f3)
- * Makefile.am: Replace dist-hook for Bazaar based VCS repo against
- dist-hook for a Git based VCS repo.
+2020-08-13 Robert Tari
-2015-11-11 14:35:44 +0100 Mike Gabriel (35fbed98)
+ * Merge branch 'sunweaver-pr/ayatanamenuitemfactory-from-ido'
+ Attributes GH PR #15:
+ https://github.com/AyatanaIndicators/libayatana-indicator/pull/15
+ (e9902ad)
- * debian/libayatana-indicator*.symbols: Add .symbols files for shared
- libraries.
+2020-08-13 Mike Gabriel
-2015-11-11 14:35:14 +0100 Mike Gabriel (9469b6ec)
+ * Use ayatanamenuitemfactory.(c|h) from ayatana-ido. Reduce code
+ duplications. (e34f12e)
+ * Merge branch 'tari01-pr/ido-insertion-error-handling' (573e40f)
- * debian/rules: Remove builddir/ and build-aux/ directories when
- auto-cleaning up package.
+2020-08-13 Robert Tari
-2015-11-11 05:52:38 +0100 Mike Gabriel (ed550aa4)
+ * Try to prevent cascading failure if IDO creation fails (f0ee1df)
- * Drop .bzrignore file.
+2020-08-11 Mike Gabriel
-2015-11-10 22:52:23 +0100 Mike Gabriel (3682a7c4)
+ * Merge branch 'tari01-pr/replace-x-canonical-attributes' (27f00a5)
- * debian/changelog: Use a Debianinc revision in the package version
- (0.6.0 -> 0.6.0-0).
+2020-08-11 Robert Tari
-2015-11-10 17:52:01 +0100 Mike Gabriel (9c0552f4)
+ * Replace x-canonical attributes (004ae04)
- * debian/control: Fix build-dep issue for libayatana-ido3-0.4-dev.
+2020-08-10 Mike Gabriel
-2015-11-07 06:02:30 +0000 Mike Gabriel (fc142ac7)
+ * debian/ayatana-indicator-common.links: Add FIXME/reminder to drop
+ manual symlinking of systemd user service file once DH
+ compat level is raised to a level above 12. (f57637e)
+ * Merge branch 'ubports-fix-systemd' (985f492)
- * Various fixes for making the library name change complete.
+2020-08-09 Marius Gripsgard
-2015-11-06 14:46:09 +0000 Mike Gabriel (9d1b39fa)
+ * Use indicators.target as the systemd lifecycle unit (42358cc)
- * Fork libayatana-indicator from Ubuntu's libindicator shared
- library.
+2020-08-08 Robert Tari
-2014-09-22 13:41:36 +0000 CI bot (b1f280aa)
+ * Fix tests and deprecations (fixes #1) (7ceee62)
- * Releasing 12.10.2+14.10.20140922-0ubuntu1
+2020-07-31 Robert Tari
-2014-09-22 13:41:26 +0000 Marco Trevisan (Treviño) (5ae67890)
+ * Merge pull request #5 from tari01/master (a5b1374)
+ * Resize open menus as items change (e528ee8)
- * IndicatorNG: Reverse the scroll delta on left scroll events
+2020-07-28 Mike Gabriel
-2014-07-16 15:41:25 +0200 Marco Trevisan (Treviño) (19b72989)
+ * release 0.7.1 (74cfb21) (tag: 0.7.1)
- * IndicatorNG: Reverse the scroll delta on left scroll events
+2020-07-27 Robert Tari
-2014-07-16 15:40:42 +0200 Marco Trevisan (Treviño) (1a211d63)
+ * Merge pull request #4 from tari01/master (a7c9a35)
+ * Display and connect the Indicator Messages widgets (208176b)
- * IndicatorLoader: convert gtk scroll events to indicator object
- events
+2020-07-24 Mike Gabriel
-2014-07-16 15:00:51 +0200 Marco Trevisan (Treviño) (515f7177)
+ * debian/*: Update from official Debian packaging. (9a41af8)
- * IndicatorLoader: add scroll-entry support
+2020-07-23 Mike Gabriel
-2014-04-02 14:50:54 +0000 CI bot (14a8261f)
+ * release 0.7.0 (87e85c2) (tag: 0.7.0)
- * Releasing 12.10.2+14.04.20140402-0ubuntu1
+2020-07-22 Mike Gabriel
-2014-04-02 14:50:38 +0000 William Hua (e662c874)
+ * debian/libayatana-indicator3-7.symbols: Add new symbols, already
+ targetting next upstream release. (e32b9d0)
+ * libayatana-indicator/Makefile.am: Make sure,
+ ayatanamenuitemfactory.c gets built during GTK-3 builds.
+ (1917f00)
- * Don't load using the icon info structure if it's a GBytesIcon.
- Fixes: 1293548
+2020-07-22 Robert Tari
-2014-03-29 22:12:56 +1300 William Hua (68a5ec6f)
+ * Display IDO widgets/Use own action muxer/Allow IDO CSS styling
+ (b619354)
- * Don't load using the icon info structure if it's a bytes icon.
+2020-07-22 Mike Gabriel
-2014-03-04 10:58:35 +0000 CI bot (1dc288c3)
+ * Merge branch 'ntninja-master' (c984cc5)
- * Releasing 12.10.2+14.04.20140304-0ubuntu1
+2019-12-12 Alexander Schlarb
-2014-03-04 10:58:28 +0000 Marco Trevisan (Treviño) (a0a0b28d)
+ * Make building of `ayatana-indicator-loader3` optional (c6f93fe)
- * IndicatorImageHelper: always try to use a GIcon or the filename as
- source of the GdkImage
+2019-11-20 Mike Gabriel
-2014-03-03 11:25:29 +0100 Marco Trevisan (Treviño) (844e1b50)
+ * release 0.6.3 (faf2784) (tag: 0.6.3)
+ * debian/rules: Switch from dh_install --fail-missing to dh_missing
+ --fail-missing. (a5bc467)
+ **/Makefile.am: Set -DGTK_DISABLE_DEPRECATED for gtk2 builds. Fixes
+ FTBFS against Glib2.0 >= 2.62. (dd16c4c)
- * IndicatorImageHelper: let's use the actual icon file if its height
- is less than ICON_SIZE
+2019-08-29 Mike Gabriel
-2014-03-03 10:44:10 +0100 Marco Trevisan (Treviño) (8a1bdd70)
+ * libayatana-indicator/indicator-object.c: Typo fix in comment.
+ (b4a069f)
- * IndicatorLoader: Make sure that we load the icon at its original
- size, if not higher than IMAGE_SIZE
+2018-11-05 Mike Gabriel
-2014-02-28 07:17:20 +0100 Marco Trevisan (Treviño) (acf1752f)
+ * GObject private API/ABI: Get rid of g_type_class_add_private() and
+ use DEFINE_TYPE_WITH_PRIVATE(). (a734066)
+ * debian/control: Switch B-D from libayatana-ido3-0.4-dev ->
+ libayatana-ido3-dev. (e8073fd)
- * ImageHelper: set image from icon name if we have the filename
+2018-03-20 Mike Gabriel
-2014-02-28 06:52:57 +0100 Marco Trevisan (Treviño) (12db08f2)
+ * release 0.6.2 (3927e0f) (tag: 0.6.2)
+ * libayatana-indicator/indicator-ng.c: Type cast assignments from
+ g_object_ref_sink(). (34b4321)
+ * debian/control: Drop unneeded D (libayatana-indicator3-dev):
+ libayatana-indicator-dev. (3b3c265)
- * IndicatorImageHelper: always try to use a GIcon or the file-name as
- source of the Gdk image
+2017-10-26 Mike Gabriel
-2014-02-18 15:45:39 +0000 CI bot (517d1b4d)
+ * Makefile.am: Drop distcheck features. (8de3f59)
- * Releasing 12.10.2+14.04.20140218-0ubuntu1
+2017-10-22 Mike Gabriel
-2014-02-18 15:45:31 +0000 Marco Trevisan (Treviño) (31d08197)
+ * debian/changelog: Fix source project name in most recent changelog
+ stanza. (cffab72)
- * IndicatorObject: add parent_window parameter to IndicatorEntry
+2017-09-27 Mike Gabriel
-2014-02-13 17:18:53 +0100 Marco Trevisan (Treviño) (9affd1f6)
+ * debian/changelog: post-release fix in date strings (2) (fb3d8fe)
+ * debian/changelog: post-release fix in date strings (for 0.6.0 and
+ 0.6.1) (7a2f684)
- * IndicatorObject: add parent_window parameter to IndicatorEntry
+2017-09-23 Mike Gabriel
-2014-01-29 16:47:10 +0000 CI bot (a7660e54)
+ * post-release fix-up of debian/changelog (4f355a3)
- * Releasing 12.10.2+14.04.20140129-0ubuntu1
+2017-09-22 Mike Gabriel
-2014-01-29 16:47:01 +0000 Lars Uebernickel (ced7687e)
+ * debian/rules: Drop dh_install call for bin:pkg
+ -plibayatana-indicator-tools. We don't ship that anymore.
+ (6233943)
+ * debian/ayatana-indicator-common.install: Set x-bit on file
+ permissions. (7222339)
+ * release 0.6.1 (20640dd) (tag: 0.6.1)
+ * debian/control: Add B-D systemd [linux-any]. (df6c2e9)
+ * debian/{control,ayatana-indicators-common}: Leave
+ ayatana-indicators-commin bin:package empty on non-systemd
+ systems. (7bd1d1d)
+ * configure.ac: Support pkg-config (<< 0.27). (afba9ad)
+ * autotools: Make systemd dependency optional. This makes
+ libayatana-indicator available on Debian GNU/kFreeBSD and
+ Debian GNU/Hurd. (2b5c1b0)
+
+2017-05-22 Mike Gabriel
+
+ * debian/*: Adopt packaging improvements from official Debian
+ package. (5ff7174)
+ * release 0.6.0 (4fd7ae8) (tag: 0.6.0)
+ * Add empty NEWS file to prevent FTBFS. (c49b409)
+ * Update AUTHORS file. (9029a50)
+ * Move NEWS -> NEWS.Canonical. (0409f01)
+ * autogen.sh: Add 'ayatana-' to the PKG_NAME value. (820f332)
+ * README: Update, don't mention Unity. We are non-Ubuntu centric.
+ Also adapt path where indicator service files have to be
+ placed. (6523f70)
- * indicator-ng: support "submenu-action" on root menu items Fixes:
- 793450
+2017-05-16 Mike Gabriel
-2014-01-29 14:16:59 +0100 Lars Uebernickel (239817c9)
+ * Fix up for previous commit. (8c2a254)
- * indicator-ng: support "submenu-action" on root menu items
+2017-05-15 Mike Gabriel
-2014-01-17 18:40:36 +0100 Łukasz 'sil2100' Zemczak (759fdd8e)
+ * One step back... Mimick Canonical's API. Use their namespace for
+ item attributes. (ac3c960)
+ * tools/80indicator-debugging: Adapt comment header to our fork.
+ (9c42187)
- * Sync trunk with what's in the archive
+2017-05-15 Ted Gould
-2013-12-20 20:31:02 +0000 Colin Watson (b7f99387)
+ * ayatana-indicator-common: Add a package to hold shared systemd
+ targets for systemd user session. (0f68605)
- * Use named icons rather than (deprecated) stock items. Fixes:
- https://bugs.launchpad.net/bugs/1262626.
+2017-05-15 Mike Gabriel
-2013-12-20 11:30:44 +0000 Colin Watson (a1e53835)
+ * drop buildcruft file (4ab9812)
+ * build system: Switch from gnome-common to mate-common. (c4a411d)
- * Use named icons rather than (deprecated) stock items.
+2016-02-19 Iain Lane
-2013-12-19 15:35:18 +0000 Lars Uebernickel (f6b60f14)
+ * Add -lm via LDADD to resolve FTBFS in Ubuntu 16.04 and Debian
+ stretch/unstable. (0871d14)
- * Don't treat deprecation warnings as errors and fix indicator-ng
- test for gtk 3.10. Fixes:
- https://bugs.launchpad.net/bugs/1262626.
+2015-11-16 Mike Gabriel
-2013-12-19 15:51:13 +0100 Lars Uebernickel (b2d4deb6)
+ * Use x-ayatanaindicator-* instead of x-canonical-*. (c9b08c1)
+ * Makefile.am: Replace dist-hook for Bazaar based VCS repo against
+ dist-hook for a Git based VCS repo. (1748add)
- * test-indicator-ng: adapt to new gtkmodelmenuitem widget structure
+2015-11-11 Mike Gabriel
-2013-12-19 15:50:54 +0100 Lars Uebernickel (ef145fcb)
+ * debian/libayatana-indicator*.symbols: Add .symbols files for shared
+ libraries. (35fbed9)
+ * debian/rules: Remove builddir/ and build-aux/ directories when
+ auto-cleaning up package. (9469b6e)
+ * Drop .bzrignore file. (ed550aa)
- * Don't treat deprecation warnings as errors
+2015-11-10 Mike Gabriel
-2013-11-25 15:38:48 +0000 Automatic PS uploader (a1318f04)
+ * debian/changelog: Use a Debianinc revision in the package version
+ (0.6.0 -> 0.6.0-0). (3682a7c)
+ * debian/control: Fix build-dep issue for libayatana-ido3-0.4-dev.
+ (9c0552f)
- * Releasing 12.10.2+14.04.20131125-0ubuntu1 (revision 517 from
- lp:libindicator).
+2015-11-07 Mike Gabriel
-2013-11-25 03:55:11 +0000 Automatic PS uploader (cef38fd6)
+ * Various fixes for making the library name change complete.
+ (fc142ac)
- * Releasing 12.10.2+14.04.20131125-0ubuntu1, based on r517
+2015-11-06 Mike Gabriel
-2013-10-31 10:00:21 -0700 Timo Jyrinki (69132b0e)
+ * Fork libayatana-indicator from Ubuntu's libindicator shared
+ library. (9d1b39f)
- * Sync changelog from what's in archive.
+2014-09-22 CI bot
-2013-10-29 00:18:26 +0000 Lars Uebernickel (cf5ac5ea)
+ * Releasing 12.10.2+14.10.20140922-0ubuntu1 (b1f280a)
- * Allow setting different positions for each profile in indicator
- files
+2014-09-22 Marco Trevisan (Treviño)
-2013-10-24 03:44:21 +0000 Charles Kerr (773d09bf)
+ * IndicatorNG: Reverse the scroll delta on left scroll events
+ (5ae6789)
- * When we can't get a handle to the bus, exit gracefully instead of
- crashing. Fixes: https://bugs.launchpad.net/bugs/1218222.
+2014-07-16 Marco Trevisan (Treviño)
-2013-10-23 21:08:35 -0500 Charles Kerr (2d8ee13a)
+ * IndicatorNG: Reverse the scroll delta on left scroll events
+ (19b7298)
+ * IndicatorLoader: convert gtk scroll events to indicator object
+ events (1a211d6)
+ * IndicatorLoader: add scroll-entry support (515f717)
- * minor cleanup in the dispose() and finalize() functions
+2014-04-02 CI bot
-2013-10-23 21:04:19 -0500 Charles Kerr (40b4288e)
+ * Releasing 12.10.2+14.04.20140402-0ubuntu1 (14a8261)
- * When we can't get a handle to the system bus, exit gracefully
- instead of crashing.
+2014-04-02 William Hua
-2013-10-17 20:04:16 +0000 Lars Uebernickel (de955883)
+ * Don't load using the icon info structure if it's a GBytesIcon.
- * indicator-ng: always create entry.label and entry.image
+ Fixes: 1293548 (e662c87)
-2013-10-17 14:57:08 -0400 Lars Uebernickel (244d6180)
+2014-03-29 William Hua
- * indicator-ng: always create entry.label and entry.image
+ * Don't load using the icon info structure if it's a bytes icon.
+ (68a5ec6)
-2013-10-17 02:04:17 +0000 Lars Uebernickel (ccf83adc)
+2014-03-04 CI bot
- * Warn when an indicator doesn't get respawned anymore.
+ * Releasing 12.10.2+14.04.20140304-0ubuntu1 (1dc288c)
-2013-10-16 19:16:08 -0400 Lars Uebernickel (0a9a95f2)
+2014-03-04 Marco Trevisan (Treviño)
- * Warn when an indicator doesn't get respawned anymore
+ * IndicatorImageHelper: always try to use a GIcon or the filename as
+ source of the GdkImage (a0a0b28)
-2013-10-10 16:50:29 +0200 Lars Uebernickel (478ea097)
+2014-03-03 Marco Trevisan (Treviño)
- * Allow setting per-profile positions in indicator files
+ * IndicatorImageHelper: let's use the actual icon file if its height
+ is less than ICON_SIZE (844e1b5)
+ * IndicatorLoader: Make sure that we load the icon at its original
+ size, if not higher than IMAGE_SIZE (8a1bdd7)
-2013-09-13 19:42:14 +0000 Automatic PS uploader (a52033ed)
+2014-02-28 Marco Trevisan (Treviño)
- * Releasing 12.10.2+13.10.20130913-0ubuntu1 (revision 511 from
- lp:libindicator).
+ * ImageHelper: set image from icon name if we have the filename
+ (acf1752)
+ * IndicatorImageHelper: always try to use a GIcon or the file-name as
+ source of the Gdk image (12db08f)
-2013-09-13 15:15:38 +0000 Automatic PS uploader (f5e47167)
+2014-02-18 CI bot
- * Releasing 12.10.2+13.10.20130913-0ubuntu1, based on r511
+ * Releasing 12.10.2+14.04.20140218-0ubuntu1 (517d1b4)
-2013-09-09 14:00:06 +0000 Lars Uebernickel (5878e6b0)
+2014-02-18 Marco Trevisan (Treviño)
- * Expose scrolling and middle clicking to fix bug #1221242 and
- #1204036 (make scrolling and middle clicking work on the
- sound indicator). Fixes:
- https://bugs.launchpad.net/bugs/1204036,
- https://bugs.launchpad.net/bugs/1221242.
+ * IndicatorObject: add parent_window parameter to IndicatorEntry
+ (31d0819)
-2013-09-09 15:32:49 +0200 Lars Uebernickel (9e857c3e)
+2014-02-13 Marco Trevisan (Treviño)
- * Remove debug message
+ * IndicatorObject: add parent_window parameter to IndicatorEntry
+ (9affd1f)
-2013-09-09 14:09:57 +0200 Lars Uebernickel (bb393622)
+2014-01-29 CI bot
- * Support x-canonical-secondary action
+ * Releasing 12.10.2+14.04.20140129-0ubuntu1 (a7660e5)
-2013-09-09 13:40:49 +0200 Lars Uebernickel (f4fa5663)
+2014-01-29 Lars Uebernickel
- * Support "x-canonical-scroll-action"
+ * indicator-ng: support "submenu-action" on root menu items
+ Fixes:
+ 793450 (ced7687)
+ * indicator-ng: support "submenu-action" on root menu items (239817c)
-2013-08-23 02:49:55 +0000 Automatic PS uploader (86f3d9e2)
+2014-01-17 Łukasz 'sil2100' Zemczak
- * Releasing 12.10.2+13.10.20130823-0ubuntu1 (revision 509 from
- lp:libindicator).
+ * Sync trunk with what's in the archive (759fdd8)
-2013-08-23 02:08:00 +0000 Automatic PS uploader (415565be)
+2013-12-20 Colin Watson
- * Releasing 12.10.2+13.10.20130823-0ubuntu1, based on r509
+ * Use named icons rather than (deprecated) stock items.
+ Fixes:
+ https://bugs.launchpad.net/bugs/1262626. (b7f9938)
+ * Use named icons rather than (deprecated) stock items. (a1e5383)
-2013-08-22 22:33:16 +0000 Marco Trevisan (Treviño) (b47e0f13)
+2013-12-19 Lars Uebernickel
- * IndicatorDesktopShortcuts: add support to Path key for shortcut
- items. Fixes: https://bugs.launchpad.net/bugs/1113883.
+ * Don't treat deprecation warnings as errors and fix indicator-ng
+ test for gtk 3.10.
+ Fixes:
+ https://bugs.launchpad.net/bugs/1262626. (f6b60f1)
+ * test-indicator-ng: adapt to new gtkmodelmenuitem widget structure
+ (b2d4deb)
+ * Don't treat deprecation warnings as errors (ef145fc)
-2013-08-22 18:57:50 +0200 Marco Trevisan (Treviño) (59a242dc)
+2013-11-25 Automatic PS uploader
- * IndicatorDesktopShortcut: fix indentation
+ * Releasing 12.10.2+14.04.20131125-0ubuntu1 (revision 517 from
+ lp:libindicator). (a1318f0)
+ * Releasing 12.10.2+14.04.20131125-0ubuntu1, based on r517 (cef38fd)
-2013-08-22 18:55:46 +0200 Marco Trevisan (Treviño) (427b5d56)
+2013-10-31 Timo Jyrinki
- * IndicatorDesktopShortcuts: restore previous working dir if we
- changed it
+ * Sync changelog from what's in archive. (69132b0)
-2013-08-09 12:54:25 +0200 Marco Trevisan (Treviño) (6d93aba8)
+2013-10-29 Lars Uebernickel
- * IndicatorDesktopShortcuts: use g_key_file_get_string for path
+ * Allow setting different positions for each profile in indicator
+ files (cf5ac5e)
-2013-08-08 12:18:47 +0200 Marco Trevisan (Treviño) (c0bb2944)
+2013-10-24 Charles Kerr
- * IndicatorDesktopShortcuts: add support to Path key for shortcut
- items
+ * When we can't get a handle to the bus, exit gracefully instead of
+ crashing.
+ Fixes: https://bugs.launchpad.net/bugs/1218222.
+ (773d09b)
-2013-07-31 08:50:32 +0000 Automatic PS uploader (f6957122)
+2013-10-23 Charles Kerr
- * Releasing 12.10.2+13.10.20130731-0ubuntu1 (revision 507 from
- lp:libindicator).
+ * minor cleanup in the dispose() and finalize() functions (2d8ee13)
+ * When we can't get a handle to the system bus, exit gracefully
+ instead of crashing. (40b4288)
-2013-07-31 02:02:40 +0000 Automatic PS uploader (a8df6b36)
+2013-10-17 Lars Uebernickel
- * Releasing 12.10.2+13.10.20130731-0ubuntu1, based on r507
+ * indicator-ng: always create entry.label and entry.image (de95588)
+ * indicator-ng: always create entry.label and entry.image (244d618)
+ * Warn when an indicator doesn't get respawned anymore. (ccf83ad)
-2013-07-30 19:35:58 +0000 Charles Kerr (ae7687cc)
+2013-10-16 Lars Uebernickel
- * in indicator-loader3, if we're looking at an ng-style indicator,
- show all of its profiles instead of just one.
+ * Warn when an indicator doesn't get respawned anymore (0a9a95f)
-2013-07-26 12:32:08 -0500 Charles Kerr (e430061e)
+2013-10-10 Lars Uebernickel
- * explicitly set UBUNTU_MENUPROXY to 0
+ * Allow setting per-profile positions in indicator files (478ea09)
-2013-07-26 01:58:55 -0500 Charles Kerr (f842a808)
+2013-09-13 Automatic PS uploader
- * more copyediting. why am I awake?
+ * Releasing 12.10.2+13.10.20130913-0ubuntu1 (revision 511 from
+ lp:libindicator). (a52033e)
+ * Releasing 12.10.2+13.10.20130913-0ubuntu1, based on r511 (f5e4716)
-2013-07-26 01:28:09 -0500 Charles Kerr (5acc284d)
+2013-09-09 Lars Uebernickel
- * copyediting: fix linewraps
+ * Expose scrolling and middle clicking to fix bug #1221242 and
+ #1204036 (make scrolling and middle clicking work on the
+ sound indicator).
+ Fixes:
+ https://bugs.launchpad.net/bugs/1204036,
+ https://bugs.launchpad.net/bugs/1221242. (5878e6b)
+ * Remove debug message (9e857c3)
+ * Support x-canonical-secondary action (bb39362)
+ * Support "x-canonical-scroll-action" (f4fa566)
-2013-07-25 23:56:05 -0500 Charles Kerr (7f619929)
+2013-08-23 Automatic PS uploader
- * plug a keyfile leak
+ * Releasing 12.10.2+13.10.20130823-0ubuntu1 (revision 509 from
+ lp:libindicator). (86f3d9e)
+ * Releasing 12.10.2+13.10.20130823-0ubuntu1, based on r509 (415565b)
-2013-07-25 23:46:11 -0500 Charles Kerr (083af7d3)
+2013-08-22 Marco Trevisan (Treviño)
- * in indicator-loader, show =all= the profiles
+ * IndicatorDesktopShortcuts: add support to Path key for shortcut
+ items.
+ Fixes: https://bugs.launchpad.net/bugs/1113883.
+ (b47e0f1)
+ * IndicatorDesktopShortcut: fix indentation (59a242d)
+ * IndicatorDesktopShortcuts: restore previous working dir if we
+ changed it (427b5d5)
-2013-07-19 02:49:52 +0000 Automatic PS uploader (ce7a42fa)
+2013-08-09 Marco Trevisan (Treviño)
- * Releasing 12.10.2+13.10.20130719-0ubuntu1 (revision 505 from
- lp:libindicator).
+ * IndicatorDesktopShortcuts: use g_key_file_get_string for path
+ (6d93aba)
-2013-07-19 02:03:05 +0000 Automatic PS uploader (ed00a135)
+2013-08-08 Marco Trevisan (Treviño)
- * Releasing 12.10.2+13.10.20130719-0ubuntu1, based on r505
+ * IndicatorDesktopShortcuts: add support to Path key for shortcut
+ items (c0bb294)
-2013-07-18 07:27:06 +0000 Marco Trevisan (Treviño) (0c4921a6)
+2013-07-31 Automatic PS uploader
- * IndicatorDesktopShortcuts: fix memory leak, free groupheader.
+ * Releasing 12.10.2+13.10.20130731-0ubuntu1 (revision 507 from
+ lp:libindicator). (f695712)
+ * Releasing 12.10.2+13.10.20130731-0ubuntu1, based on r507 (a8df6b3)
-2013-07-17 21:47:48 +0200 Marco Trevisan (Treviño) (598c4b7c)
+2013-07-30 Charles Kerr
- * IndicatorDesktopShortcuts: free groupheader
+ * in indicator-loader3, if we're looking at an ng-style indicator,
+ show all of its profiles instead of just one. (ae7687c)
-2013-07-02 09:35:19 +0000 Automatic PS uploader (507e694f)
+2013-07-26 Charles Kerr
- * Releasing 12.10.2+13.10.20130702-0ubuntu1 to ubuntu.
+ * explicitly set UBUNTU_MENUPROXY to 0 (e430061)
+ * more copyediting. why am I awake? (f842a80)
+ * copyediting: fix linewraps (5acc284)
-2013-07-02 02:02:40 +0000 Automatic PS uploader (4cacb640)
+2013-07-25 Charles Kerr
- * Releasing 12.10.2+13.10.20130702-0ubuntu1, based on r503
+ * plug a keyfile leak (7f61992)
+ * in indicator-loader, show =all= the profiles (083af7d)
-2013-06-28 17:50:12 -0400 Lars Uebernickel (4ec8c2f6)
+2013-07-19 Automatic PS uploader
- * Add support for indicators to tell the panel where they'd like to
- appear
+ * Releasing 12.10.2+13.10.20130719-0ubuntu1 (revision 505 from
+ lp:libindicator). (ce7a42f)
+ * Releasing 12.10.2+13.10.20130719-0ubuntu1, based on r505 (ed00a13)
-2013-06-28 16:03:16 -0400 Lars Uebernickel (e7e2b635)
+2013-07-18 Marco Trevisan (Treviño)
- * indicator-object: g_return_if_fail -> g_return_val_if_fail
+ * IndicatorDesktopShortcuts: fix memory leak, free groupheader.
+ (0c4921a)
-2013-06-28 14:36:28 -0400 Lars Uebernickel (90904091)
+2013-07-17 Marco Trevisan (Treviño)
- * README: include information about the new Position key in indicator
- files
+ * IndicatorDesktopShortcuts: free groupheader (598c4b7)
-2013-06-28 14:30:33 -0400 Lars Uebernickel (e744e385)
+2013-07-02 Automatic PS uploader
- * Allow indicators to tell the panel where they want to appear
+ * Releasing 12.10.2+13.10.20130702-0ubuntu1 to ubuntu. (507e694)
+ * Releasing 12.10.2+13.10.20130702-0ubuntu1, based on r503 (4cacb64)
-2013-06-28 15:20:50 +0000 Automatic PS uploader (3470db7e)
+2013-06-28 Lars Uebernickel
- * Releasing 12.10.2+13.10.20130628-0ubuntu1 to ubuntu.
+ * Add support for indicators to tell the panel where they'd like to
+ appear (4ec8c2f)
+ * indicator-object: g_return_if_fail -> g_return_val_if_fail
+ (e7e2b63)
+ * README: include information about the new Position key in indicator
+ files (9090409)
+ * Allow indicators to tell the panel where they want to appear
+ (e744e38)
-2013-06-28 02:02:40 +0000 Automatic PS uploader (55e85a14)
+2013-06-28 Automatic PS uploader
- * Releasing 12.10.2+13.10.20130628-0ubuntu1, based on r501
+ * Releasing 12.10.2+13.10.20130628-0ubuntu1 to ubuntu. (3470db7)
+ * Releasing 12.10.2+13.10.20130628-0ubuntu1, based on r501 (55e85a1)
-2013-06-27 19:35:40 +0000 Charles Kerr (b4ea3e79)
+2013-06-27 Charles Kerr
- * Fixes a crasher bug in ng's parsing of the response to
+ * Fixes a crasher bug in ng's parsing of the response to
org.freedesktop.DBus.StartServiceByName: The result's
- variant format is "(u)", not "u".
-
-2013-06-27 12:30:16 -0500 Charles Kerr (104bcd68)
-
- * in indicator_ng_service_started(), the result's variant type should
- be parsed as '(u)' rather than 'u'
+ variant format is "(u)", not "u". (b4ea3e7)
+ * in indicator_ng_service_started(), the result's variant type should
+ be parsed as '(u)' rather than 'u' (104bcd6)
-2013-06-19 13:05:51 +0000 Automatic PS uploader (7bd45482)
+2013-06-19 Automatic PS uploader
- * Releasing 12.10.2daily13.06.19.1-0ubuntu1 to ubuntu.
+ * Releasing 12.10.2daily13.06.19.1-0ubuntu1 to ubuntu. (7bd4548)
+ * Releasing 12.10.2daily13.06.19.1-0ubuntu1, based on r499 (0bb928f)
-2013-06-19 10:45:14 +0000 Automatic PS uploader (0bb928f4)
+2013-06-19 Didier Roche
- * Releasing 12.10.2daily13.06.19.1-0ubuntu1, based on r499
+ * Add missing conflicts/replaces (1b0f90a)
-2013-06-19 12:42:52 +0200 Didier Roche (1b0f90ac)
+2013-06-17 Charles Kerr
- * Add missing conflicts/replaces
-
-2013-06-17 21:22:07 +0000 Charles Kerr (20c7b65f)
-
- * in indicator_ng_update_entry, unconditionally call set_label,
+ * in indicator_ng_update_entry, unconditionally call set_label,
set_icon, set_accessible. Previously these were only
called if the respective fields weren't NULL, which made
it impossible to, for example, turn off a label or icon
- once it had been set.
+ once it had been set. (20c7b65)
-2013-06-16 23:45:30 -0500 Charles Kerr (d5d01f6b)
+2013-06-16 Charles Kerr
- * in indicator_ng_update_entry, unconditionally call set_label,
+ * in indicator_ng_update_entry, unconditionally call set_label,
set_icon, set_accessible. Previously these were only
called if the respective fields weren't NULL, which made
it impossible to, for example, turn off a label or icon
- once it had been set.
-
-2013-06-07 21:21:17 +0000 Lars Uebernickel (d5fd9463)
-
- * indicator-ng: properly fail when keyfile doesn't exist.
-
-2013-06-07 20:49:24 +0000 Ted Gould (b0949311)
-
- * Remove the GTK2 version of the tools.
-
-2013-06-07 14:45:27 -0500 Ted Gould (1c70a2e5)
-
- * Gone.
-
-2013-06-07 14:45:17 -0500 Ted Gould (277ba855)
-
- * Move the debugging environment variables into the other tools
- package
-
-2013-06-07 14:38:00 -0500 Ted Gould (3c96b991)
-
- * Don't build the GTK2 tools
-
-2013-06-07 14:43:51 -0400 Lars Uebernickel (20144540)
-
- * indicator-ng: properly fail when keyfile doesn't exist
-
-2013-06-07 11:34:25 -0400 Lars Uebernickel (1d4bcddf)
+ once it had been set. (d5d01f6)
- * Merge lp:~larsu/call-ido-init
+2013-06-07 Lars Uebernickel
-2013-06-07 11:33:03 -0400 Lars Uebernickel (12cc75fb)
+ * indicator-ng: properly fail when keyfile doesn't exist. (d5fd946)
- * Merge lp:~larsu/new-indicator-file-format
+2013-06-07 Ted Gould
-2013-06-07 09:50:12 +0000 Automatic PS uploader (060711f8)
+ * Remove the GTK2 version of the tools. (b094931)
+ * Gone. (1c70a2e)
+ * Move the debugging environment variables into the other tools
+ package (277ba85)
+ * Don't build the GTK2 tools (3c96b99)
- * Releasing 12.10.2daily13.06.07-0ubuntu1 to ubuntu.
+2013-06-07 Lars Uebernickel
-2013-06-07 02:02:38 +0000 Automatic PS uploader (2edf591f)
+ * indicator-ng: properly fail when keyfile doesn't exist (2014454)
+ * Merge lp:~larsu/call-ido-init (1d4bcdd)
+ * Merge lp:~larsu/new-indicator-file-format (12cc75f)
- * Releasing 12.10.2daily13.06.07-0ubuntu1, based on r492
+2013-06-07 Automatic PS uploader
-2013-06-04 13:11:17 -0400 Lars Uebernickel (4adb2af2)
+ * Releasing 12.10.2daily13.06.07-0ubuntu1 to ubuntu. (060711f)
+ * Releasing 12.10.2daily13.06.07-0ubuntu1, based on r492 (2edf591)
- * Revert r490
+2013-06-04 Lars Uebernickel
-2013-05-29 14:54:35 -0400 Lars Uebernickel (0d3ebcb5)
+ * Revert r490 (4adb2af)
- * indicator-ng: fix crash
+2013-05-29 Lars Uebernickel
-2013-05-29 17:33:54 +0000 Marco Trevisan (Treviño) (8b78adad)
+ * indicator-ng: fix crash (0d3ebcb)
- * tests: fix compilation and make check.
+2013-05-29 Marco Trevisan (Treviño)
-2013-05-29 17:16:46 +0000 Marco Trevisan (Treviño) (ab3b6ee2)
+ * tests: fix compilation and make check. (8b78ada)
+ * IndicatorDesktopShortcuts: Use the proper way to create an AppInfo
+ from command-line (ab3b6ee)
- * IndicatorDesktopShortcuts: Use the proper way to create an AppInfo
- from command-line
+2013-05-29 Ted Gould
-2013-05-29 16:35:29 +0000 Ted Gould (d652787d)
+ * Migrating away from deprecated gtk_icon_info_free(). (d652787)
+ * Handling the deprecation of gtk_icon_info_free() (b46f29a)
- * Migrating away from deprecated gtk_icon_info_free().
+2013-05-27 Lars Uebernickel
-2013-05-29 10:25:00 -0500 Ted Gould (b46f29a0)
+ * debian/control: add ido dependency (f9c0971)
- * Handling the deprecation of gtk_icon_info_free()
+2013-05-24 Lars Uebernickel
-2013-05-27 12:08:30 -0400 Lars Uebernickel (f9c09716)
+ * IndicatorNg: update indicator file format (9627530)
+ * refactor indicator_ng_initable_init (2712010)
- * debian/control: add ido dependency
+2013-05-23 Lars Uebernickel
-2013-05-24 18:17:45 -0400 Lars Uebernickel (9627530c)
+ * Depend on ido and call ido_init() in indicator-loader (a591305)
+ * indicator-image-helper: stop using deprecated gtk_icon_info_free()
+ (f77f41e)
- * IndicatorNg: update indicator file format
+2013-05-22 William Hua
-2013-05-24 17:10:40 -0400 Lars Uebernickel (2712010f)
-
- * refactor indicator_ng_initable_init
-
-2013-05-23 09:04:13 -0400 Lars Uebernickel (a5913055)
-
- * Depend on ido and call ido_init() in indicator-loader
-
-2013-05-23 09:02:44 -0400 Lars Uebernickel (f77f41e2)
-
- * indicator-image-helper: stop using deprecated gtk_icon_info_free()
-
-2013-05-22 18:08:11 +0000 William Hua (ae198af4)
-
- * Use GIcon's serialization/deserialization interface for indicator
+ * Use GIcon's serialization/deserialization interface for indicator
icons so that we can load icons as PNG data transmitted
- over the bus.
-
-2013-05-19 12:47:01 -0400 William Hua (176ea145)
-
- * Code clean-up.
-
-2013-05-03 16:21:37 +0000 Automatic PS uploader (5cac96c2)
-
- * Releasing 12.10.2daily13.05.02-0ubuntu1 to ubuntu.
-
-2013-05-02 22:59:06 +0000 Automatic PS uploader (0496a1fa)
+ over the bus. (ae198af)
- * Releasing 12.10.2daily13.05.02-0ubuntu1, based on r487
+2013-05-19 William Hua
-2013-05-02 19:33:53 +0000 Mathieu Trudel-Lapierre (3022eec5)
+ * Code clean-up. (176ea14)
- * Merge changelog changes from /13.04 branch for saucy.
+2013-05-03 Automatic PS uploader
-2013-05-02 12:12:42 -0700 Mathieu Trudel-Lapierre (4d59f6fe)
+ * Releasing 12.10.2daily13.05.02-0ubuntu1 to ubuntu. (5cac96c)
- * Merge changelog changes from /13.04 branch for saucy.
+2013-05-02 Automatic PS uploader
-2013-04-26 10:49:12 -0400 William Hua (bab64c46)
+ * Releasing 12.10.2daily13.05.02-0ubuntu1, based on r487 (0496a1f)
- * Clean up error checking.
+2013-05-02 Mathieu Trudel-Lapierre
-2013-04-26 09:39:14 -0400 William Hua (83fef721)
+ * Merge changelog changes from /13.04 branch for saucy. (3022eec)
+ * Merge changelog changes from /13.04 branch for saucy. (4d59f6f)
- * Don't free label and accessible_desc.
+2013-04-26 William Hua
-2013-04-26 09:38:59 -0400 William Hua (5d6adee2)
+ * Clean up error checking. (bab64c4)
+ * Don't free label and accessible_desc. (83fef72)
+ * Remove changelog entry. (5d6adee)
- * Remove changelog entry.
+2013-04-22 William Hua
-2013-04-22 11:50:51 -0400 William Hua (19ec6491)
-
- * [ William Hua ] * debian/control: - Bump GLib to 2.37. *
- configure.ac: - Bump GLib to 2.37. *
+ * [ William Hua ]; debian/control: - Bump GLib to 2.37.
+ configure.ac: - Bump GLib to 2.37.
libindicator/indicator-image-helper.c: - Support display
- of GBytesIcons. * libindicator/indicator-ng.c: - Change
- action state icon type to GVariant.
-
-2013-04-19 13:49:32 +0200 Marco Trevisan (Treviño) (f88266a6)
-
- * IndicatorDesktopShortcuts: some code cleanup
-
-2013-04-12 13:56:52 +0200 Marco Trevisan (Treviño) (5c5f7780)
-
- * tests: fix compilation and make check.
-
-2013-04-12 13:50:05 +0200 Marco Trevisan (Treviño) (7f0c703a)
+ of GBytesIcons.; libindicator/indicator-ng.c: - Change
+ action state icon type to GVariant. (19ec649)
- * IndicatorDesktopShortcuts: initialize flags using the default
- define
+2013-04-19 Marco Trevisan (Treviño)
-2013-04-12 13:40:18 +0200 Marco Trevisan (Treviño) (0312ffa2)
+ * IndicatorDesktopShortcuts: some code cleanup (f88266a)
- * IndicatorDesktopShortcuts: Use the proper way to create an AppInfo
- from command-line
+2013-04-12 Marco Trevisan (Treviño)
-2013-04-09 16:45:03 +0000 Marco Trevisan (Treviño) (4d64b710)
+ * tests: fix compilation and make check. (5c5f778)
+ * IndicatorDesktopShortcuts: initialize flags using the default
+ define (7f0c703)
+ * IndicatorDesktopShortcuts: Use the proper way to create an AppInfo
+ from command-line (0312ffa)
- * IndicatorDestkopShortcuts: add StartupNotify parameter in our
- internal fake .desktop file
+2013-04-09 Marco Trevisan (Treviño)
-2013-04-09 04:53:09 +0200 Marco Trevisan (Treviño) (bd9abfc7)
+ * IndicatorDestkopShortcuts: add StartupNotify parameter in our
+ internal fake .desktop file (4d64b71)
+ * IndicatorDestkopShortcuts: add StartupNotify parameter in our
+ internal fake .desktop file (bd9abfc)
- * IndicatorDestkopShortcuts: add StartupNotify parameter in our
- internal fake .desktop file
+2013-04-05 Marco Trevisan (Treviño)
-2013-04-05 12:02:24 +0000 Marco Trevisan (Treviño) (2d418a61)
-
- * IndicatorDestkopShortcuts: add
+ * IndicatorDestkopShortcuts: add
indicator_desktop_shortcuts_nick_exec_with_context
-
-2013-04-05 13:22:34 +0200 Marco Trevisan (Treviño) (07652a31)
-
- * IndicatorDestkopShortcuts: fix indentation
-
-2013-04-05 13:19:54 +0200 Marco Trevisan (Treviño) (c539c377)
-
- * IndicatorDestkopShortcuts: add missing include and deprecate old
- function
-
-2013-04-05 13:09:02 +0200 Marco Trevisan (Treviño) (2fba1485)
-
- * IndicatorDestkopShortcuts: add
+ (2d418a6)
+ * IndicatorDestkopShortcuts: fix indentation (07652a3)
+ * IndicatorDestkopShortcuts: add missing include and deprecate old
+ function (c539c37)
+ * IndicatorDestkopShortcuts: add
indicator_desktop_shortcuts_nick_exec_with_context
+ (2fba148)
-2013-03-25 21:49:50 -0400 Lars Uebernickel (ffbb3c1a)
-
- * indicator-ng: allow a dictionary as the root action's state
-
-2013-03-25 21:42:28 -0400 Charles Kerr (b046c938)
-
- * indicator-loader: add command line option to specify profile
-
-2013-03-22 14:57:55 -0500 Charles Kerr (f25cc339)
-
- * init the GError pointer to NULL
-
-2013-03-22 11:18:53 -0500 Charles Kerr (98cae790)
-
- * introduce tab damage for consistency with the rest of
- indicator-loader.c
-
-2013-03-22 11:15:11 -0500 Charles Kerr (22d673c4)
-
- * add the option to specify the profile from the command line
-
-2013-03-21 14:06:22 -0400 Lars Uebernickel (8232ab0e)
-
- * indicator-ng: allow a dictionary as the root action's state
+2013-03-25 Lars Uebernickel
-2013-03-18 22:49:09 +0000 Mathieu Trudel-Lapierre (61d0f80f)
+ * indicator-ng: allow a dictionary as the root action's state
+ (ffbb3c1)
- * Revert "indicator-ng: allow a dictionary as the root action's
- state".
+2013-03-25 Charles Kerr
-2013-03-18 17:28:01 -0400 Mathieu Trudel-Lapierre (c5f002fe)
+ * indicator-loader: add command line option to specify profile
+ (b046c93)
- * Revert: indicator-ng: allow a dictionary as the root action's state
+2013-03-22 Charles Kerr
-2013-03-13 22:24:42 +0000 Lars Uebernickel (daf0dc90)
+ * init the GError pointer to NULL (f25cc33)
+ * introduce tab damage for consistency with the rest of
+ indicator-loader.c (98cae79)
+ * add the option to specify the profile from the command line
+ (22d673c)
- * indicator-ng: allow a dictionary as the root action's state
+2013-03-21 Lars Uebernickel
-2013-03-13 16:32:22 +0000 Lars Uebernickel (610b2cc6)
+ * indicator-ng: allow a dictionary as the root action's state
+ (8232ab0)
- * indicator-ng: allow a dictionary as the root action's state
+2013-03-18 Mathieu Trudel-Lapierre
-2013-02-25 18:54:10 +0000 Automatic PS uploader (208d1ba7)
+ * Revert "indicator-ng: allow a dictionary as the root action's
+ state". (61d0f80)
+ * Revert: indicator-ng: allow a dictionary as the root action's state
+ (c5f002f)
- * Releasing 12.10.2daily13.02.25-0ubuntu1 to ubuntu.
+2013-03-13 Lars Uebernickel
-2013-02-25 02:03:14 +0000 Automatic PS uploader (5074c9d6)
+ * indicator-ng: allow a dictionary as the root action's state
+ (daf0dc9)
+ * indicator-ng: allow a dictionary as the root action's state
+ (610b2cc)
- * Releasing 12.10.2daily13.02.25-0ubuntu1, based on r479
+2013-02-25 Automatic PS uploader
-2013-02-22 15:07:42 +0000 Iain Lane (3a73f298)
+ * Releasing 12.10.2daily13.02.25-0ubuntu1 to ubuntu. (208d1ba)
+ * Releasing 12.10.2daily13.02.25-0ubuntu1, based on r479 (5074c9d)
- * Install the gtk2 library into the multiarch directory. Fixes:
- https://bugs.launchpad.net/bugs/1131708.
+2013-02-22 Iain Lane
-2013-02-22 11:59:11 +0000 Iain Lane (319a6062)
+ * Install the gtk2 library into the multiarch directory.
+ Fixes:
+ https://bugs.launchpad.net/bugs/1131708. (3a73f29)
+ * Use $(COMMON_CONFIGURE_FLAGS) instead of hardcoding (319a606)
+ * Install shared library into correct (multiarch) directory (286882c)
+ * Disable silent rules for more useful build logs (31368ce)
- * Use $(COMMON_CONFIGURE_FLAGS) instead of hardcoding
+2013-02-19 Automatic PS uploader
-2013-02-22 11:36:55 +0000 Iain Lane (286882c3)
+ * Releasing 12.10.2daily13.02.19-0ubuntu1 to ubuntu. (150610d)
+ * Releasing 12.10.2daily13.02.19-0ubuntu1, based on r477 (da40ae8)
- * Install shared library into correct (multiarch) directory
+2013-02-15 Michael Terry
-2013-02-22 10:34:24 +0000 Iain Lane (31368ce8)
-
- * Disable silent rules for more useful build logs
-
-2013-02-19 12:20:52 +0000 Automatic PS uploader (150610dc)
-
- * Releasing 12.10.2daily13.02.19-0ubuntu1 to ubuntu.
-
-2013-02-19 02:02:27 +0000 Automatic PS uploader (da40ae89)
-
- * Releasing 12.10.2daily13.02.19-0ubuntu1, based on r477
-
-2013-02-15 17:20:14 +0000 Michael Terry (d24848fc)
-
- * Multiarch for most of libindicator is fine. But the indicators
+ * Multiarch for most of libindicator is fine. But the indicators
themselves should continue to be installed in the same
- (non-multiarch) directory, for historical reasons. Fixes:
- https://bugs.launchpad.net/bugs/1126360.
-
-2013-02-15 11:03:03 -0500 Michael Terry (6aea07d7)
-
- * hard-code indicatordir to not use multiarch locations
-
-2013-02-15 11:08:57 +0000 Automatic PS uploader (85c8d1cf)
-
- * Releasing 12.10.2daily13.02.15-0ubuntu1 to ubuntu.
+ (non-multiarch) directory, for historical reasons.
+ Fixes:
+ https://bugs.launchpad.net/bugs/1126360. (d24848f)
+ * hard-code indicatordir to not use multiarch locations (6aea07d)
-2013-02-15 07:46:53 +0000 Automatic PS uploader (cdfa9f50)
+2013-02-15 Automatic PS uploader
- * Releasing 12.10.2daily13.02.15-0ubuntu1, based on r475
+ * Releasing 12.10.2daily13.02.15-0ubuntu1 to ubuntu. (85c8d1c)
+ * Releasing 12.10.2daily13.02.15-0ubuntu1, based on r475 (cdfa9f5)
-2013-02-14 22:25:39 +0000 Lars Uebernickel (d05835ea)
+2013-02-14 Lars Uebernickel
- * Add IndicatorNg.
+ * Add IndicatorNg. (d05835e)
+ * indicator-ng: add license header (40d7c42)
-2013-02-14 16:16:48 -0500 Lars Uebernickel (40d7c42d)
+2013-02-06 Lars Uebernickel
- * indicator-ng: add license header
+ * indicator-ng: don't hide the indicator if the service is already
+ running (88aa74b)
+ * indicator-ng: try to restart the service when it crashes (f9f86fb)
-2013-02-06 16:03:33 -0500 Lars Uebernickel (88aa74b6)
+2013-01-30 Lars Uebernickel
- * indicator-ng: don't hide the indicator if the service is already
- running
+ * indicator-ng: simplify flow in initable_init (8ff25e5)
-2013-02-06 15:37:38 -0500 Lars Uebernickel (f9f86fbf)
+2013-01-25 Lars Uebernickel
- * indicator-ng: try to restart the service when it crashes
+ * trim-lcov.py: add license header (dce947b)
+ * indicator-ng: use strlen instead of hard coding the length
+ (c02297d)
+ * indicator-ng: use indicator_image_helper (9c857a3)
+ * indicator-ng: lazily allocate entry.label and entry.image (7048092)
+ * indicator-ng: require header item to have x-canonical-type set
+ (82ecfaa)
-2013-01-30 17:49:32 +0100 Lars Uebernickel (8ff25e53)
+2013-01-24 Lars Uebernickel
- * indicator-ng: simplify flow in initable_init
+ * indicator-ng: check return value of g_menu_model_get_item_attribute
+ (f02ca5a)
+ * indicator-ng: document error conditions in menu_changed (db1caf2)
+ * indicator-ng: save unnecessary allocations by using "&" in
+ g_variant_get (088b36b)
+ * indicator-ng: show broken image when g_icon_for_string returns NULL
+ (05535f5)
+ * indicator-ng: use an IndicatorObjectEntry internally (f3f4e1f)
-2013-01-25 11:55:02 +0100 Lars Uebernickel (dce947bb)
+2013-01-23 Lars Uebernickel
- * trim-lcov.py: add license header
+ * Add trim-lcov.py (e096111)
+ * indicator-ng: test indicator_ng_get_property (af0137c)
+ * indicator-ng: more elaborate testing (0996bce)
+ * indicator-ng: set name hint to the value of the service file's
+ "Name" field (e07deff)
+ * indicator-ng: use base->get_entries to get the invisible ones, too
+ (739daae)
+ * indicator-ng: auto start service if it's not running (ac0c809)
-2013-01-25 11:14:13 +0100 Lars Uebernickel (c02297da)
+2013-01-22 Lars Uebernickel
- * indicator-ng: use strlen instead of hard coding the length
+ * indicator-ng: properly unset action group when the service
+ disappears (67323d4)
-2013-01-25 11:11:59 +0100 Lars Uebernickel (9c857a30)
+2013-01-21 Lars Uebernickel
- * indicator-ng: use indicator_image_helper
+ * Add basic tests for indicator-ng (d84d6f7)
+ * Make sure indicator-ng.h is installed (36e0fea)
+ * indicator-ng: add getters (1585adb)
+ * indicator-ng: add indicator_ng_new_for_profile (4b301ff)
+ * indicator-ng: fix crash (tried to free a string with
+ g_object_unref) (869d977)
+ * indicator-ng: always set an accessible description to avoid
+ imminent warning (af3ac65)
+ * indicator-ng.h: use local include (ca52243)
-2013-01-25 10:46:58 +0100 Lars Uebernickel (70480923)
+2013-01-18 Lars Uebernickel
- * indicator-ng: lazily allocate entry.label and entry.image
+ * Bump gtk3 dependency for gtk_widget_insert_action_group (3822cf9)
+ * Only build and use IndicatorNg in the gtk3 build (aaae4aa)
+ * Add IndicatorNg (3a33240)
-2013-01-25 10:29:57 +0100 Lars Uebernickel (82ecfaaa)
+2012-11-26 Didier Roche
- * indicator-ng: require header item to have x-canonical-type set
+ * Add bootstrap message. (e796648)
+ * add bootstrap message (7b8e551)
-2013-01-24 11:39:12 +0100 Lars Uebernickel (f02ca5a6)
+2012-11-26 Ted Gould
- * indicator-ng: check return value of g_menu_model_get_item_attribute
+ * Import debian/ from lp:~ubuntu-desktop/libindicator/ubuntu.
+ (810eada)
-2013-01-24 11:29:24 +0100 Lars Uebernickel (db1caf23)
+2012-11-22 Mathieu Trudel-Lapierre
- * indicator-ng: document error conditions in menu_changed
+ * Add and export DPKG_GENSYMBOLS_CHECK_LEVEL. (f77d6dd)
+ * Add the proper Pre-Depends: multiarch to libindicator3-7. (93e0bd1)
+ * - Use calls to dh_install per-package to use the right source
+ directories.; debian/*.install: drop the debian/tmp/gtk*
+ path elements and update for multiarch. (5576bf0)
+ * debian/compat: bump compat level to 9. (094593a)
+ * Update Vcs-Bzr, Vcs-Browser and add a notice to uploaders.
+ (1d6bc1d)
-2013-01-24 11:25:11 +0100 Lars Uebernickel (088b36be)
+2012-11-21 Mathieu Trudel-Lapierre
- * indicator-ng: save unnecessary allocations by using "&" in
- g_variant_get
-
-2013-01-24 11:22:39 +0100 Lars Uebernickel (05535f59)
-
- * indicator-ng: show broken image when g_icon_for_string returns NULL
-
-2013-01-24 10:23:35 +0100 Lars Uebernickel (f3f4e1fc)
-
- * indicator-ng: use an IndicatorObjectEntry internally
-
-2013-01-23 20:05:45 +0100 Lars Uebernickel (e096111e)
-
- * Add trim-lcov.py
-
-2013-01-23 19:34:43 +0100 Lars Uebernickel (af0137c6)
-
- * indicator-ng: test indicator_ng_get_property
-
-2013-01-23 18:00:49 +0100 Lars Uebernickel (0996bce9)
-
- * indicator-ng: more elaborate testing
-
-2013-01-23 17:55:08 +0100 Lars Uebernickel (e07deff5)
-
- * indicator-ng: set name hint to the value of the service file's
- "Name" field
-
-2013-01-23 17:30:05 +0100 Lars Uebernickel (739daae6)
-
- * indicator-ng: use base->get_entries to get the invisible ones, too
-
-2013-01-23 17:29:05 +0100 Lars Uebernickel (ac0c8099)
-
- * indicator-ng: auto start service if it's not running
-
-2013-01-22 18:36:10 +0100 Lars Uebernickel (67323d4a)
-
- * indicator-ng: properly unset action group when the service
- disappears
-
-2013-01-21 17:34:44 +0100 Lars Uebernickel (d84d6f7c)
-
- * Add basic tests for indicator-ng
-
-2013-01-21 17:30:05 +0100 Lars Uebernickel (36e0fea7)
-
- * Make sure indicator-ng.h is installed
-
-2013-01-21 17:09:55 +0100 Lars Uebernickel (1585adb6)
-
- * indicator-ng: add getters
-
-2013-01-21 17:04:02 +0100 Lars Uebernickel (4b301ff8)
-
- * indicator-ng: add indicator_ng_new_for_profile
-
-2013-01-21 16:39:55 +0100 Lars Uebernickel (869d977e)
-
- * indicator-ng: fix crash (tried to free a string with
- g_object_unref)
-
-2013-01-21 16:38:11 +0100 Lars Uebernickel (af3ac653)
-
- * indicator-ng: always set an accessible description to avoid
- imminent warning
-
-2013-01-21 10:58:26 +0100 Lars Uebernickel (ca52243c)
-
- * indicator-ng.h: use local include
-
-2013-01-18 22:18:27 +0100 Lars Uebernickel (3822cf90)
-
- * Bump gtk3 dependency for gtk_widget_insert_action_group
-
-2013-01-18 22:17:54 +0100 Lars Uebernickel (aaae4aa1)
-
- * Only build and use IndicatorNg in the gtk3 build
-
-2013-01-18 19:48:04 +0100 Lars Uebernickel (3a33240e)
-
- * Add IndicatorNg
-
-2012-11-26 11:55:58 +0000 Didier Roche (e7966480)
-
- * Add bootstrap message.
-
-2012-11-26 10:33:02 +0100 Didier Roche (7b8e5519)
-
- * add bootstrap message
-
-2012-11-26 07:32:16 +0000 Ted Gould (810eada1)
-
- * Import debian/ from lp:~ubuntu-desktop/libindicator/ubuntu.
-
-2012-11-22 14:32:41 -0500 Mathieu Trudel-Lapierre (f77d6ddd)
-
- * Add and export DPKG_GENSYMBOLS_CHECK_LEVEL.
-
-2012-11-22 12:19:57 -0500 Mathieu Trudel-Lapierre (93e0bd19)
-
- * Add the proper Pre-Depends: multiarch to libindicator3-7.
-
-2012-11-22 12:13:37 -0500 Mathieu Trudel-Lapierre (5576bf07)
-
- * - Use calls to dh_install per-package to use the right source
- directories. * debian/*.install: drop the debian/tmp/gtk*
- path elements and update for multiarch.
-
-2012-11-22 02:31:06 -0500 Mathieu Trudel-Lapierre (094593a4)
-
- * debian/compat: bump compat level to 9.
-
-2012-11-22 02:30:41 -0500 Mathieu Trudel-Lapierre (1d6bc1dc)
-
- * Update Vcs-Bzr, Vcs-Browser and add a notice to uploaders.
-
-2012-11-21 15:00:45 -0500 Mathieu Trudel-Lapierre (e16a1263)
-
- * Add a Build-Depends on gnome-common.
-
-2012-11-21 14:59:47 -0500 Mathieu Trudel-Lapierre (56806393)
-
- * Override dh_autoreconf to run autogen.sh and not call configure.
-
-2012-11-21 14:59:05 -0500 Mathieu Trudel-Lapierre (d1e3acb6)
-
- * Drop Build-Depends on cdbs.
-
-2012-11-21 14:58:08 -0500 Mathieu Trudel-Lapierre (3d69e24b)
-
- * * debian/rules: - Convert to using the dh9 sequencer.
-
-2012-11-21 14:25:36 -0500 Mathieu Trudel-Lapierre (9ec2a253)
-
- * Bump debhelper Build-Depends to (>= 9).
-
-2012-11-21 14:25:01 -0500 Mathieu Trudel-Lapierre (30aa94e0)
-
- * * debian/control: - Reorganize Build-Depends for clarity. -
+ * Add a Build-Depends on gnome-common. (e16a126)
+ * Override dh_autoreconf to run autogen.sh and not call configure.
+ (5680639)
+ * Drop Build-Depends on cdbs. (d1e3acb)
+ * debian/rules: - Convert to using the dh9 sequencer. (3d69e24)
+ * Bump debhelper Build-Depends to (>= 9). (9ec2a25)
+ * debian/control: - Reorganize Build-Depends for clarity. -
Update style to be consistent with other indicator stack
- packages.
-
-2012-11-21 14:21:42 -0500 Mathieu Trudel-Lapierre (7a3c4577)
-
- * Specify to bzr-builddeb to build the package in split mode.
-
-2012-11-21 14:21:10 -0500 Mathieu Trudel-Lapierre (ac60524e)
-
- * Import debian/ from lp:~ubuntu-desktop/libindicator/ubuntu
-
-2012-09-19 16:00:57 -0400 Ken VanDine (85dbd2d8)
+ packages. (30aa94e)
+ * Specify to bzr-builddeb to build the package in split mode.
+ (7a3c457)
+ * Import debian/ from lp:~ubuntu-desktop/libindicator/ubuntu
+ (ac60524)
- * releasing version 12.10.1-0ubuntu1
+2012-09-19 Ken VanDine
-2012-09-19 15:21:55 -0400 Ken VanDine (96f010d9)
+ * releasing version 12.10.1-0ubuntu1 (85dbd2d)
+ * Import upstream version 12.10.1 (96f010d)
- * Import upstream version 12.10.1
+2012-09-19 Charles Kerr
-2012-09-19 10:40:00 -0500 Charles Kerr (341548e8)
+ * 12.10.1 (341548e)
- * 12.10.1
+2012-09-17 Didier Roche
-2012-09-17 11:13:51 +0200 Didier Roche (2f35a94a)
+ * releasing version 12.10.0-0ubuntu2 (2f35a94)
+ * Backport a fix so that libroffice doesn't hang on on startup (LP:
+ #1045372) (0dc2913)
- * releasing version 12.10.0-0ubuntu2
+2012-09-12 Charles Kerr
-2012-09-17 11:11:33 +0200 Didier Roche (0dc29136)
+ * In libindicator, remove the cloak/decloak code in IndicatorObject
+ to address Bug #1045372. (667fbaf)
- * Backport a fix so that libroffice doesn't hang on on startup (LP:
- #1045372)
+2012-09-11 Charles Kerr
-2012-09-12 06:58:57 +0000 Charles Kerr (667fbafc)
-
- * In libindicator, remove the cloak/decloak code in IndicatorObject
- to address Bug #1045372.
-
-2012-09-11 23:25:56 -0500 Charles Kerr (00d05564)
-
- * In tests/test-loader and tests/dummy-indicator-visible.c, support
+ * In tests/test-loader and tests/dummy-indicator-visible.c, support
hiding & re-showing IndicatorObjectEntries by caching
their parent widgetry instead of using
- gtk_widget_destroy()
-
-2012-09-11 21:25:02 -0500 Charles Kerr (ee19af5c)
-
- * No newline at end of file
-
-2012-09-11 18:56:09 -0500 Charles Kerr (bf9cf29c)
+ gtk_widget_destroy() (00d0556)
+ * No newline at end of file (ee19af5)
+ * remove the cloak/decloak widget logic (bf9cf29)
- * remove the cloak/decloak widget logic
+2012-07-12 Sebastien Bacher
-2012-07-12 17:44:58 +0200 Sebastien Bacher (bdeeb474)
+ * releasing version 12.10.0-0ubuntu1 (bdeeb47)
+ * New upstream release. (d739399)
+ * Import upstream version 12.10.0 (edcdb07)
- * releasing version 12.10.0-0ubuntu1
+2012-07-11 Charles Kerr
-2012-07-12 17:44:39 +0200 Sebastien Bacher (d7393996)
+ * bump version to 12.10.0 (b1beb2c)
- * New upstream release.
+2012-06-19 Lars Uebernickel
-2012-07-12 17:36:00 +0200 Sebastien Bacher (edcdb072)
+ * merge lp:~charlesk/libindicator/fix-test-sources (d2f8fce)
- * Import upstream version 12.10.0
+2012-06-18 Charles Kerr
-2012-07-11 13:07:44 -0500 Charles Kerr (b1beb2cc)
-
- * bump version to 12.10.0
-
-2012-06-19 10:31:49 +0200 Lars Uebernickel (d2f8fce2)
-
- * merge lp:~charlesk/libindicator/fix-test-sources
-
-2012-06-18 14:33:30 -0500 Charles Kerr (20cafa40)
-
- * merge lp:~evgeni/libindicator/multiarch-same-devheaders so that we
+ * merge lp:~evgeni/libindicator/multiarch-same-devheaders so that we
don't include build-time filenames in comments of the enum
- header files.
-
-2012-06-18 13:42:53 -0500 Charles Kerr (26dcee43)
-
- * fix copy-and-paste error in specifying the tests' source files
-
-2012-06-10 11:16:21 +0200 Evgeni Golov (5d3f97c6)
-
- * don't include build-time filenames in comments of the enum header
- files
-
-2012-04-23 13:15:39 -0500 Charles Kerr (1271439e)
-
- * merge lp:~charlesk/libindicator/cxx to constify the constructors
- for indicator_service_manager
-
-2012-04-22 14:24:13 -0500 Charles Kerr (670e6e0b)
-
- * indiator_service_manager_new*()'s name arguments were gchar*, make
- them const gchar*
-
-2012-04-11 14:13:19 -0400 Ken VanDine (f26bd55b)
-
- * releasing version 0.5.0-0ubuntu1
-
-2012-04-11 13:09:40 -0400 Ken VanDine (c606a9a1)
-
- * * New upstream release. * Validate images in
- image_helper_update() (LP: #946408)
+ header files. (20cafa4)
+ * fix copy-and-paste error in specifying the tests' source files
+ (26dcee4)
-2012-04-11 10:54:57 -0500 Charles Kerr (752101a5)
+2012-06-10 Evgeni Golov
- * releasing version 0.5.0-0ubuntu1~ppa1
+ * don't include build-time filenames in comments of the enum header
+ files (5d3f97c)
-2012-04-11 10:53:08 -0500 Charles Kerr (499bd670)
+2012-04-23 Charles Kerr
- * * New upstream release. * Validate images in
- image_helper_update() (LP: #946408)
+ * merge lp:~charlesk/libindicator/cxx to constify the constructors
+ for indicator_service_manager (1271439)
-2012-04-11 10:51:10 -0500 Charles Kerr (21ef9a51)
+2012-04-22 Charles Kerr
- * Import upstream version 0.5.0
+ * indiator_service_manager_new*()'s name arguments were gchar*, make
+ them const gchar* (670e6e0)
-2012-04-11 10:50:29 -0500 Charles Kerr (0bd650dc)
+2012-04-11 Ken VanDine
- * Sync from Ubuntu Desktop
+ * releasing version 0.5.0-0ubuntu1 (f26bd55)
+ * New upstream release. * Validate images in
+ image_helper_update() (LP: #946408) (c606a9a)
-2012-04-11 10:25:31 -0500 Charles Kerr (1cbe9339)
+2012-04-11 Charles Kerr
- * 0.5.0 (tag: 0.5.0)
-
-2012-04-11 07:49:56 -0500 Charles Kerr (c721d3e2)
-
- * merge lp:~charlesk/libindicator/lp-946408 to safeguard against
+ * releasing version 0.5.0-0ubuntu1~ppa1 (752101a)
+ * New upstream release. * Validate images in
+ image_helper_update() (LP: #946408) (499bd67)
+ * Import upstream version 0.5.0 (21ef9a5)
+ * Sync from Ubuntu Desktop (0bd650d)
+ * 0.5.0 (1cbe933) (tag: 0.5.0)
+ * merge lp:~charlesk/libindicator/lp-946408 to safeguard against
invalid images being passed to
- indicator_image_helper_update()
-
-2012-04-11 01:01:51 -0500 Charles Kerr (bb571a4f)
-
- * in indicator_image_helper_update(), test the image argument with
- GTK_IS_IMAGE before using it.
-
-2012-04-05 12:44:30 +0200 Sebastien Bacher (d538aa44)
-
- * releasing version 0.4.95-0ubuntu1
+ indicator_image_helper_update() (c721d3e)
+ * in indicator_image_helper_update(), test the image argument with
+ GTK_IS_IMAGE before using it. (bb571a4)
-2012-04-04 14:53:27 -0500 Ted Gould (696375c2)
+2012-04-05 Sebastien Bacher
- * Fixing a merge artifact
+ * releasing version 0.4.95-0ubuntu1 (d538aa4)
-2012-04-04 14:52:14 -0500 Ted Gould (5a163f4e)
+2012-04-04 Ted Gould
- * Merging Ubuntu Desktop
-
-2012-04-04 14:39:18 -0500 Ted Gould (f9220e12)
-
- * releasing version 0.4.95-0ubuntu1~ppa1
-
-2012-04-04 14:35:30 -0500 Ted Gould (d431c78f)
-
- * * New upstream release. * Fix a free that shouldn't be (LP:
+ * Fixing a merge artifact (696375c)
+ * Merging Ubuntu Desktop (5a163f4)
+ * releasing version 0.4.95-0ubuntu1~ppa1 (f9220e1)
+ * New upstream release. * Fix a free that shouldn't be (LP:
#969360) * Spelling mistake in error message (LP:
#948391) * Add coverage build targets * Fix building
- AUTHORS and Changelog at dist time
-
-2012-04-04 14:34:11 -0500 Ted Gould (c136bda2)
-
- * Import upstream version 0.4.95
+ AUTHORS and Changelog at dist time (d431c78)
+ * Import upstream version 0.4.95 (c136bda)
+ * 0.4.95 (f75080c) (tag: 0.4.95)
-2012-04-04 14:26:17 -0500 Ted Gould (f75080c5)
+2012-04-03 Charles Kerr
- * 0.4.95 (tag: 0.4.95)
-
-2012-04-03 21:39:27 -0500 Charles Kerr (fae66e85)
-
- * merge lp:~allanlesage/libindicator/TDD to remove a dependency on
+ * merge lp:~allanlesage/libindicator/TDD to remove a dependency on
gcovr, move gcov targets to their own makefile, and clean
- up .gcno files.
-
-2012-04-03 07:50:22 -0500 Charles Kerr (2f67706e)
-
- * merge lp:~charlesk/libindicator/lp-948391 to fix spelling/grammar
- errors in an error message.
-
-2012-04-02 18:42:07 -0500 Charles Kerr (f7eab1e6)
-
- * Fix spelling/grammar errors in an error message.
-
-2012-04-02 08:56:49 -0500 Charles Kerr (96c35f0b)
-
- * When using g_variant_get("&s...", &string), the string must not be
- free'd.
-
-2012-04-02 11:09:19 +0200 Sebastien Bacher (4a445398)
-
- * releasing version 0.4.94-0ubuntu2
-
-2012-04-02 11:07:25 +0200 Sebastien Bacher (486523c3)
-
- * Revert r457 it's creating invalid free errors
+ up .gcno files. (fae66e8)
+ * merge lp:~charlesk/libindicator/lp-948391 to fix spelling/grammar
+ errors in an error message. (2f67706)
-2012-04-01 21:03:19 +0200 Marco Trevisan (Treviño) (a9c0407e)
+2012-04-02 Charles Kerr
- * Setting again the variables as const
+ * Fix spelling/grammar errors in an error message. (f7eab1e)
+ * When using g_variant_get("&s...", &string), the string must not be
+ free'd. (96c35f0)
-2012-04-01 20:54:37 +0200 Marco Trevisan (Treviño) (c4b29527)
+2012-04-02 Sebastien Bacher
- * Indicator Service Manager: we don't have to free values if got with
- &s from variant
+ * releasing version 0.4.94-0ubuntu2 (4a44539)
+ * Revert r457 it's creating invalid free errors (486523c)
-2012-03-30 09:57:26 -0400 Ken VanDine (5ce6cdff)
+2012-04-01 Marco Trevisan (Treviño)
- * releasing version 0.4.94-0ubuntu1
+ * Setting again the variables as const (a9c0407)
+ * Indicator Service Manager: we don't have to free values if got with
+ &s from variant (c4b2952)
-2012-03-30 09:36:28 -0400 Ken VanDine (63d1c953)
+2012-03-30 Ken VanDine
- * * New upstream release. * Fix a leaked GError (LP: #965459) *
- Fix memory leak when the proxy's name changes.
+ * releasing version 0.4.94-0ubuntu1 (5ce6cdf)
+ * New upstream release. * Fix a leaked GError (LP: #965459) *
+ Fix memory leak when the proxy's name changes. (63d1c95)
-2012-03-29 13:57:09 -0700 Charles Kerr (28d27ed1)
+2012-03-29 Charles Kerr
- * releasing version 0.4.94-0ubuntu1~ppa1
-
-2012-03-29 13:52:21 -0700 Charles Kerr (50933a93)
-
- * * New upstream release. * Fix a leaked GError (LP: #965459) *
- Fix memory leak when the proxy's name changes.
-
-2012-03-29 13:50:56 -0700 Charles Kerr (4ecaca48)
-
- * Import upstream version 0.4.94
-
-2012-03-29 13:49:34 -0700 Charles Kerr (452f2ab6)
-
- * Sync from Ubuntu Desktop
-
-2012-03-29 13:32:32 -0700 Charles Kerr (5a839c41)
-
- * merge lp:~charlesk/libindicator/fix-disthook to fix auto-generation
+ * releasing version 0.4.94-0ubuntu1~ppa1 (28d27ed)
+ * New upstream release. * Fix a leaked GError (LP: #965459) *
+ Fix memory leak when the proxy's name changes. (50933a9)
+ * Import upstream version 0.4.94 (4ecaca4)
+ * Sync from Ubuntu Desktop (452f2ab)
+ * merge lp:~charlesk/libindicator/fix-disthook to fix auto-generation
of AUTHORS and Changelog by looking for 'missing' in the
- directory where we told AC_CONFIG_AUX_DIR to put it. (tag:
- 0.4.94)
-
-2012-03-29 13:16:19 -0700 Charles Kerr (2eb70f47)
-
- * look for 'missing' in ac_aux_dir rather than top_srcdir.
-
-2012-03-28 14:17:33 -0700 Charles Kerr (922d781a)
-
- * 0.4.94
+ directory where we told AC_CONFIG_AUX_DIR to put it.
+ (5a839c4) (tag: 0.4.94)
+ * look for 'missing' in ac_aux_dir rather than top_srcdir. (2eb70f4)
-2012-03-27 16:33:31 -0500 Allan LeSage (76fc7f01)
+2012-03-28 Charles Kerr
- * Removed gcovr dependency, moved coverage targets to own makefile,
- cleaning up *.gcno.
+ * 0.4.94 (922d781)
-2012-03-26 09:24:33 -0700 Charles Kerr (603ad6cc)
+2012-03-27 Allan LeSage
- * merge lp:~htorque/libindicator/fix-small-leak to fix a GError
- memory leak reported in lp bug #965459
+ * Removed gcovr dependency, moved coverage targets to own makefile,
+ cleaning up *.gcno. (76fc7f0)
-2012-03-26 15:35:57 +0200 Hernando Torque (3440ebed)
+2012-03-26 Charles Kerr
- * Free GError.
+ * merge lp:~htorque/libindicator/fix-small-leak to fix a GError
+ memory leak reported in lp bug #965459 (603ad6c)
-2012-03-16 15:39:11 -0500 Charles Kerr (742fa8cb)
+2012-03-26 Hernando Torque
- * fix minor memory leak when the proxy name changes
+ * Free GError. (3440ebe)
-2012-03-08 21:57:54 +0100 Sebastien Bacher (9a234667)
+2012-03-16 Charles Kerr
- * releasing version 0.4.93-0ubuntu1
+ * fix minor memory leak when the proxy name changes (742fa8c)
-2012-03-07 14:14:09 -0600 Ted Gould (bbbe42af)
+2012-03-08 Sebastien Bacher
- * releasing version 0.4.93-0ubuntu1~ppa1
+ * releasing version 0.4.93-0ubuntu1 (9a23466)
-2012-03-07 14:11:47 -0600 Ted Gould (e34b660a)
+2012-03-07 Ted Gould
- * * New upstream release. * Fix branching past initialization of
+ * releasing version 0.4.93-0ubuntu1~ppa1 (bbbe42a)
+ * New upstream release. * Fix branching past initialization of
variables (LP: #939061) * Support new FD.o Desktop
Actions (LP: #942042) * Fix valgrind error on unload
- (LP: #719457)
-
-2012-03-07 14:08:40 -0600 Ted Gould (67872e28)
-
- * Import upstream version 0.4.93
-
-2012-03-07 14:08:16 -0600 Ted Gould (c83d72a3)
-
- * Merging in U. Desktop
-
-2012-03-07 14:01:26 -0600 Ted Gould (18d670b2)
-
- * 0.4.93 (tag: 0.4.93)
-
-2012-03-05 13:13:33 -0600 Charles Kerr (9dcb9295)
-
- * merge lp:~ted/libindicator/lp719457 for Bug #719457
-
-2012-03-02 10:55:05 -0600 Ted Gould (039c7d8e)
-
- * Attaching bug
-
-2012-03-02 10:54:50 -0600 Ted Gould (c3bd07e8)
-
- * Copying the name before using it to remove as it seems that the
- unwatch can cause the name to be free'd in some cases.
- Odd, but valgrind can find it
+ (LP: #719457) (e34b660)
+ * Import upstream version 0.4.93 (67872e2)
+ * Merging in U. Desktop (c83d72a)
+ * 0.4.93 (18d670b) (tag: 0.4.93)
-2012-03-02 10:01:59 -0600 Ted Gould (dbaf540c)
+2012-03-05 Charles Kerr
- * Support new FD.o Desktop Actions
+ * merge lp:~ted/libindicator/lp719457 for Bug #719457 (9dcb929)
-2012-03-02 13:18:44 +0100 Sebastien Bacher (94c7bd64)
+2012-03-02 Ted Gould
- * releasing version 0.4.92-0ubuntu2
+ * Attaching bug (039c7d8)
+ * Copying the name before using it to remove as it seems that the
+ unwatch can cause the name to be free'd in some cases.
+ Odd, but valgrind can find it (c3bd07e)
+ * Support new FD.o Desktop Actions (dbaf540)
-2012-03-02 12:08:04 +0100 Sebastien Bacher (0c90dd34)
+2012-03-02 Sebastien Bacher
- * Backport support for the fdo desktop action spec, that's required
+ * releasing version 0.4.92-0ubuntu2 (94c7bd6)
+ * Backport support for the fdo desktop action spec, that's required
to get unity lists to work with the new syntax (lp:
- #942042)
+ #942042) (0c90dd3)
-2012-02-29 17:50:40 -0600 Charles Kerr (54a3d1da)
+2012-02-29 Charles Kerr
- * lp:~charlesk/libindicator/fix-939061
+ * lp:~charlesk/libindicator/fix-939061 (54a3d1d)
+ * silence Coverity warning "PW.BRANCH_PAST_INITIALIZATION - CID
+ 10615" reported in Bug #939061 (9e2278a)
+ * tweak: use g_clear_object() instead of if-not-null-g_object_unref()
+ (b645480)
-2012-02-29 14:58:03 -0600 Charles Kerr (9e2278a9)
+2012-02-27 Ted Gould
- * silence Coverity warning "PW.BRANCH_PAST_INITIALIZATION - CID
- 10615" reported in Bug #939061
-
-2012-02-29 14:55:23 -0600 Charles Kerr (b6454804)
-
- * tweak: use g_clear_object() instead of if-not-null-g_object_unref()
-
-2012-02-27 15:08:19 -0600 Ted Gould (a69f559a)
-
- * Get the right group in exec too!
-
-2012-02-27 15:05:40 -0600 Ted Gould (f6d65092)
-
- * Handling the different group names when getting the name as well
-
-2012-02-27 15:03:43 -0600 Ted Gould (8c71262d)
-
- * Update test desktop file
-
-2012-02-27 14:40:08 -0600 Ted Gould (19c48bd2)
-
- * Creating a warning for the legacy support
-
-2012-02-27 14:38:21 -0600 Ted Gould (7d3e660e)
-
- * Adding a value for whether it should use the TargetEnvironment, I'm
+ * Get the right group in exec too! (a69f559)
+ * Handling the different group names when getting the name as well
+ (f6d6509)
+ * Update test desktop file (8c71262)
+ * Creating a warning for the legacy support (19c48bd)
+ * Adding a value for whether it should use the TargetEnvironment, I'm
removing the warning because we don't care to fix old
- stuff anymore
-
-2012-02-27 14:34:52 -0600 Ted Gould (52c42ef3)
-
- * Use the appropriate list of nicks and groups to find our data now
-
-2012-02-27 14:25:21 -0600 Ted Gould (4baf9b70)
-
- * Figure out what kind of actions we have
-
-2012-02-27 13:39:44 -0600 Ted Gould (f7e5502a)
-
- * Adding a state variable to track what kind of actions we have
-
-2012-02-27 13:32:43 -0600 Ted Gould (a02d4deb)
-
- * Attaching bug
-
-2012-02-27 13:32:25 -0600 Ted Gould (55b0614a)
-
- * Changing our defines around to make sure to mark things the way
- that we think about them.
-
-2012-02-23 12:28:01 +0100 Sebastien Bacher (f6f92098)
-
- * releasing version 0.4.92-0ubuntu1
-
-2012-02-23 12:26:18 +0100 Sebastien Bacher (efe75e49)
-
- * Merging shared upstream rev into target branch.
-
-2012-02-23 12:26:17 +0100 Sebastien Bacher (cfa1adf5)
-
- * Prepared upstream tree for merging into target branch.
-
-2012-02-23 12:25:39 +0100 Sebastien Bacher (164055c3)
-
- * Merging shared upstream rev into target branch.
-
-2012-02-23 12:25:38 +0100 Sebastien Bacher (e305ff2f)
-
- * Prepared upstream tree for merging into target branch.
-
-2012-02-23 00:27:41 -0600 Ted Gould (c28e242f)
-
- * releasing version 0.4.92-0ubuntu1~ppa1
-
-2012-02-23 00:25:48 -0600 Ted Gould (27b25768)
-
- * * New upstream release. * Removing unenforcable consts (LP:
+ stuff anymore (7d3e660)
+ * Use the appropriate list of nicks and groups to find our data now
+ (52c42ef)
+ * Figure out what kind of actions we have (4baf9b7)
+ * Adding a state variable to track what kind of actions we have
+ (f7e5502)
+ * Attaching bug (a02d4de)
+ * Changing our defines around to make sure to mark things the way
+ that we think about them. (55b0614)
+
+2012-02-23 Sebastien Bacher
+
+ * releasing version 0.4.92-0ubuntu1 (f6f9209)
+ * Merging shared upstream rev into target branch. (efe75e4)
+ * Prepared upstream tree for merging into target branch. (cfa1adf)
+ * Merging shared upstream rev into target branch. (164055c)
+ * Prepared upstream tree for merging into target branch. (e305ff2)
+
+2012-02-23 Ted Gould
+
+ * releasing version 0.4.92-0ubuntu1~ppa1 (c28e242)
+ * New upstream release. * Removing unenforcable consts (LP:
#937387) * Explicitly add in gmodule as a required
- library
-
-2012-02-23 00:23:40 -0600 Ted Gould (169093d3)
-
- * Import upstream version 0.4.92
-
-2012-02-23 00:23:06 -0600 Ted Gould (87c4364e)
-
- * Merge with U. Desktop
-
-2012-02-23 00:22:12 -0600 Ted Gould (1474099e)
-
- * Merging shared upstream rev into target branch.
-
-2012-02-23 00:22:12 -0600 Ted Gould (c88ba654)
-
- * Prepared upstream tree for merging into target branch.
-
-2012-02-23 00:21:27 -0600 Ted Gould (4de00ddb)
-
- * Merging shared upstream rev into target branch.
-
-2012-02-23 00:21:27 -0600 Ted Gould (54b8584c)
+ library (27b2576)
+ * Import upstream version 0.4.92 (169093d)
+ * Merge with U. Desktop (87c4364)
+ * Merging shared upstream rev into target branch. (1474099)
+ * Prepared upstream tree for merging into target branch. (c88ba65)
+ * Merging shared upstream rev into target branch. (4de00dd)
+ * Prepared upstream tree for merging into target branch. (54b8584)
+ * 0.4.92 (69f15f7) (tag: 0.4.92)
- * Prepared upstream tree for merging into target branch.
+2012-02-22 Ted Gould
-2012-02-23 00:18:35 -0600 Ted Gould (69f15f71)
+ * Remove unenforcable consts (f29a183)
+ * Attaching bug (fef88fa)
+ * Removing unenforcable consts (975ee36)
- * 0.4.92 (tag: 0.4.92)
+2012-02-15 Sebastien Bacher
-2012-02-22 22:54:56 -0600 Ted Gould (f29a1835)
+ * releasing version 0.4.91-0ubuntu3 (55ae526)
+ * Restore revision dropped by error, not sure what happened with the
+ vcs (a6436f6)
+ * releasing version 0.4.91-0ubuntu2 (461dbdc)
+ * Merging shared upstream rev into target branch. (2ac2e54)
+ * Prepared upstream tree for merging into target branch. (93e5e7e)
- * Remove unenforcable consts
+2012-02-14 Ted Gould
-2012-02-22 12:19:26 -0600 Ted Gould (fef88fa8)
+ * releasing version 0.4.91-0ubuntu1~ppa3 (457b502)
+ * Adjusting timeout so it'll build on the buildds too (4621a45)
+ * Increasing the test timeout to ensure that's not our issue
+ (0cad2e2)
+ * releasing version 0.4.91-0ubuntu1~ppa2 (e5053ae)
+ * debian/rules: Adding messages (17133c0)
- * Attaching bug
+2012-02-14 Sebastien Bacher
-2012-02-22 12:18:01 -0600 Ted Gould (975ee36f)
+ * releasing version 0.4.91-0ubuntu1 (5a2f66b)
+ * Import upstream version 0.4.91 (f8e24ae)
- * Removing unenforcable consts
+2012-02-14 Ted Gould
-2012-02-15 13:13:03 +0100 Sebastien Bacher (55ae5266)
-
- * releasing version 0.4.91-0ubuntu3
-
-2012-02-15 13:09:01 +0100 Sebastien Bacher (a6436f65)
-
- * Restore revision dropped by error, not sure what happened with the
- vcs
-
-2012-02-15 12:46:44 +0100 Sebastien Bacher (461dbdcc)
-
- * releasing version 0.4.91-0ubuntu2
-
-2012-02-15 12:45:46 +0100 Sebastien Bacher (2ac2e54b)
-
- * Merging shared upstream rev into target branch.
-
-2012-02-15 12:45:45 +0100 Sebastien Bacher (93e5e7ed)
-
- * Prepared upstream tree for merging into target branch.
-
-2012-02-14 21:11:44 -0600 Ted Gould (457b502a)
-
- * releasing version 0.4.91-0ubuntu1~ppa3
-
-2012-02-14 21:10:11 -0600 Ted Gould (4621a452)
-
- * Adjusting timeout so it'll build on the buildds too
-
-2012-02-14 20:51:23 -0600 Ted Gould (0cad2e2f)
-
- * Increasing the test timeout to ensure that's not our issue
-
-2012-02-14 16:48:13 -0600 Ted Gould (e5053aef)
-
- * releasing version 0.4.91-0ubuntu1~ppa2
-
-2012-02-14 16:45:43 -0600 Ted Gould (17133c0d)
-
- * debian/rules: Adding messages
-
-2012-02-14 22:35:40 +0100 Sebastien Bacher (5a2f66b3)
-
- * releasing version 0.4.91-0ubuntu1
-
-2012-02-14 22:29:50 +0100 Sebastien Bacher (f8e24aea)
-
- * Import upstream version 0.4.91
-
-2012-02-14 15:19:23 -0600 Ted Gould (ee6a7f0f)
-
- * Explicitly listing gmodule as a library we're using
-
-2012-02-14 14:29:53 -0600 Ted Gould (05f46d7e)
-
- * releasing version 0.4.91-0ubuntu1~ppa1
-
-2012-02-14 14:27:38 -0600 Ted Gould (7f1272a5)
-
- * * debian/control, debian/rules: * Adding in autoreconf support
+ * Explicitly listing gmodule as a library we're using (ee6a7f0)
+ * releasing version 0.4.91-0ubuntu1~ppa1 (05f46d7)
+ * debian/control, debian/rules: * Adding in autoreconf support
* Adding a check rule and requiring new build deps
-
-2012-02-14 14:23:06 -0600 Ted Gould (36b39c96)
-
- * debian/control, debian/rules: Adding in autoreconf support
-
-2012-02-14 14:21:36 -0600 Ted Gould (eb803e83)
-
- * * Upstream Merge * Explicitly add in gmodule as a required
- library
-
-2012-02-14 14:20:54 -0600 Ted Gould (45aebde8)
-
- * Explicity add gmodule in the list of required libraries
-
-2012-02-14 11:52:00 -0600 Ted Gould (b2a5f94b)
-
- * Dropping debian/patches
-
-2012-02-14 11:50:12 -0600 Ted Gould (40274af1)
-
- * * New upstream release. * Visibility fixes for indicators using
+ (7f1272a)
+ * debian/control, debian/rules: Adding in autoreconf support
+ (36b39c9)
+ * Upstream Merge * Explicitly add in gmodule as a required
+ library (eb803e8)
+ * Explicity add gmodule in the list of required libraries (45aebde)
+ * Dropping debian/patches (b2a5f94)
+ * New upstream release. * Visibility fixes for indicators using
that functionality * Ensure that parent_object is more
aggressively set * Fix memory leak on groups of items in
- desktop files
-
-2012-02-14 11:48:37 -0600 Ted Gould (a820ba78)
-
- * Import upstream version 0.4.91
-
-2012-02-14 11:48:17 -0600 Ted Gould (ca8b3632)
-
- * Merge with Ubuntu Desktop
-
-2012-02-14 11:35:11 -0600 Ted Gould (f099181a)
-
- * 0.4.91 (tag: 0.4.91)
-
-2012-02-13 20:07:33 +0100 Lars Uebernickel (2a6c388d)
-
- * indicator_object_set_visible: only emit entry-{added,removed} when
- visibility actually changed
+ desktop files (40274af)
+ * Import upstream version 0.4.91 (a820ba7)
+ * Merge with Ubuntu Desktop (ca8b363)
+ * 0.4.91 (f099181) (tag: 0.4.91)
-2012-02-13 19:38:10 +0100 Lars Uebernickel (b2ca0dbe)
+2012-02-13 Lars Uebernickel
- * indicator_object_dispose: remove unneeded list of entries
+ * indicator_object_set_visible: only emit entry-{added,removed} when
+ visibility actually changed (2a6c388)
+ * indicator_object_dispose: remove unneeded list of entries (b2ca0db)
+ * indicator_object_dispose: use _set_visible instead of
+ reimplementing it (73c0659)
+ * indicator_object_set_visible: no need to check for ENTRY_INIT
+ (e7780ac)
-2012-02-13 19:15:03 +0100 Lars Uebernickel (73c0659d)
+2012-02-12 Lars Uebernickel
- * indicator_object_dispose: use _set_visible instead of
- reimplementing it
+ * indicator_object_set_visible: only emit entry-{added,removed} when
+ visibility actually changed (5f599a8)
-2012-02-13 19:08:27 +0100 Lars Uebernickel (e7780ac9)
+2012-02-10 Ted Gould
- * indicator_object_set_visible: no need to check for ENTRY_INIT
+ * Free groupname after usage (233fdd7)
-2012-02-12 13:40:21 +0100 Lars Uebernickel (5f599a8c)
+2012-02-09 Daniel d'Andrada
- * indicator_object_set_visible: only emit entry-{added,removed} when
- visibility actually changed
+ * Plug memory leak in parse_keyfile function. (2375490)
-2012-02-10 11:06:22 -0600 Ted Gould (233fdd70)
+2012-02-03 Ted Gould
- * Free groupname after usage
+ * Be more agressive in ensureing the parent_object value is available
+ everywhere. (238865c)
-2012-02-09 11:05:55 -0200 Daniel d'Andrada (2375490e)
+2012-02-03 Marco Trevisan (Treviño)
- * Plug memory leak in parse_keyfile function.
+ * tests, DummyIndicatorSignaler: free the allocated memory. (7ae413b)
-2012-02-03 09:48:05 -0600 Ted Gould (238865c7)
+2012-01-26 Ken VanDine
- * Be more agressive in ensureing the parent_object value is available
- everywhere.
+ * releasing version 0.4.90-0ubuntu4 (b339871) (tag: 0.4.90-0ubuntu4)
-2012-02-03 15:34:07 +0100 Marco Trevisan (Treviño) (7ae413b5)
+2012-01-25 Ken VanDine
- * tests, DummyIndicatorSignaler: free the allocated memory.
+ * releasing version 0.4.90-0ubuntu3 (a98a0b6) (tag: 0.4.90-0ubuntu3)
-2012-01-26 00:37:14 -0500 Ken VanDine (b3398715)
+2012-01-25 Marco Trevisan (Treviño)
- * releasing version 0.4.90-0ubuntu4 (tag: 0.4.90-0ubuntu4)
+ * Test loader: check also for parent changes (c87aff7)
+ * Tests: update dummy signaler to work with real IndicatorObjectEntry
+ (39cf870)
+ * IndicatorObject: update object parent in any case. (1baaf28)
-2012-01-25 18:15:08 -0500 Ken VanDine (a98a0b6e)
+2012-01-25 Ted Gould
- * releasing version 0.4.90-0ubuntu3 (tag: 0.4.90-0ubuntu3)
+ * Merging with U. Desktop (8df8585)
-2012-01-25 18:11:43 +0100 Marco Trevisan (Treviño) (c87aff74)
+2012-01-25 Marco Trevisan (Treviño)
- * Test loader: check also for parent changes
+ * Added better parent_object tests. (c26badd)
+ * Indicator-Object: update the parent_object value only if the entry
+ is valid. (c9df18b)
+ * IndicatorObject: correctly initialize the parent object. (0373d6f)
-2012-01-25 18:11:07 +0100 Marco Trevisan (Treviño) (39cf8702)
+2012-01-24 Ken VanDine
- * Tests: update dummy signaler to work with real IndicatorObjectEntry
-
-2012-01-25 18:10:29 +0100 Marco Trevisan (Treviño) (1baaf288)
-
- * IndicatorObject: update object parent in any case.
-
-2012-01-25 08:32:22 -0600 Ted Gould (8df8585e)
-
- * Merging with U. Desktop
-
-2012-01-25 12:22:12 +0100 Marco Trevisan (Treviño) (c26baddf)
-
- * Added better parent_object tests.
-
-2012-01-25 12:21:51 +0100 Marco Trevisan (Treviño) (c9df18be)
-
- * Indicator-Object: update the parent_object value only if the entry
- is valid.
-
-2012-01-25 11:55:37 +0100 Marco Trevisan (Treviño) (0373d6fc)
-
- * IndicatorObject: correctly initialize the parent object.
-
-2012-01-24 21:50:55 -0500 Ken VanDine (118a95aa)
-
- * releasing version 0.4.90-0ubuntu2 (tag: 0.4.90-0ubuntu2)
-
-2012-01-24 19:30:08 -0500 Ken VanDine (6659abf5)
-
- * releasing version 0.4.90-0ubuntu1 (tag: 0.4.90-0ubuntu1)
-
-2012-01-24 12:19:38 -0500 Ken VanDine (2d9e6ffd)
-
- * * New upstream release. * Support hiding and showing indicators
+ * releasing version 0.4.90-0ubuntu2 (118a95a) (tag: 0.4.90-0ubuntu2)
+ * releasing version 0.4.90-0ubuntu1 (6659abf) (tag: 0.4.90-0ubuntu1)
+ * New upstream release. * Support hiding and showing indicators
* Track the parent object in the entry * Adding activate
- function to include Window ID * debian/control: Bumping
- ABI version of lib
-
-2012-01-24 10:23:26 -0600 Ted Gould (c2596f71)
-
- * Silent bump
+ function to include Window ID; debian/control: Bumping
+ ABI version of lib (2d9e6ff)
-2012-01-24 10:17:02 -0600 Ted Gould (f64689ab)
+2012-01-24 Ted Gould
- * releasing version 0.4.90-0ubuntu1~ppa1
-
-2012-01-24 10:15:31 -0600 Ted Gould (f131f1f9)
-
- * debian/control: Bumping ABI version of lib
-
-2012-01-24 10:10:15 -0600 Ted Gould (b00b35ac)
-
- * * New upstream release. * Support hiding and showing indicators
+ * Silent bump (c2596f7)
+ * releasing version 0.4.90-0ubuntu1~ppa1 (f64689a)
+ * debian/control: Bumping ABI version of lib (f131f1f)
+ * New upstream release. * Support hiding and showing indicators
* Track the parent object in the entry * Adding activate
- function to include Window ID
-
-2012-01-24 10:07:33 -0600 Ted Gould (e81d0ecf)
-
- * Import upstream version 0.4.90
-
-2012-01-24 09:54:13 -0600 Ted Gould (fe22121b)
-
- * Merging from U. Desktop
-
-2012-01-24 09:47:32 -0600 Ted Gould (dbccdd5f)
-
- * 0.4.90 (tag: 0.4.90)
-
-2012-01-23 22:42:02 -0600 Ted Gould (6f3976c5)
-
- * Bumping the ABI version
-
-2012-01-23 17:00:29 -0600 Ted Gould (23e99955)
-
- * Add visibility concept to the default indicator object
-
-2012-01-23 16:52:52 -0600 Ted Gould (7935501e)
-
- * Put the parent pointer in the entry struct to make it easier for
- the implementers of the panel side
-
-2012-01-23 08:55:12 -0600 Charles Kerr (95daf102)
-
- * "bzr merge lp:indicator" + conflict resolution in tests suite
-
-2012-01-23 05:39:50 -0600 Charles Kerr (4f4190f7)
-
- * another iteration of the indicator-object visibility support patch,
- incorporating ideas from discussion with ted
-
-2012-01-20 14:02:16 -0600 Charles Kerr (8cb8b9f1)
-
- * fix bugs in IndicatorObject's visibility support.
-
-2012-01-19 11:55:47 -0600 Ted Gould (a1ed503a)
-
- * Checking to ensure the parent_object pointer gets set
-
-2012-01-19 11:48:32 -0600 Ted Gould (e14c0872)
-
- * Adding a warning for entries that do not set their parent_object
-
-2012-01-19 11:46:28 -0600 Ted Gould (f2f9c5b6)
-
- * Set the parent_object on the default entry
-
-2012-01-19 11:44:37 -0600 Ted Gould (8a739e17)
+ function to include Window ID (b00b35a)
+ * Import upstream version 0.4.90 (e81d0ec)
+ * Merging from U. Desktop (fe22121)
+ * 0.4.90 (dbccdd5) (tag: 0.4.90)
- * Adding a parent object pointer to the entry
+2012-01-23 Ted Gould
-2012-01-19 10:41:20 -0600 Ted Gould (1cf6a976)
+ * Bumping the ABI version (6f3976c)
+ * Add visibility concept to the default indicator object (23e9995)
+ * Put the parent pointer in the entry struct to make it easier for
+ the implementers of the panel side (7935501)
- * Adding a window ID function to pass the window ID
+2012-01-23 Charles Kerr
-2012-01-16 03:59:29 +0100 Ted Gould (6a0f41aa)
+ * "bzr merge lp:indicator" + conflict resolution in tests suite
+ (95daf10)
+ * another iteration of the indicator-object visibility support patch,
+ incorporating ideas from discussion with ted (4f4190f)
- * Moving the function into the tester to making linking simpler
+2012-01-20 Charles Kerr
-2012-01-16 03:45:00 +0100 Ted Gould (f898563b)
+ * fix bugs in IndicatorObject's visibility support. (8cb8b9f)
- * Adding a test to look to make sure the fallback works
+2012-01-19 Ted Gould
-2012-01-14 10:51:55 +0100 Ted Gould (2dfe3fff)
+ * Checking to ensure the parent_object pointer gets set (a1ed503)
+ * Adding a warning for entries that do not set their parent_object
+ (e14c087)
+ * Set the parent_object on the default entry (f2f9c5b)
+ * Adding a parent object pointer to the entry (8a739e1)
+ * Adding a window ID function to pass the window ID (1cf6a97)
- * Add a function to swap out the window entry handler
+2012-01-16 Ted Gould
-2012-01-14 10:33:29 +0100 Ted Gould (da798a2b)
+ * Moving the function into the tester to making linking simpler
+ (6a0f41a)
+ * Adding a test to look to make sure the fallback works (f898563)
- * Getting the header in dist
+2012-01-14 Ted Gould
-2012-01-14 10:30:22 +0100 Ted Gould (7586398a)
+ * Add a function to swap out the window entry handler (2dfe3ff)
+ * Getting the header in dist (da798a2)
+ * Adding a test functioin for the entry func demmy indicator
+ (7586398)
+ * Mark the entry functions as called (b7c8a63)
- * Adding a test functioin for the entry func demmy indicator
+2012-01-13 Ted Gould
-2012-01-14 10:07:43 +0100 Ted Gould (b7c8a634)
+ * Setting up entry functions (efcb3e6)
+ * Adding some public values to know if functions were called
+ (530b211)
+ * Moving things into a shared header (347ab41)
+ * Build a new dummy indicator (68c1666)
+ * Adding test coverage checking (e3ce551)
+ * Clearing the entry function pointers (0419bac)
+ * Handling the activate_window function and going up the stack
+ (a88097a)
+ * Documenting what this stuff does (a6ed65a)
+ * Adding an activate window function, that can also be virtual!
+ (2bb19db)
+ * Ignoring all the stuff we build (976209f)
+ * Putting the GTK3 headers in a different directory (b58d9bf)
+ * Adding ability to disable tests (c3c1ebb)
- * Mark the entry functions as called
+2012-01-13 Charles Kerr
-2012-01-13 17:00:47 +0100 Ted Gould (efcb3e65)
+ * Better implementation. (c52fbaa)
- * Setting up entry functions
+2012-01-12 Charles Kerr
-2012-01-13 16:52:42 +0100 Ted Gould (530b2112)
+ * initial revision for GSettings/GtkMenu visibility support (d3392a9)
- * Adding some public values to know if functions were called
+2011-12-06 Allan LeSage
-2012-01-13 16:48:52 +0100 Ted Gould (347ab416)
+ * Added coverage reporting via gcov config and targets. (b1aebe5)
- * Moving things into a shared header
+2011-11-22 Ken VanDine
-2012-01-13 16:38:58 +0100 Ted Gould (68c16669)
+ * debian/control - set ubuntu-desktop VCS and maintainer
+ (30ab1ed)
+ * releasing version 0.4.1-1 (f1c0aaf) (tag: 0.4.1-1)
- * Build a new dummy indicator
+2011-11-20 György Balló
-2012-01-13 16:09:40 +0100 Ted Gould (e3ce5513)
+ * Use different directory for headers of gtk3 library (d126352)
+ * Make building tests optional (c0ac60b)
- * Adding test coverage checking
+2011-09-28 Ken VanDine
-2012-01-13 15:34:48 +0100 Ted Gould (0419bac4)
+ * releasing version 0.4.1-0ubuntu1 (5834d28) (tag: 0.4.1-0ubuntu1)
+ * New upstream release. * Ensure loader doesn't use menu proxy
+ (1a1fa5b)
- * Clearing the entry function pointers
+2011-09-28 Ted Gould
-2012-01-13 15:25:42 +0100 Ted Gould (a88097a9)
+ * releasing version 0.4.1-0ubuntu1~ppa1 (80e619f)
+ * New upstream release. * Ensure loader doesn't use menu proxy
+ (86103c5)
+ * Import upstream version 0.4.1 (e36cd22)
+ * Merge U. Desktop (e33473c)
+ * 0.4.1 (a5c7874) (tag: 0.4.1)
- * Handling the activate_window function and going up the stack
+2011-09-20 Ken VanDine
-2012-01-13 15:07:18 +0100 Ted Gould (a6ed65ae)
+ * releasing version 0.4.0-0ubuntu1 (4993a3c) (tag: 0.4.0-0ubuntu1)
+ * New upstream release. * Add libm to linking to fix FTBFS (LP:
+ #840514) (ceba790)
- * Documenting what this stuff does
+2011-09-20 Ted Gould
-2012-01-13 15:01:01 +0100 Ted Gould (2bb19db5)
+ * Make sure our menus don't get proxied (6c215ec)
- * Adding an activate window function, that can also be virtual!
+2011-09-19 Ted Gould
-2012-01-13 13:04:25 +0100 Ted Gould (976209fb)
+ * releasing version 0.4.0-0ubuntu1~ppa1 (2867575)
+ * New upstream release. * Add libm to linking to fix FTBFS (LP:
+ #840514) (0ab41b7)
+ * Import upstream version 0.4.0 (0b4f5b3)
+ * Merging in U. Desktop (8ec147c)
+ * 0.4.0 (f8f310d) (tag: 0.4.0)
- * Ignoring all the stuff we build
+2011-09-16 Ted Gould
-2012-01-13 13:00:34 +0100 Ted Gould (b58d9bfc)
+ * Add in libm (fff5af0)
- * Putting the GTK3 headers in a different directory
+2011-09-03 Evgeni Golov
-2012-01-13 12:56:50 +0100 Ted Gould (c3c1ebbb)
+ * find and link libm (240eaf6)
- * Adding ability to disable tests
+2011-09-01 Steve Langasek
-2012-01-13 05:54:17 +0100 Charles Kerr (c52fbaa4)
-
- * Better implementation.
-
-2012-01-12 14:51:30 +0100 Charles Kerr (d3392a98)
-
- * initial revision for GSettings/GtkMenu visibility support
-
-2011-12-06 15:21:45 -0600 Allan LeSage (b1aebe56)
-
- * Added coverage reporting via gcov config and targets.
-
-2011-11-22 14:39:48 -0500 Ken VanDine (30ab1ed0)
-
- * * debian/control - set ubuntu-desktop VCS and maintainer
-
-2011-11-22 14:37:23 -0500 Ken VanDine (f1c0aaff)
-
- * releasing version 0.4.1-1 (tag: 0.4.1-1)
-
-2011-11-20 02:19:45 +0100 György Balló (d1263521)
-
- * Use different directory for headers of gtk3 library
-
-2011-11-20 02:17:19 +0100 György Balló (c0ac60b8)
-
- * Make building tests optional
-
-2011-09-28 12:14:30 -0400 Ken VanDine (5834d280)
-
- * releasing version 0.4.1-0ubuntu1 (tag: 0.4.1-0ubuntu1)
-
-2011-09-28 12:11:57 -0400 Ken VanDine (1a1fa5bc)
-
- * * New upstream release. * Ensure loader doesn't use menu proxy
-
-2011-09-28 10:51:11 -0500 Ted Gould (80e619fe)
-
- * releasing version 0.4.1-0ubuntu1~ppa1
-
-2011-09-28 10:48:44 -0500 Ted Gould (86103c55)
-
- * * New upstream release. * Ensure loader doesn't use menu proxy
-
-2011-09-28 10:48:20 -0500 Ted Gould (e36cd22e)
-
- * Import upstream version 0.4.1
-
-2011-09-28 10:47:59 -0500 Ted Gould (e33473c5)
-
- * Merge U. Desktop
-
-2011-09-28 10:45:04 -0500 Ted Gould (a5c78749)
-
- * 0.4.1 (tag: 0.4.1)
-
-2011-09-20 09:37:24 -0700 Ken VanDine (4993a3cb)
-
- * releasing version 0.4.0-0ubuntu1 (tag: 0.4.0-0ubuntu1)
-
-2011-09-20 08:55:00 -0700 Ken VanDine (ceba790f)
-
- * * New upstream release. * Add libm to linking to fix FTBFS (LP:
- #840514)
-
-2011-09-20 10:12:21 -0500 Ted Gould (6c215ec3)
-
- * Make sure our menus don't get proxied
-
-2011-09-19 21:54:34 -0500 Ted Gould (28675750)
-
- * releasing version 0.4.0-0ubuntu1~ppa1
-
-2011-09-19 21:44:03 -0500 Ted Gould (0ab41b7e)
-
- * * New upstream release. * Add libm to linking to fix FTBFS (LP:
- #840514)
-
-2011-09-19 21:43:09 -0500 Ted Gould (0b4f5b32)
-
- * Import upstream version 0.4.0
-
-2011-09-19 21:42:40 -0500 Ted Gould (8ec147c0)
-
- * Merging in U. Desktop
-
-2011-09-19 21:33:28 -0500 Ted Gould (f8f310d9)
-
- * 0.4.0 (tag: 0.4.0)
-
-2011-09-16 16:50:46 -0500 Ted Gould (fff5af0e)
-
- * Add in libm
-
-2011-09-03 19:48:30 +0200 Evgeni Golov (240eaf6d)
-
- * find and link libm
-
-2011-09-01 14:22:14 -0700 Steve Langasek (130ebff7)
-
- * releasing version 0.3.93-0ubuntu2 (tag: 0.3.93-0ubuntu2)
-
-2011-09-01 14:22:10 -0700 Steve Langasek (604acbf9)
-
- * Drop the Breaks: against old versions of libindicator and
+ * releasing version 0.3.93-0ubuntu2 (130ebff) (tag: 0.3.93-0ubuntu2)
+ * Drop the Breaks: against old versions of libindicator and
libindicator3; there are no file conflicts between the
libraries, so this doesn't accurately reflect the package
relationships but does make it harder to calculate
- upgrades from natty. LP: #839098.
-
-2011-08-11 21:27:40 +0200 Sebastien Bacher (4db9d2e0)
-
- * releasing version 0.3.93-0ubuntu1 (tag: 0.3.93-0ubuntu1)
-
-2011-08-11 21:20:42 +0200 Sebastien Bacher (871b89ed)
-
- * * New upstream release.
-
-2011-08-11 09:44:48 -0500 Ted Gould (5600252d)
-
- * releasing version 0.3.93-0ubuntu1~ppa1
-
-2011-08-11 09:43:07 -0500 Ted Gould (0aaf53b4)
-
- * * New upstream release. * Rescan icon theme if icon can't be
- loaded
-
-2011-08-11 09:42:37 -0500 Ted Gould (7b63153f)
-
- * Import upstream version 0.3.93
-
-2011-08-11 09:17:29 -0500 Ted Gould (e2b7e82e)
-
- * 0.3.93 (tag: 0.3.93)
-
-2011-08-10 21:11:23 -0500 Ted Gould (0a66155d)
-
- * Check a reload of the icon theme if needed
-
-2011-08-02 15:37:50 +0200 Aurelien Gateau (1790510c)
-
- * Ask GTK to rescan the icon theme if the wanted icon cannot be
- found.
-
-2011-07-29 09:13:48 -0500 Ted Gould (a51845f9)
-
- * Don't make a new include directory based on GTK version
-
-2011-07-21 13:14:27 -0400 Ken VanDine (8ee4d7de)
-
- * releasing version 0.3.92-0ubuntu1 (tag: 0.3.92-0ubuntu1)
-
-2011-07-21 13:06:29 -0400 Ken VanDine (24063df9)
+ upgrades from natty. LP: #839098. (604acbf)
- * setting to UNRELEASED
+2011-08-11 Sebastien Bacher
-2011-07-21 12:30:30 -0400 Ken VanDine (7c76a871)
+ * releasing version 0.3.93-0ubuntu1 (4db9d2e) (tag: 0.3.93-0ubuntu1)
+ * New upstream release. (871b89e)
- * * New upstream release. * Adding support for a secondary activate
- signal
+2011-08-11 Ted Gould
-2011-07-21 10:39:12 -0500 Ted Gould (23239f8b)
+ * releasing version 0.3.93-0ubuntu1~ppa1 (5600252)
+ * New upstream release. * Rescan icon theme if icon can't be
+ loaded (0aaf53b)
+ * Import upstream version 0.3.93 (7b63153)
+ * 0.3.93 (e2b7e82) (tag: 0.3.93)
- * releasing version 0.3.92-0ubuntu1~ppa1
+2011-08-10 Ted Gould
-2011-07-21 10:37:35 -0500 Ted Gould (6c59bf9e)
+ * Check a reload of the icon theme if needed (0a66155)
- * Merge with U. Desktop
+2011-08-02 Aurelien Gateau
-2011-07-21 10:19:28 -0500 Ted Gould (056b8a53)
+ * Ask GTK to rescan the icon theme if the wanted icon cannot be
+ found. (1790510)
- * * New upstream release. * Adding support for a secondary activate
- signal
+2011-07-29 Ted Gould
-2011-07-21 10:19:02 -0500 Ted Gould (5d457c51)
+ * Don't make a new include directory based on GTK version (a51845f)
- * Import upstream version 0.3.92
+2011-07-21 Ken VanDine
-2011-07-21 10:04:21 -0500 Ted Gould (e27e7f65)
+ * releasing version 0.3.92-0ubuntu1 (8ee4d7d) (tag: 0.3.92-0ubuntu1)
+ * setting to UNRELEASED (24063df)
+ * New upstream release. * Adding support for a secondary activate
+ signal (7c76a87)
- * Making sure the lib builds before the tests or tools
+2011-07-21 Ted Gould
-2011-07-21 10:00:54 -0500 Ted Gould (0cee12c6)
+ * releasing version 0.3.92-0ubuntu1~ppa1 (23239f8)
+ * Merge with U. Desktop (6c59bf9)
+ * New upstream release. * Adding support for a secondary activate
+ signal (056b8a5)
+ * Import upstream version 0.3.92 (5d457c5)
+ * Making sure the lib builds before the tests or tools (e27e7f6)
+ * 0.3.92 (0cee12c) (tag: 0.3.92)
+ * Adding in secondary activate support (d3de40a)
+ * Dropping the x and y paramaters from the secondary activate signal
+ (4234bd3)
- * 0.3.92 (tag: 0.3.92)
+2011-07-15 Ken VanDine
-2011-07-21 09:18:42 -0500 Ted Gould (d3de40a1)
-
- * Adding in secondary activate support
-
-2011-07-21 09:17:41 -0500 Ted Gould (4234bd3c)
-
- * Dropping the x and y paramaters from the secondary activate signal
-
-2011-07-15 09:43:58 -0400 Ken VanDine (69b82366)
-
- * releasing version 0.3.91-0ubuntu1 (tag: 0.3.91-0ubuntu1)
-
-2011-07-15 09:00:15 -0400 Ken VanDine (2801a022)
-
- * * New upstream release. * Fix signals with NULL entries in the
+ * releasing version 0.3.91-0ubuntu1 (69b8236) (tag: 0.3.91-0ubuntu1)
+ * New upstream release. * Fix signals with NULL entries in the
loader * Adding a comment for setting up debugging
options * Adding annotations for GIR files * Fixing
watchers hashtable to detect when we have none * Fix
testing so no tests are XFAIL anymore * Adding a replace
mode for testing indicator services * Watching new
- services when the name switches
-
-2011-07-14 13:37:44 -0500 Ted Gould (8641c274)
-
- * releasing version 0.3.91-0ubuntu1~ppa1
-
-2011-07-14 13:34:38 -0500 Ted Gould (d2d97806)
-
- * * New upstream release. * Watching new services when the name
- switches
-
-2011-07-14 13:33:11 -0500 Ted Gould (6032a847)
-
- * Import upstream version 0.3.91
-
-2011-07-14 13:09:21 -0500 Ted Gould (c6d763c2)
-
- * 0.3.91 (tag: 0.3.91)
-
-2011-07-14 13:08:31 -0500 Ted Gould (a6ea4762)
-
- * Fixing the libindicator test suite
-
-2011-07-12 15:23:50 -0500 Ted Gould (445e65a1)
-
- * Adding an env variable to put a service in replace mode
-
-2011-07-12 14:36:45 -0500 Ted Gould (79893996)
-
- * releasing version 0.3.90-0ubuntu2~ppa2
-
-2011-07-12 14:35:40 -0500 Ted Gould (45d7404d)
-
- * * Upstream Merge * Watching new services when the name switches
-
-2011-07-12 14:34:50 -0500 Ted Gould (2e66ca5c)
-
- * Watching when we do name switches
-
-2011-07-12 10:59:17 -0500 Ted Gould (aad53642)
-
- * releasing version 0.3.90-0ubuntu2~ppa1
-
-2011-07-12 10:56:46 -0500 Ted Gould (37c5aa9d)
-
- * Adding a replace mode for testing indicator services
-
-2011-07-12 10:55:10 -0500 Ted Gould (522f3c07)
-
- * * Fixing watchers hashtable to detect when we have none * Fix
- testing so no tests are XFAIL anymore
-
-2011-07-12 10:54:18 -0500 Ted Gould (3d6738fd)
-
- * * Upstream Merge * Fix signals with NULL entries in the loader
+ services when the name switches (2801a02)
+
+2011-07-14 Ted Gould
+
+ * releasing version 0.3.91-0ubuntu1~ppa1 (8641c27)
+ * New upstream release. * Watching new services when the name
+ switches (d2d9780)
+ * Import upstream version 0.3.91 (6032a84)
+ * 0.3.91 (c6d763c) (tag: 0.3.91)
+ * Fixing the libindicator test suite (a6ea476)
+
+2011-07-12 Ted Gould
+
+ * Adding an env variable to put a service in replace mode (445e65a)
+ * releasing version 0.3.90-0ubuntu2~ppa2 (7989399)
+ * Upstream Merge * Watching new services when the name switches
+ (45d7404)
+ * Watching when we do name switches (2e66ca5)
+ * releasing version 0.3.90-0ubuntu2~ppa1 (aad5364)
+ * Adding a replace mode for testing indicator services (37c5aa9)
+ * * Fixing watchers hashtable to detect when we have none * Fix
+ testing so no tests are XFAIL anymore (522f3c0)
+ * Upstream Merge * Fix signals with NULL entries in the loader
* Adding a comment for setting up debugging options *
- Adding annotations for GIR files
-
-2011-07-12 10:50:11 -0500 Ted Gould (8b9fa181)
-
- * Merging in U. Desktop
+ Adding annotations for GIR files (3d6738f)
+ * Merging in U. Desktop (8b9fa18)
+ * Adding in the shutdown function (1838bfc)
+ * In replace mode we need to ask the other guy to shutdown and still
+ wait for the name a bit. (5de36e3)
+ * Adding in a property for being in replace mode (b412bfe)
-2011-07-12 10:46:35 -0500 Ted Gould (1838bfc6)
+2011-07-11 Ted Gould
- * Adding in the shutdown function
-
-2011-07-12 10:43:45 -0500 Ted Gould (5de36e3e)
-
- * In replace mode we need to ask the other guy to shutdown and still
- wait for the name a bit.
-
-2011-07-12 10:14:12 -0500 Ted Gould (b412bfe9)
-
- * Adding in a property for being in replace mode
-
-2011-07-11 17:01:12 -0500 Ted Gould (64c3e2e2)
-
- * Cleaning up removal of watchers as the string was getting free'd
+ * Cleaning up removal of watchers as the string was getting free'd
before it could get used to remove the entry from the
hashtable. Now using a destroy function as that is
- possible with GDBus but wasn't with dbus-glib
-
-2011-07-11 16:34:48 -0500 Ted Gould (269f1a14)
-
- * Define the bus well known type in the session.conf file
-
-2011-07-11 16:06:10 -0500 Ted Gould (0c3a6856)
-
- * Add the PC file instead of replace it
-
-2011-07-11 16:00:12 -0500 Ted Gould (ee271867)
-
- * Handle NULL entries without crashing
+ possible with GDBus but wasn't with dbus-glib (64c3e2e)
+ * Define the bus well known type in the session.conf file (269f1a1)
+ * Add the PC file instead of replace it (0c3a685)
+ * Handle NULL entries without crashing (ee27186)
-2011-07-09 03:39:10 +0200 Marco Trevisan (Treviño) (6f1c8e02)
+2011-07-09 Marco Trevisan (Treviño)
- * Added support for secondary activate signal: i.e. middle-click
+ * Added support for secondary activate signal: i.e. middle-click
+ (6f1c8e0)
-2011-07-07 23:38:34 -0500 Ted Gould (ca29a765)
+2011-07-07 Ted Gould
- * Installing the debugging env entries in shared directory instead of
- the executable one.
+ * Installing the debugging env entries in shared directory instead of
+ the executable one. (ca29a76)
+ * Fixing doc string (2016fdf)
+ * Anotating the get entires function properly. (d7f14c3)
-2011-07-07 23:36:22 -0500 Ted Gould (2016fdf6)
+2011-07-08 Marco Trevisan (Treviño)
- * Fixing doc string
+ * Merging with trunk (5f78a77)
-2011-07-07 23:34:49 -0500 Ted Gould (d7f14c3c)
+2011-07-08 Robert Ancell
- * Anotating the get entires function properly.
-
-2011-07-08 03:03:00 +0200 Marco Trevisan (Treviño) (5f78a771)
-
- * Merging with trunk
-
-2011-07-08 10:39:59 +1000 Robert Ancell (801419bd)
-
- * Annotate the return value of indicator_object_get_entries so that
+ * Annotate the return value of indicator_object_get_entries so that
the type in the list is known, also fix typo in docstring
+ (801419b)
-2011-07-07 11:12:59 -0400 Ken VanDine (b414e0f5)
-
- * releasing version 0.3.90-0ubuntu1 (tag: 0.3.90-0ubuntu1)
-
-2011-07-07 10:55:25 -0400 Ken VanDine (c292980b)
+2011-07-07 Ken VanDine
- * * debian/rules - Simplify the dual builds with cdbs - Fixed
- package names to match soname * debian/*.install fixed
- paths to work with the dual builds change *
- tools/Makefile.in - Fixed path for xsessiondir *
+ * releasing version 0.3.90-0ubuntu1 (b414e0f) (tag: 0.3.90-0ubuntu1)
+ * debian/rules - Simplify the dual builds with cdbs - Fixed
+ package names to match soname; debian/*.install fixed
+ paths to work with the dual builds chang.
+ tools/Makefile.in - Fixed path for xsessiondi.
debian/control - Fixed package names to match soname
-
-2011-07-07 10:38:35 -0400 Ken VanDine (d23b4e89)
-
- * Make xsessiondir = $(pkgdatadir)
-
-2011-07-07 10:11:32 -0400 Ken VanDine (95d709f4)
-
- * * New upstream release. * Build Fixes * Adding license to test
+ (c292980)
+ * Make xsessiondir = $(pkgdatadir) (d23b4e8)
+ * New upstream release. * Build Fixes * Adding license to test
files (LP: #684886) * Bump API/ABI versions
appropriately and make easier to edit them in the
future * Adding a name-hint to the indicator entries *
Merging scroll functions into a single good one (LP:
- #804618) * debian/*install, control: Changing ABI version
- number bump in package names * debian/rules: Making GTK2
- the special case as GTK3 is default now * debian/*install:
- Fixing pkgconfig file names
-
-2011-07-07 10:09:23 -0400 Ken VanDine (dedf43d1)
-
- * Changed to help message for --with-gtk to reflect the new default
-
-2011-07-07 08:30:15 -0500 Ted Gould (352c01a8)
-
- * Making the box function conditional on GTK version
-
-2011-07-07 08:29:41 -0500 Ted Gould (8677620e)
-
- * releasing version 0.3.90-0ubuntu1~ppa1
-
-2011-07-07 08:25:26 -0500 Ted Gould (1e09013d)
-
- * Fixing the box usage
-
-2011-07-07 08:25:11 -0500 Ted Gould (14cdff4c)
-
- * Handling the right box for the right version of GTK
-
-2011-07-07 00:40:51 -0500 Ted Gould (24123eb5)
-
- * debian/*install: Fixing pkgconfig file names
-
-2011-07-07 00:38:18 -0500 Ted Gould (f44a6bcf)
-
- * * debian/*install, control: Changing ABI version number bump in
- package names * debian/rules: Making GTK2 the special case
- as GTK3 is default now
-
-2011-07-07 00:32:12 -0500 Ted Gould (709208d4)
-
- * * New upstream release. * Build Fixes * Adding license to test
+ #804618); debian/*install, control: Changing ABI version
+ number bump in package names; debian/rules: Making GTK2
+ the special case as GTK3 is default now; debian/*install:
+ Fixing pkgconfig file names (95d709f)
+ * Changed to help message for --with-gtk to reflect the new default
+ (dedf43d)
+
+2011-07-07 Ted Gould
+
+ * Making the box function conditional on GTK version (352c01a)
+ * releasing version 0.3.90-0ubuntu1~ppa1 (8677620)
+ * Fixing the box usage (1e09013)
+ * Handling the right box for the right version of GTK (14cdff4)
+ * debian/*install: Fixing pkgconfig file names (24123eb)
+ * debian/*install, control: Changing ABI version number bump in
+ package names; debian/rules: Making GTK2 the special case
+ as GTK3 is default now (f44a6bc)
+ * New upstream release. * Build Fixes * Adding license to test
files (LP: #684886) * Bump API/ABI versions
appropriately and make easier to edit them in the
future * Adding a name-hint to the indicator entries *
Merging scroll functions into a single good one (LP:
- #804618)
-
-2011-07-07 00:28:26 -0500 Ted Gould (c1034173)
-
- * Import upstream version 0.3.90
-
-2011-07-06 16:35:52 -0500 Ted Gould (9cca8d7d)
-
- * 0.3.90 (tag: 0.3.90)
-
-2011-07-06 16:35:49 -0500 Ted Gould (cce6c17c)
-
- * Cleaning up the built pc file
-
-2011-07-06 16:33:09 -0500 Ted Gould (6f2f1477)
-
- * Switch to using gtk_box_new()
-
-2011-07-06 16:30:16 -0500 Ted Gould (fb0fab8e)
-
- * Making some test XFAIL and attaching to bugs
-
-2011-07-06 16:14:20 -0500 Ted Gould (b0f700d1)
-
- * Adding headers to tests
-
-2011-07-06 16:11:29 -0500 Ted Gould (2d3893c3)
-
- * Adding license info to [ch] files
-
-2011-07-06 15:50:48 -0500 Ted Gould (9a18c1c0)
-
- * Sync to U. Desktop
-
-2011-07-06 15:34:38 -0500 Ted Gould (02fb5cb9)
-
- * Changing the API and ABI versioning slightly
-
-2011-07-06 15:34:19 -0500 Ted Gould (e2a324a7)
-
- * Adding in the name hint for the indicators
-
-2011-07-05 22:29:32 -0500 Ted Gould (173c8a74)
-
- * Setting default GTK version to 3
-
-2011-07-05 22:27:48 -0500 Ted Gould (f5575b53)
-
- * Changing the pkgconfig file version to include the API version
-
-2011-07-05 16:18:56 -0500 Ted Gould (f837b4b6)
-
- * Clearing our local name_hint and ensuring we fill it if a function
- is provided.
-
-2011-07-05 16:15:14 -0500 Ted Gould (26c580fe)
-
- * Adding a get name hint function as well.
-
-2011-07-05 16:13:05 -0500 Ted Gould (7797504f)
-
- * Adding the naming hint to the entry structure
-
-2011-07-05 15:05:49 -0500 Ted Gould (746cf4ec)
-
- * Making the API and ABI versions variables
-
-2011-07-05 14:58:15 -0500 Ted Gould (f3dc2853)
-
- * Adding another level of .in for the pc files.
-
-2011-07-05 14:29:50 -0500 Ted Gould (5a535d10)
-
- * Switching to single scrolling event.
-
-2011-07-02 04:13:05 +0200 Marco Trevisan (Treviño) (8881229a)
-
- * Merging "scroll" and "scroll-entry" into the "entry-scrolled"
- signal
-
-2011-06-29 11:06:26 +0100 Ken VanDine (36fb97c7)
-
- * releasing version 0.3.22-0ubuntu2 (tag: 0.3.22-0ubuntu2)
-
-2011-06-16 13:38:12 -0500 Ted Gould (5fdfbbec)
-
- * Updating autotools
-
-2011-06-15 16:18:37 +0100 Javier Jardón (9adf0b15)
-
- * configure.ac: Generate xz tarballs with pax format by default
+ #804618) (709208d)
+ * Import upstream version 0.3.90 (c103417)
-2011-06-15 16:17:57 +0100 Javier Jardón (c8c7cf84)
+2011-07-06 Ted Gould
- * Update autotools configuration
+ * 0.3.90 (9cca8d7) (tag: 0.3.90)
+ * Cleaning up the built pc file (cce6c17)
+ * Switch to using gtk_box_new() (6f2f147)
+ * Making some test XFAIL and attaching to bugs (fb0fab8)
+ * Adding headers to tests (b0f700d)
+ * Adding license info to [ch] files (2d3893c)
+ * Sync to U. Desktop (9a18c1c)
+ * Changing the API and ABI versioning slightly (02fb5cb)
+ * Adding in the name hint for the indicators (e2a324a)
-2011-03-23 16:33:53 -0400 Ken VanDine (052a7408)
+2011-07-05 Ted Gould
- * releasing version 0.3.22-0ubuntu1 (tag: 0.3.22-0ubuntu1)
+ * Setting default GTK version to 3 (173c8a7)
+ * Changing the pkgconfig file version to include the API version
+ (f5575b5)
+ * Clearing our local name_hint and ensuring we fill it if a function
+ is provided. (f837b4b)
+ * Adding a get name hint function as well. (26c580f)
+ * Adding the naming hint to the entry structure (7797504)
+ * Making the API and ABI versions variables (746cf4e)
+ * Adding another level of .in for the pc files. (f3dc285)
+ * Switching to single scrolling event. (5a535d1)
-2011-03-23 13:21:52 -0500 Ted Gould (97e2fede)
+2011-07-02 Marco Trevisan (Treviño)
- * releasing version 0.3.22-0ubuntu1~ppa1
+ * Merging "scroll" and "scroll-entry" into the "entry-scrolled"
+ signal (8881229)
-2011-03-23 13:19:36 -0500 Ted Gould (47a97e27)
+2011-06-29 Ken VanDine
- * New upstream release. object is in. (LP: #703555)
+ * releasing version 0.3.22-0ubuntu2 (36fb97c) (tag: 0.3.22-0ubuntu2)
-2011-03-23 13:17:30 -0500 Ted Gould (50607d3f)
+2011-06-16 Ted Gould
- * Import upstream version 0.3.22
+ * Updating autotools (5fdfbbe)
-2011-03-23 13:13:28 -0500 Ted Gould (f9f5cee3)
+2011-06-15 Javier Jardón
- * 0.3.22 (tag: 0.3.22)
+ * configure.ac: Generate xz tarballs with pax format by default
+ (9adf0b1)
+ * Update autotools configuration (c8c7cf8)
-2011-03-23 10:44:01 -0500 Ted Gould (6f1e50bb)
+2011-03-23 Ken VanDine
- * Adding API to know what the environment the indicator is in
+ * releasing version 0.3.22-0ubuntu1 (052a740) (tag: 0.3.22-0ubuntu1)
-2011-03-22 15:03:30 -0500 Ted Gould (a774a411)
+2011-03-23 Ted Gould
- * releasing version 0.3.21-0ubuntu2~ppa1
+ * releasing version 0.3.22-0ubuntu1~ppa1 (97e2fed)
+ * New upstream release. object is in. (LP: #703555) (47a97e2)
+ * Import upstream version 0.3.22 (50607d3)
+ * 0.3.22 (f9f5cee) (tag: 0.3.22)
+ * Adding API to know what the environment the indicator is in
+ (6f1e50b)
-2011-03-22 14:59:41 -0500 Ted Gould (118b8f09)
+2011-03-22 Ted Gould
- * * Upstream Merge * Adding the ability to know the environment the
- indicator object is in.
+ * releasing version 0.3.21-0ubuntu2~ppa1 (a774a41)
+ * Upstream Merge * Adding the ability to know the environment the
+ indicator object is in. (118b8f0)
+ * Sync U. Desktop (a075227)
+ * Adding a nice little checking function (a995a11)
+ * Adding an environments variable and make a lifecycle for it.
+ (5712d44)
+ * Getting some stub functions in (8673e8f)
+ * Making the environments a list of strings (baf04be)
-2011-03-22 14:59:00 -0500 Ted Gould (a0752277)
+2011-03-16 Ken VanDine
- * Sync U. Desktop
+ * releasing version 0.3.21-0ubuntu1 (1b0f902) (tag: 0.3.21-0ubuntu1)
-2011-03-22 10:57:30 -0500 Ted Gould (a995a114)
+2011-03-16 Ted Gould
- * Adding a nice little checking function
+ * releasing version 0.3.21-0ubuntu1~ppa1 (b36a867)
+ * New upstream release. ∘ Don't check for TargetEnvironment on the
+ desktop group (c393bc6)
+ * Import upstream version 0.3.21 (e2b7096)
+ * Merge with U. Desktop (54ae143)
+ * 0.3.21 (c245779) (tag: 0.3.21)
+ * Fix checking for target environment on the desktop group (bbae0db)
+ * Make sure not to use TargetEnvironment on the desktop group
+ (690ffa9)
-2011-03-22 10:51:19 -0500 Ted Gould (5712d441)
+2011-03-03 Ken VanDine
- * Adding an environments variable and make a lifecycle for it.
+ * releasing version 0.3.20-0ubuntu1 (5b51dc5) (tag: 0.3.20-0ubuntu1)
-2011-03-22 10:46:53 -0500 Ted Gould (8673e8f7)
+2011-03-03 Ted Gould
- * Getting some stub functions in
+ * releasing version 0.3.20-0ubuntu1~ppa1 (879dc15)
+ * New upstream release. * Use the "TargetEnvironment" key in
+ shortcuts (53895da)
+ * Import upstream version 0.3.20 (48d8752)
+ * 0.3.20 (12047a5) (tag: 0.3.20)
+ * Use the TargetEnvironment key (dd2660b)
+ * Merging in Robert's branch (440c893)
+ * Merge from U. Desktop (f0e21d0)
-2011-03-22 10:42:30 -0500 Ted Gould (baf04be1)
+2011-03-02 Ted Gould
- * Making the environments a list of strings
+ * Removing warning that there are no shortcuts, that's a valid thing
+ to have. (61e9b95)
+ * Adding a target environment key and checking for that over others.
+ (9b34e7c)
-2011-03-16 15:52:46 -0400 Ken VanDine (1b0f9021)
+2011-02-23 Ken VanDine
- * releasing version 0.3.21-0ubuntu1 (tag: 0.3.21-0ubuntu1)
+ * releasing version 0.3.19-0ubuntu3 (f417427) (tag: 0.3.19-0ubuntu3)
+ * releasing version 0.3.19-0ubuntu2 (58dbd1d) (tag: 0.3.19-0ubuntu2)
-2011-03-16 13:29:24 -0500 Ted Gould (b36a8670)
+2011-02-23 unknown
- * releasing version 0.3.21-0ubuntu1~ppa1
+ * debian/control: - Use new GTK3 package naming (38d7280)
-2011-03-16 13:23:15 -0500 Ted Gould (c393bc66)
+2011-02-17 Ken VanDine
- * New upstream release. ∘ Don't check for TargetEnvironment on the
- desktop group
+ * releasing version 0.3.19-0ubuntu1 (04397e7) (tag: 0.3.19-0ubuntu1)
-2011-03-16 13:22:24 -0500 Ted Gould (e2b7096a)
+2011-02-17 Ted Gould
- * Import upstream version 0.3.21
+ * releasing version 0.3.19-0ubuntu1~ppa1 (6ca27e8)
+ * debian/control: Adding Breaks for the previous library rev so that
+ users don't end up with systems that use both. (4447040)
+ * debian/*: Changing the library major version from 2 to 3 (2dae441)
+ * New upstream release. ∘ Adding in a11y description support ∘ Fixing
+ distcheck (LP: #587811) (20ef744)
+ * Import upstream version 0.3.19 (7840128)
+ * Merging in U.Desktop (6c89ab0)
+ * 0.3.19 (27d0798) (tag: 0.3.19)
-2011-03-16 13:21:56 -0500 Ted Gould (54ae1435)
+2011-02-16 Ted Gould
- * Merge with U. Desktop
+ * Returning reserveds as we're breaking ABI anyway (0cfa5a8)
+ * Bumping the major version of the lib and the indicator directory
+ (518f847)
+ * Merging support for having an accessible description (01fe1bc)
+ * Fixing makefile to include all the necissary files in dist
+ (2b78c2f)
-2011-03-16 13:17:22 -0500 Ted Gould (c2457798)
+2011-02-15 Ted Gould
- * 0.3.21 (tag: 0.3.21)
+ * Adding the service.in files as well (e137b60)
-2011-03-16 11:14:43 -0500 Ted Gould (bbae0db4)
+2011-02-15 Sebastien Bacher
- * Fix checking for target environment on the desktop group
+ * Add session.conf.in to dist (27cdc75)
-2011-03-16 11:08:28 -0500 Ted Gould (690ffa93)
+2011-02-08 Luke Yelavich
- * Make sure not to use TargetEnvironment on the desktop group
-
-2011-03-03 17:21:07 -0500 Ken VanDine (5b51dc54)
-
- * releasing version 0.3.20-0ubuntu1 (tag: 0.3.20-0ubuntu1)
-
-2011-03-03 14:02:16 -0600 Ted Gould (879dc15d)
-
- * releasing version 0.3.20-0ubuntu1~ppa1
-
-2011-03-03 13:59:38 -0600 Ted Gould (53895da9)
-
- * * New upstream release. * Use the "TargetEnvironment" key in
- shortcuts
-
-2011-03-03 13:59:07 -0600 Ted Gould (48d87526)
-
- * Import upstream version 0.3.20
-
-2011-03-03 13:52:38 -0600 Ted Gould (12047a58)
-
- * 0.3.20 (tag: 0.3.20)
-
-2011-03-03 12:46:55 -0600 Ted Gould (dd2660b0)
-
- * Use the TargetEnvironment key
-
-2011-03-03 12:43:50 -0600 Ted Gould (440c8935)
-
- * Merging in Robert's branch
-
-2011-03-03 12:40:32 -0600 Ted Gould (f0e21d08)
-
- * Merge from U. Desktop
-
-2011-03-02 13:57:04 -0600 Ted Gould (61e9b95c)
-
- * Removing warning that there are no shortcuts, that's a valid thing
- to have.
-
-2011-03-02 13:55:16 -0600 Ted Gould (9b34e7c0)
-
- * Adding a target environment key and checking for that over others.
-
-2011-02-23 12:09:25 -0500 Ken VanDine (f4174276)
-
- * releasing version 0.3.19-0ubuntu3 (tag: 0.3.19-0ubuntu3)
-
-2011-02-23 08:50:33 -0500 Ken VanDine (58dbd1d4)
-
- * releasing version 0.3.19-0ubuntu2 (tag: 0.3.19-0ubuntu2)
-
-2011-02-23 10:47:05 +1100 unknown (38d72805)
-
- * * debian/control: - Use new GTK3 package naming
-
-2011-02-17 15:30:58 -0500 Ken VanDine (04397e71)
-
- * releasing version 0.3.19-0ubuntu1 (tag: 0.3.19-0ubuntu1)
-
-2011-02-17 10:27:18 -0600 Ted Gould (6ca27e8c)
-
- * releasing version 0.3.19-0ubuntu1~ppa1
-
-2011-02-17 10:25:54 -0600 Ted Gould (4447040f)
-
- * debian/control: Adding Breaks for the previous library rev so that
- users don't end up with systems that use both.
-
-2011-02-17 10:23:46 -0600 Ted Gould (2dae441f)
-
- * debian/*: Changing the library major version from 2 to 3
-
-2011-02-17 10:21:37 -0600 Ted Gould (20ef744b)
-
- * New upstream release. ∘ Adding in a11y description support ∘ Fixing
- distcheck (LP: #587811)
-
-2011-02-17 10:19:45 -0600 Ted Gould (7840128f)
-
- * Import upstream version 0.3.19
-
-2011-02-17 10:19:15 -0600 Ted Gould (6c89ab08)
-
- * Merging in U.Desktop
-
-2011-02-17 09:58:30 -0600 Ted Gould (27d07989)
-
- * 0.3.19 (tag: 0.3.19)
-
-2011-02-16 15:44:07 -0600 Ted Gould (0cfa5a8a)
-
- * Returning reserveds as we're breaking ABI anyway
-
-2011-02-16 15:40:14 -0600 Ted Gould (518f847f)
-
- * Bumping the major version of the lib and the indicator directory
-
-2011-02-16 15:10:23 -0600 Ted Gould (01fe1bcc)
-
- * Merging support for having an accessible description
-
-2011-02-16 14:46:36 -0600 Ted Gould (2b78c2fe)
-
- * Fixing makefile to include all the necissary files in dist
-
-2011-02-15 14:32:46 -0600 Ted Gould (e137b600)
-
- * Adding the service.in files as well
-
-2011-02-15 09:30:34 -0600 Sebastien Bacher (27cdc75f)
-
- * Add session.conf.in to dist
-
-2011-02-08 14:28:50 +1100 Luke Yelavich (a5127455)
-
- * accessible_name -> accessible_desc in tests as well
-
-2011-02-08 14:25:10 +1100 Luke Yelavich (f5930129)
-
- * * accessible_name -> accessible_desc to better reflect the use of
- the content. * Add accessible-desc-update signal so that
+ * accessible_name -> accessible_desc in tests as well (a512745)
+ * accessible_name -> accessible_desc to better reflect the use of
+ the content.; Add accessible-desc-update signal so that
indicators can tell indicator-applet/unity that the
- accessible description has changed
-
-2011-02-01 17:49:23 +1100 Luke Yelavich (855d3545)
-
- * use const gchar for variable and prototype
-
-2011-02-01 17:37:15 +1100 Luke Yelavich (d50d1bb0)
-
- * Merge from trunk
-
-2011-01-27 16:43:49 -0500 Ken VanDine (326b5bf4)
-
- * releasing version 0.3.18-0ubuntu1 (tag: 0.3.18-0ubuntu1)
-
-2011-01-27 15:31:07 -0600 Ted Gould (1246174a)
-
- * releasing version 0.3.18-0ubuntu1~ppa1
-
-2011-01-27 15:29:13 -0600 Ted Gould (4a4ca1e8)
-
- * debian/rules: Updating shlibs
-
-2011-01-27 15:28:42 -0600 Ted Gould (517ff3c2)
-
- * * New upstream release. * Adding a signal for scrolling that
- includes the entry
-
-2011-01-27 15:27:43 -0600 Ted Gould (b22f471a)
-
- * Import upstream version 0.3.18
+ accessible description has changed (f593012)
-2011-01-27 15:14:17 -0600 Ted Gould (9ac55199)
+2011-02-01 Luke Yelavich
- * 0.3.18 (tag: 0.3.18)
+ * use const gchar for variable and prototype (855d354)
+ * Merge from trunk (d50d1bb)
-2011-01-27 15:13:47 -0600 Ted Gould (ded377cb)
+2011-01-27 Ken VanDine
- * Adding a signal for scrolling that includes the entry
+ * releasing version 0.3.18-0ubuntu1 (326b5bf) (tag: 0.3.18-0ubuntu1)
-2011-01-27 12:24:00 +0100 Marco Trevisan (Treviño) (d903523d)
+2011-01-27 Ted Gould
- * Removed typo in code.
+ * releasing version 0.3.18-0ubuntu1~ppa1 (1246174)
+ * debian/rules: Updating shlibs (4a4ca1e)
+ * New upstream release. * Adding a signal for scrolling that
+ includes the entry (517ff3c)
+ * Import upstream version 0.3.18 (b22f471)
+ * 0.3.18 (9ac5519) (tag: 0.3.18)
+ * Adding a signal for scrolling that includes the entry (ded377c)
-2011-01-27 00:12:42 +0100 Marco Trevisan (Treviño) (5873fe77)
+2011-01-27 Marco Trevisan (Treviño)
- * Added support for "signal-entry" signal
+ * Removed typo in code. (d903523)
+ * Added support for "signal-entry" signal (5873fe7)
-2011-01-18 16:50:37 +1100 Luke Yelavich (9215e19e)
+2011-01-18 Luke Yelavich
- * Add accessible_name variable in indicator entry structure
+ * Add accessible_name variable in indicator entry structure (9215e19)
-2011-01-14 11:09:38 -0600 Ted Gould (7f4196b9)
+2011-01-14 Ted Gould
- * releasing version 0.3.17-0ubuntu1~ppa1
+ * releasing version 0.3.17-0ubuntu1~ppa1 (7f4196b)
+ * Sync to Ubuntu Desktop (5400cb9)
+ * New upstream release. * Fixing catching services dropping off
+ (b5161b9)
+ * Import upstream version 0.3.17 (fde4196)
+ * 0.3.17 (ab0f0ab) (tag: 0.3.17)
-2011-01-14 11:06:08 -0600 Ted Gould (5400cb97)
+2011-01-13 Ted Gould
- * Sync to Ubuntu Desktop
+ * Use dbus name watches instead of g-owner-change signal for watching
+ for restarts. (afe5430)
-2011-01-14 11:05:06 -0600 Ted Gould (b5161b9e)
+2011-01-13 Michael Terry
- * * New upstream release. * Fixing catching services dropping off
-
-2011-01-14 11:03:09 -0600 Ted Gould (fde41965)
-
- * Import upstream version 0.3.17
-
-2011-01-14 10:55:39 -0600 Ted Gould (ab0f0abc)
-
- * 0.3.17 (tag: 0.3.17)
-
-2011-01-13 23:03:24 -0600 Ted Gould (afe54306)
-
- * Use dbus name watches instead of g-owner-change signal for watching
- for restarts.
-
-2011-01-13 16:05:26 -0600 Michael Terry (084d3e8c)
-
- * use actual DBus NameOwnerChanged interface rather than GDBus's
+ * use actual DBus NameOwnerChanged interface rather than GDBus's
higher level signal because that one only works for
- well-known names
-
-2011-01-13 16:04:53 -0600 Michael Terry (4098f740)
-
- * fix basename issue when make is given full path
-
-2011-01-13 15:00:23 -0600 Sebastien Bacher (3814e3d2)
-
- * releasing version 0.3.16-0ubuntu1 (tag: 0.3.16-0ubuntu1)
-
-2011-01-13 12:49:29 -0600 Ted Gould (b9880445)
-
- * releasing version 0.3.16-0ubuntu1~ppa1
-
-2011-01-13 12:47:47 -0600 Ted Gould (3f209627)
-
- * Syncing to upstream
-
-2011-01-13 12:46:07 -0600 Ted Gould (917061a9)
-
- * New upstream release.
-
-2011-01-13 12:43:15 -0600 Ted Gould (22a9ca4c)
-
- * Import upstream version 0.3.16
-
-2011-01-13 12:41:49 -0600 Ted Gould (ee32949d)
-
- * 0.3.16 (tag: 0.3.16)
-
-2011-01-10 12:00:43 -0600 Ted Gould (cf882252)
-
- * releasing version 0.3.15-0ubuntu3~ppa2
-
-2011-01-10 11:55:10 -0600 Ted Gould (bd88281f)
-
- * Final GDBus port
-
-2011-01-10 11:54:57 -0600 Ted Gould (990356c4)
-
- * debian/control: Dropping dbus-glib as a build-dep
-
-2011-01-10 11:52:43 -0600 Ted Gould (6a012987)
-
- * * Upstream Merge: * GDBus Port * autogen.sh * debian/control:
- Migrating library versions from 1 to 2
-
-2011-01-10 10:21:35 -0600 Ted Gould (38af4e8e)
-
- * Adding a signal for the menu being closed.
-
-2011-01-10 10:19:52 -0600 Ted Gould (2b6655fe)
-
- * Fixing doc strings
-
-2011-01-10 10:17:04 -0600 Ted Gould (48db67a5)
-
- * Porting to GDBus
-
-2011-01-09 17:08:21 -0600 Ted Gould (2bf1edb3)
-
- * Making the test suite compile again
-
-2011-01-09 17:06:45 -0600 Ted Gould (4a3d68bb)
-
- * Using the GCancellable to detect if we're already creating a proxy
- so that we don't do it twice.
-
-2011-01-09 16:58:41 -0600 Ted Gould (664e39bb)
-
- * Using variant_unref instead of object_unref as it's a variant
-
-2011-01-09 15:44:19 -0600 Ted Gould (a17110ef)
-
- * Adding a virtual function for closing the menu and a wrapper for
- it.
-
-2011-01-09 15:03:14 -0600 Ted Gould (f8bea0d6)
-
- * releasing version 0.3.15-0ubuntu3~ppa2~gdbus1
-
-2011-01-09 15:01:36 -0600 Ted Gould (48fb94ff)
-
- * Reverting this change made by distro
-
-2011-01-09 14:31:00 -0600 Ted Gould (bea872db)
-
- * Marshaller fixes
-
-2011-01-09 14:29:54 -0600 Ted Gould (13a284ff)
-
- * Might need these
-
-2011-01-09 14:21:19 -0600 Ted Gould (7404425a)
-
- * debian/control: Migrating library versions from 1 to 2
-
-2011-01-09 14:18:24 -0600 Ted Gould (c6cd9bba)
-
- * autogen.sh
-
-2011-01-09 14:14:58 -0600 Ted Gould (6b2531c0)
-
- * * Upstream Merge: * GDBus Port
-
-2011-01-09 13:56:02 -0600 Ted Gould (8d3f43fc)
-
- * Making getting the proxy and watching cancellable so that we don't
- get weird crashes.
-
-2011-01-09 13:34:51 -0600 Ted Gould (2fb32b92)
-
- * Adding in the ability to cancel the connection on short lived
- objects.
-
-2011-01-07 23:40:07 -0600 Ted Gould (9911397a)
-
- * Removing a test that is broken at a lower level
-
-2011-01-07 23:39:35 -0600 Ted Gould (64ef2063)
-
- * Disabling the launch test temporarily as it seems broken in GLib
-
-2011-01-07 23:32:20 -0600 Ted Gould (ac7444ce)
-
- * Getting test suite build fixes
-
-2011-01-07 23:32:06 -0600 Ted Gould (dc5880fc)
-
- * Syncing up to trunk
-
-2011-01-07 23:27:36 -0600 Ted Gould (2bbbabcb)
-
- * Switching to the session bus
-
-2011-01-07 23:26:05 -0600 Ted Gould (32515c5c)
-
- * Out of order parameters.
-
-2011-01-07 23:17:19 -0600 Ted Gould (e837ae5d)
-
- * Fixing the linking of the tests to the right libs
-
-2011-01-07 22:43:36 -0600 Ted Gould (20f3cbb9)
-
- * Adding in creating the interface info from the XML files
-
-2011-01-07 22:42:16 -0600 Ted Gould (70bfa89b)
-
- * Replacing the service proxy with a brand new GDBus one
-
-2011-01-07 20:01:37 -0600 Ted Gould (a6e9bff1)
-
- * Ignoring the new files
-
-2011-01-07 16:44:03 -0600 Ted Gould (037ed98f)
-
- * Removing the bus and dbus_proxy variables as we won't need them
- anymore.
-
-2011-01-07 16:37:42 -0600 Ted Gould (9552d2d4)
-
- * Switching around headers to the new world order
-
-2011-01-07 16:12:43 -0600 Ted Gould (33afd01e)
-
- * Instead of setting up a proxy to watch the watcher we're setting up
- a bus name watch on each one.
-
-2011-01-07 15:35:34 -0600 Ted Gould (991b87f5)
-
- * Little clean-ups the compiler found now that it's more happy.
-
-2011-01-07 14:58:52 -0600 Ted Gould (2696619d)
-
- * Switch over to getting the GDBus bus instead of the dbus-glib one
-
-2011-01-07 14:22:17 -0600 Ted Gould (d75fce18)
-
- * Removing unused prototypes
-
-2011-01-07 14:21:44 -0600 Ted Gould (46078343)
-
- * Fleshing out the bus_method_call functions and tying them into the
- traditional start points from dbus.
-
-2011-01-07 13:52:27 -0600 Ted Gould (30703e3d)
-
- * Switching the way that we get a name on dbus and removing the
- dbus_proxy which was used for this previously.
-
-2011-01-07 12:59:25 -0600 Ted Gould (844bccb5)
-
- * Setting up the VTable
-
-2011-01-07 12:43:29 -0600 Ted Gould (6ff24e11)
-
- * Switching the registration of the object over.
-
-2011-01-07 10:55:06 -0600 Ted Gould (06270832)
-
- * Parsing the XML file for the interface description on class init
-
-2011-01-07 10:23:39 -0600 Ted Gould (55ae3fd1)
-
- * Removing the dbus-glib headers
-
-2011-01-07 10:18:42 -0600 Ted Gould (977ed233)
-
- * Changing the way the dbus xml is handled.
-
-2011-01-06 16:41:08 -0600 Ted Gould (f7b8662c)
-
- * Fixing the GTK3 include path.
-
-2011-01-06 17:22:48 -0500 Ken VanDine (c30de626)
-
- * fixed the includedir
-
-2011-01-06 16:09:32 -0600 Ted Gould (8877308f)
-
- * Fixing build source path and build a GTK3 loader
-
-2011-01-06 15:51:07 -0600 Ted Gould (7a022258)
-
- * Adding an important field to relate to when to show the indicator.
-
-2011-01-06 15:08:46 -0600 Ted Gould (71e88584)
-
- * Removing dbus-glib from the build
-
-2011-01-04 16:00:14 -0600 Ted Gould (5de24f6c)
-
- * Adding a function to check whether we should show the indicator
- with priority.
-
-2011-01-04 15:56:53 -0600 Ted Gould (94976663)
-
- * Making it a real signal now
-
-2011-01-04 10:13:15 -0600 Ted Gould (18a5e647)
-
- * Adding a show now state to indicate priority.
-
-2010-12-08 14:48:03 -0600 Ted Gould (356af1c1)
-
- * releasing version 0.3.15-0ubuntu3~ppa1
-
-2010-12-08 14:46:28 -0600 Ted Gould (d85d4762)
-
- * debian/libindicator3-dev: Adding in the include files for this
- version of the library.
-
-2010-12-08 14:45:12 -0600 Ted Gould (8dd81605)
-
- * debian/libindicator-tools: Removing indicator-loader3
-
-2010-12-08 14:07:18 -0600 Ted Gould (809366b5)
-
- * Merging in dual build from Ubuntu Desktop
-
-2010-12-06 10:34:22 -0500 Ken VanDine (c5c78aad)
-
- * releasing version 0.3.15-0ubuntu2 (tag: 0.3.15-0ubuntu2)
-
-2010-12-03 13:14:42 -0500 Ken VanDine (1bce6ba7)
-
- * releasing version 0.3.15-0ubuntu1 (tag: 0.3.15-0ubuntu1)
-
-2010-11-24 18:40:11 -0500 Ken VanDine (5247eb91)
-
- * removed empty dir
-
-2010-11-24 18:39:14 -0500 Ken VanDine (8915dd59)
-
- * * debian/rules - Added build targets to build with gtk3 enabled
- in additional to default build with gtk2 *
+ well-known names (084d3e8)
+ * fix basename issue when make is given full path (4098f74)
+
+2011-01-13 Sebastien Bacher
+
+ * releasing version 0.3.16-0ubuntu1 (3814e3d) (tag: 0.3.16-0ubuntu1)
+
+2011-01-13 Ted Gould
+
+ * releasing version 0.3.16-0ubuntu1~ppa1 (b988044)
+ * Syncing to upstream (3f20962)
+ * New upstream release. (917061a)
+ * Import upstream version 0.3.16 (22a9ca4)
+ * 0.3.16 (ee32949) (tag: 0.3.16)
+
+2011-01-10 Ted Gould
+
+ * releasing version 0.3.15-0ubuntu3~ppa2 (cf88225)
+ * Final GDBus port (bd88281)
+ * debian/control: Dropping dbus-glib as a build-dep (990356c)
+ * Upstream Merge: * GDBus Port; autogen.sh * debian/control:
+ Migrating library versions from 1 to 2 (6a01298)
+ * Adding a signal for the menu being closed. (38af4e8)
+ * Fixing doc strings (2b6655f)
+ * Porting to GDBus (48db67a)
+
+2011-01-09 Ted Gould
+
+ * Making the test suite compile again (2bf1edb)
+ * Using the GCancellable to detect if we're already creating a proxy
+ so that we don't do it twice. (4a3d68b)
+ * Using variant_unref instead of object_unref as it's a variant
+ (664e39b)
+ * Adding a virtual function for closing the menu and a wrapper for
+ it. (a17110e)
+ * releasing version 0.3.15-0ubuntu3~ppa2~gdbus1 (f8bea0d)
+ * Reverting this change made by distro (48fb94f)
+ * Marshaller fixes (bea872d)
+ * Might need these (13a284f)
+ * debian/control: Migrating library versions from 1 to 2 (7404425)
+ * autogen.sh (c6cd9bb)
+ * Upstream Merge: * GDBus Port (6b2531c)
+ * Making getting the proxy and watching cancellable so that we don't
+ get weird crashes. (8d3f43f)
+ * Adding in the ability to cancel the connection on short lived
+ objects. (2fb32b9)
+
+2011-01-07 Ted Gould
+
+ * Removing a test that is broken at a lower level (9911397)
+ * Disabling the launch test temporarily as it seems broken in GLib
+ (64ef206)
+ * Getting test suite build fixes (ac7444c)
+ * Syncing up to trunk (dc5880f)
+ * Switching to the session bus (2bbbabc)
+ * Out of order parameters. (32515c5)
+ * Fixing the linking of the tests to the right libs (e837ae5)
+ * Adding in creating the interface info from the XML files (20f3cbb)
+ * Replacing the service proxy with a brand new GDBus one (70bfa89)
+ * Ignoring the new files (a6e9bff)
+ * Removing the bus and dbus_proxy variables as we won't need them
+ anymore. (037ed98)
+ * Switching around headers to the new world order (9552d2d)
+ * Instead of setting up a proxy to watch the watcher we're setting up
+ a bus name watch on each one. (33afd01)
+ * Little clean-ups the compiler found now that it's more happy.
+ (991b87f)
+ * Switch over to getting the GDBus bus instead of the dbus-glib one
+ (2696619)
+ * Removing unused prototypes (d75fce1)
+ * Fleshing out the bus_method_call functions and tying them into the
+ traditional start points from dbus. (4607834)
+ * Switching the way that we get a name on dbus and removing the
+ dbus_proxy which was used for this previously. (30703e3)
+ * Setting up the VTable (844bccb)
+ * Switching the registration of the object over. (6ff24e1)
+ * Parsing the XML file for the interface description on class init
+ (0627083)
+ * Removing the dbus-glib headers (55ae3fd)
+ * Changing the way the dbus xml is handled. (977ed23)
+
+2011-01-06 Ted Gould
+
+ * Fixing the GTK3 include path. (f7b8662)
+
+2011-01-06 Ken VanDine
+
+ * fixed the includedir (c30de62)
+
+2011-01-06 Ted Gould
+
+ * Fixing build source path and build a GTK3 loader (8877308)
+ * Adding an important field to relate to when to show the indicator.
+ (7a02225)
+ * Removing dbus-glib from the build (71e8858)
+
+2011-01-04 Ted Gould
+
+ * Adding a function to check whether we should show the indicator
+ with priority. (5de24f6)
+ * Making it a real signal now (9497666)
+ * Adding a show now state to indicate priority. (18a5e64)
+
+2010-12-08 Ted Gould
+
+ * releasing version 0.3.15-0ubuntu3~ppa1 (356af1c)
+ * debian/libindicator3-dev: Adding in the include files for this
+ version of the library. (d85d476)
+ * debian/libindicator-tools: Removing indicator-loader3 (8dd8160)
+ * Merging in dual build from Ubuntu Desktop (809366b)
+
+2010-12-06 Ken VanDine
+
+ * releasing version 0.3.15-0ubuntu2 (c5c78aa) (tag: 0.3.15-0ubuntu2)
+
+2010-12-03 Ken VanDine
+
+ * releasing version 0.3.15-0ubuntu1 (1bce6ba) (tag: 0.3.15-0ubuntu1)
+
+2010-11-24 Ken VanDine
+
+ * removed empty dir (5247eb9)
+ * debian/rules - Added build targets to build with gtk3 enabled
+ in additional to default build with gtk.
debian/control - Updated build depends to support
building with gtk+-3.0 - Added dh-autoreconf build
depends - Added libindicator3-1, libindicator3-dev,
- libindicator3-tools binaries binaries *
+ libindicator3-tools binaries binarie.
libindicator/Makefile.am and tools/Makefile.am - Fixes
- needed for building with-gtk=3
-
-2010-11-24 18:00:33 -0500 Ken VanDine (fbef9e67)
-
- * Use abs_srcdir to find template files
-
-2010-11-24 18:00:06 -0500 Ken VanDine (b0c8eb12)
-
- * Build indicator-loader3
-
-2010-11-24 14:56:35 -0500 Ken VanDine (1a4eadca)
-
- * * New upstream release. * Adding a small file to set debugging
+ needed for building with-gtk=3 (8915dd5)
+ * Use abs_srcdir to find template files (fbef9e6)
+ * Build indicator-loader3 (b0c8eb1)
+ * New upstream release. * Adding a small file to set debugging
environment variables * Allowing to build for GTK 2/3
- and build parallel libraries * debian/control: Adding
- package libindicator-debugenv
-
-2010-11-11 14:44:56 -0600 Ted Gould (e87aa8f4)
-
- * releasing version 0.3.15-0ubuntu1~ppa1
-
-2010-11-11 14:41:24 -0600 Ted Gould (3f4743e5)
-
- * * New upstream release. * Allowing to build for GTK 2/3 and build
- parallel libraries
-
-2010-11-11 14:40:03 -0600 Ted Gould (df21e797)
-
- * Import upstream version 0.3.15
-
-2010-11-11 14:39:02 -0600 Ted Gould (7d8375c7)
-
- * 0.3.15 (tag: 0.3.15)
-
-2010-11-11 10:20:24 -0600 Ted Gould (db16c1fe)
-
- * Fixing the ignore file tarball matching
-
-2010-11-11 09:59:36 -0600 Ted Gould (e6a847b0)
-
- * Merging in the GTK3 basis for the build
-
-2010-11-11 09:38:56 -0600 Ted Gould (10d7e222)
-
- * Making sure to get both pc files in the tarball
-
-2010-11-11 09:38:43 -0600 Ted Gould (75672d53)
-
- * Checking for deprecations and making sure we check on distcheck
-
-2010-11-11 09:33:27 -0600 Ted Gould (5c848a14)
-
- * Putting the GTK3 indicators in a different directory.
-
-2010-11-11 09:26:24 -0600 Ted Gould (40d11e16)
-
- * Updating ignore for the GTK3 stuff
-
-2010-11-11 09:25:43 -0600 Ted Gould (69960b2d)
-
- * Merging in trunk to solve conflicts
-
-2010-10-15 14:56:17 -0500 Ted Gould (273cfcac)
-
- * releasing version 0.3.14-0ubuntu2~ppa1
-
-2010-10-15 14:54:32 -0500 Ted Gould (d6160f5d)
-
- * debian/control: Adding package libindicator-debugenv
-
-2010-10-15 14:52:02 -0500 Ted Gould (32b0c1ce)
-
- * Autogen
-
-2010-10-15 14:48:53 -0500 Ted Gould (917a1aeb)
-
- * * Upstream Merge * Adding a small file to set debugging
- environment variables
-
-2010-10-15 14:48:14 -0500 Ted Gould (879ce430)
-
- * Merging in Ubuntu desktop
-
-2010-10-15 14:46:03 -0500 Ted Gould (022e4bfb)
-
- * Adding a file to have the debugging environment variables
-
-2010-10-15 12:41:16 -0500 Ted Gould (b877951a)
-
- * Add mean comment
-
-2010-10-15 12:39:13 -0500 Ted Gould (0f99ed21)
-
- * Adding a number in the name
-
-2010-10-15 12:37:08 -0500 Ted Gould (2e3ea76f)
-
- * Installing the environment file in the session dir
-
-2010-10-15 12:24:12 -0500 Ted Gould (fc94eab8)
-
- * All the environment flags we should set for debugging
-
-2010-10-06 10:58:49 -0400 Michael Terry (ecc6acd2)
-
- * instead of always building gtk2 and gtk3, add a --with-gtk= flag to
- configure to specify which to build with
-
-2010-09-22 18:09:47 +0200 Didier Roche (948cb8ef)
-
- * releasing version 0.3.14-0ubuntu1 (tag: 0.3.14-0ubuntu1)
-
-2010-09-22 10:05:24 +0200 Didier Roche (98f804c2)
-
- * redo removed adjustements
-
-2010-09-21 15:56:00 -0500 Ted Gould (ac662a1a)
-
- * releasing version 0.3.14-0ubuntu1~ppa1
-
-2010-09-21 15:55:12 -0500 Ted Gould (3acdbe77)
-
- * * New upstream release. * Adding a function to signal a menu is
- shown * Changing indicator directory to '4'
-
-2010-09-21 15:53:41 -0500 Ted Gould (b91aaa92)
-
- * Import upstream version 0.3.14
-
-2010-09-21 15:48:56 -0500 Ted Gould (558a37d1)
-
- * 0.3.14 (tag: 0.3.14)
-
-2010-09-21 11:27:07 -0500 Ted Gould (53e57ef7)
-
- * Changing AUTHORS to mention it's built
-
-2010-09-21 11:17:50 -0500 Ted Gould (25d85a12)
-
- * Adding dist hooks for AUTHORS and ChangeLog
-
-2010-09-21 11:13:19 -0500 Ted Gould (137e0f17)
-
- * Merging in Debian branch
-
-2010-09-21 09:25:07 -0500 Ted Gould (32bad82d)
-
- * releasing version 0.3.13-0ubuntu2~ppa2
-
-2010-09-21 09:24:18 -0500 Ted Gould (bd75a2c6)
-
- * Updating with Desktop version and undoing some changes.
-
-2010-09-21 09:22:02 -0500 Ted Gould (027d9ed2)
-
- * Setting right VCS directories
-
-2010-09-21 09:17:40 -0500 Ted Gould (6b3ded75)
-
- * Drop duplicate changelog entry
-
-2010-09-21 09:14:51 -0500 Ted Gould (c5216efc)
-
- * Merge from Ubuntu Desktop
-
-2010-09-21 12:46:31 +0200 Didier Roche (4b5bf4f7)
-
- * ppa version
-
-2010-09-21 12:45:54 +0200 Didier Roche (f7bd2022)
-
- * - rename to soname bump * debian/libindicator1.install: rename to
- soname bump * debian/rules: update MAKESHLIBS_ARGS
-
-2010-09-21 12:36:23 +0200 Didier Roche (5ca60866)
-
- * * debian/control: - put the Vcs-Bzr to point the right official
- branch
-
-2010-09-21 12:35:43 +0200 Didier Roche (c667aaf0)
-
- * * debian/source: - don't use quilt format, it's making the daily
- build not working
-
-2010-09-19 14:47:49 -0500 Ted Gould (2af39613)
-
- * releasing version 0.3.13-0ubuntu1~ppa3
-
-2010-09-19 14:42:21 -0500 Ted Gould (a006528f)
-
- * * debian/rules: * Dropping the simple patch system * Changing
- the shlibs to libindicator1
-
-2010-09-19 13:29:16 -0500 Ted Gould (3e7cedba)
-
- * releasing version 0.3.13-0ubuntu1~ppa2
-
-2010-09-19 13:28:14 -0500 Ted Gould (49b70435)
-
- * * Upstream Merge * Adding a function to signal a menu is shown
- * Changing indicator directory to '4' * debian/control:
+ and build parallel libraries; debian/control: Adding
+ package libindicator-debugenv (1a4eadc)
+
+2010-11-11 Ted Gould
+
+ * releasing version 0.3.15-0ubuntu1~ppa1 (e87aa8f)
+ * New upstream release. * Allowing to build for GTK 2/3 and build
+ parallel libraries (3f4743e)
+ * Import upstream version 0.3.15 (df21e79)
+ * 0.3.15 (7d8375c) (tag: 0.3.15)
+ * Fixing the ignore file tarball matching (db16c1f)
+ * Merging in the GTK3 basis for the build (e6a847b)
+ * Making sure to get both pc files in the tarball (10d7e22)
+ * Checking for deprecations and making sure we check on distcheck
+ (75672d5)
+ * Putting the GTK3 indicators in a different directory. (5c848a1)
+ * Updating ignore for the GTK3 stuff (40d11e1)
+ * Merging in trunk to solve conflicts (69960b2)
+
+2010-10-15 Ted Gould
+
+ * releasing version 0.3.14-0ubuntu2~ppa1 (273cfca)
+ * debian/control: Adding package libindicator-debugenv (d6160f5)
+ * Autogen (32b0c1c)
+ * Upstream Merge * Adding a small file to set debugging
+ environment variables (917a1ae)
+ * Merging in Ubuntu desktop (879ce43)
+ * Adding a file to have the debugging environment variables (022e4bf)
+ * Add mean comment (b877951)
+ * Adding a number in the name (0f99ed2)
+ * Installing the environment file in the session dir (2e3ea76)
+ * All the environment flags we should set for debugging (fc94eab)
+
+2010-10-06 Michael Terry
+
+ * instead of always building gtk2 and gtk3, add a --with-gtk= flag to
+ configure to specify which to build with (ecc6acd)
+
+2010-09-22 Didier Roche
+
+ * releasing version 0.3.14-0ubuntu1 (948cb8e) (tag: 0.3.14-0ubuntu1)
+ * redo removed adjustements (98f804c)
+
+2010-09-21 Ted Gould
+
+ * releasing version 0.3.14-0ubuntu1~ppa1 (ac662a1)
+ * New upstream release. * Adding a function to signal a menu is
+ shown * Changing indicator directory to '4' (3acdbe7)
+ * Import upstream version 0.3.14 (b91aaa9)
+ * 0.3.14 (558a37d) (tag: 0.3.14)
+ * Changing AUTHORS to mention it's built (53e57ef)
+ * Adding dist hooks for AUTHORS and ChangeLog (25d85a1)
+ * Merging in Debian branch (137e0f1)
+ * releasing version 0.3.13-0ubuntu2~ppa2 (32bad82)
+ * Updating with Desktop version and undoing some changes. (bd75a2c)
+ * Setting right VCS directories (027d9ed)
+ * Drop duplicate changelog entry (6b3ded7)
+ * Merge from Ubuntu Desktop (c5216ef)
+
+2010-09-21 Didier Roche
+
+ * ppa version (4b5bf4f)
+ * - rename to soname bump; debian/libindicator1.install: rename to
+ soname bump; debian/rules: update MAKESHLIBS_ARGS
+ (f7bd202)
+ * debian/control: - put the Vcs-Bzr to point the right official
+ branch (5ca6086)
+ * debian/source: - don't use quilt format, it's making the daily
+ build not working (c667aaf)
+
+2010-09-19 Ted Gould
+
+ * releasing version 0.3.13-0ubuntu1~ppa3 (2af3961)
+ * debian/rules: * Dropping the simple patch system * Changing
+ the shlibs to libindicator1 (a006528)
+ * releasing version 0.3.13-0ubuntu1~ppa2 (3e7cedb)
+ * Upstream Merge * Adding a function to signal a menu is shown
+ * Changing indicator directory to '4'; debian/control:
Switching from libindicator0 to libindicator1 as we've
- broken ABI. Conflicting with libindicator0 to make
+ broken ABI. Conflicting with libindicator0 to make
upgrade simpler as it doesn't make sense to have both
- installed. * Autogen update
-
-2010-09-19 13:26:12 -0500 Ted Gould (bf38aa8b)
-
- * Sync to trunk
-
-2010-09-19 13:26:01 -0500 Ted Gould (982c91ca)
-
- * Adding in the about-to-show signal
-
-2010-09-17 16:41:30 -0500 Ted Gould (daaf1465)
-
- * debian/control: Replaces really needs to be conflicts. You don't
- want both of these.
-
-2010-09-17 09:52:32 -0500 Ted Gould (8d7fd132)
-
- * releasing version 0.3.13-0ubuntu1~ppa2~ats3
-
-2010-09-17 09:51:48 -0500 Ted Gould (e51d89f1)
-
- * Autogen update
-
-2010-09-17 09:30:36 -0500 Ted Gould (aafdfdf3)
-
- * releasing version 0.3.13-0ubuntu1~ppa2~ats2
-
-2010-09-17 09:17:23 -0500 Ted Gould (fb8a5c26)
-
- * * Upstream Merge * Making the library different
-
-2010-09-17 09:16:17 -0500 Ted Gould (03641dce)
-
- * Adding some version information so we don't need a conflicts
-
-2010-09-16 16:40:10 -0500 Ted Gould (5be1cb68)
-
- * releasing version 0.3.13-0ubuntu1~ppa2~ats1
-
-2010-09-16 16:37:55 -0500 Ted Gould (7cabb61a)
-
- * Changing indicator directory to '4'
-
-2010-09-16 16:37:08 -0500 Ted Gould (99dc263a)
-
- * Changing indicator directory to '4'
-
-2010-09-16 16:36:21 -0500 Ted Gould (afe60bd5)
-
- * debian/control: Switching from libindicator0 to libindicator1 as
- we've broken ABI.
-
-2010-09-16 16:34:21 -0500 Ted Gould (ebe26f6b)
-
- * * Upstream Merge * Adding a function to signal a menu is shown
-
-2010-09-16 16:15:31 -0500 Ted Gould (6269aec6)
-
- * Creating a callback on the loader to signal the event press down to
- the entry.
-
-2010-09-16 16:09:26 -0500 Ted Gould (daffbe64)
-
- * Fleshing out the entry activate function
-
-2010-09-16 16:06:41 -0500 Ted Gould (64db4d0d)
-
- * Breaking the ABI and adding a subclassable function.
-
-2010-09-16 15:56:50 -0500 Ted Gould (90b4c191)
-
- * Adding a function to push activate back down.
-
-2010-09-15 14:02:22 -0400 Ken VanDine (617263e2)
-
- * releasing version 0.3.13-0ubuntu1 (tag: 0.3.13-0ubuntu1)
-
-2010-09-15 11:46:43 -0500 Ted Gould (0bcacdcd)
-
- * releasing version 0.3.13-0ubuntu1~ppa1
-
-2010-09-15 11:45:14 -0500 Ted Gould (a2df60ef)
-
- * New upstream release.
-
-2010-09-15 11:44:34 -0500 Ted Gould (b675da76)
-
- * Import upstream version 0.3.13
-
-2010-09-15 11:42:57 -0500 Ted Gould (bc8ba958)
-
- * 0.3.13 (tag: 0.3.13)
-
-2010-09-15 11:37:00 -0500 Ted Gould (c587ca3d)
-
- * Printout on menu showing in the loader
-
-2010-09-15 08:58:07 -0500 Ted Gould (b933e7cf)
-
- * Putting a printout in for showing menus.
-
-2010-09-14 10:57:35 -0500 Ted Gould (74b347ab)
-
- * releasing version 0.3.12-0ubuntu2~ppa1
-
-2010-09-14 10:56:53 -0500 Ted Gould (ed40c3c0)
-
- * Flipping PPA version around
-
-2010-09-14 10:56:07 -0500 Ted Gould (06c1df5e)
-
- * Merge with Ubuntu Desktop
-
-2010-09-14 10:54:25 -0500 Ted Gould (f09d0266)
-
- * releasing version 0.3.12-0ubuntu1~ppa2
-
-2010-09-14 10:53:40 -0500 Ted Gould (4e26272a)
-
- * * Upstream Merge * Adding a menu_show signal
-
-2010-09-14 10:52:18 -0500 Ted Gould (f0cd0042)
-
- * Adding a menu_show signal
-
-2010-09-14 09:55:16 -0500 Ted Gould (69221d8f)
-
- * Adding in the signal for the menu showing
-
-2010-09-14 09:51:06 -0500 Ted Gould (06b50847)
-
- * Forgot the signal name
-
-2010-09-14 09:50:09 -0500 Ted Gould (98ec2f38)
-
- * Adding slot for the menu show signal
-
-2010-08-18 12:48:09 -0400 Ken VanDine (ab548526)
-
- * releasing version 0.3.12-0ubuntu1 (tag: 0.3.12-0ubuntu1)
-
-2010-08-18 11:05:54 -0500 Ted Gould (8839b12e)
-
- * releasing version 0.3.12-0ubuntu1~ppa1
-
-2010-08-18 11:04:26 -0500 Ted Gould (6152054b)
-
- * Merging in Ubuntu Desktop branch
+ installed.; Autogen update (49b7043)
+ * Sync to trunk (bf38aa8)
+ * Adding in the about-to-show signal (982c91c)
-2010-08-18 11:02:28 -0500 Ted Gould (d0975614)
+2010-09-17 Ted Gould
- * * New upstream release. * Removing a g_error that was breaking
- Unity on failed icons
+ * debian/control: Replaces really needs to be conflicts. You don't
+ want both of these. (daaf146)
+ * releasing version 0.3.13-0ubuntu1~ppa2~ats3 (8d7fd13)
+ * Autogen update (e51d89f)
+ * releasing version 0.3.13-0ubuntu1~ppa2~ats2 (aafdfdf)
+ * Upstream Merge * Making the library different (fb8a5c2)
+ * Adding some version information so we don't need a conflicts
+ (03641dc)
-2010-08-18 11:01:43 -0500 Ted Gould (5c85a799)
+2010-09-16 Ted Gould
- * Import upstream version 0.3.12
+ * releasing version 0.3.13-0ubuntu1~ppa2~ats1 (5be1cb6)
+ * Changing indicator directory to '4' (7cabb61)
+ * Changing indicator directory to '4' (99dc263)
+ * debian/control: Switching from libindicator0 to libindicator1 as
+ we've broken ABI. (afe60bd)
+ * Upstream Merge * Adding a function to signal a menu is shown
+ (ebe26f6)
+ * Creating a callback on the loader to signal the event press down to
+ the entry. (6269aec)
+ * Fleshing out the entry activate function (daffbe6)
+ * Breaking the ABI and adding a subclassable function. (64db4d0)
+ * Adding a function to push activate back down. (90b4c19)
-2010-08-18 10:59:48 -0500 Ted Gould (7df0fe91)
+2010-09-15 Ken VanDine
- * 0.3.12 (tag: 0.3.12)
+ * releasing version 0.3.13-0ubuntu1 (617263e) (tag: 0.3.13-0ubuntu1)
-2010-08-18 10:57:05 -0500 Ted Gould (3a8fac75)
+2010-09-15 Ted Gould
- * Fixing a g_error so we don't kill unity
+ * releasing version 0.3.13-0ubuntu1~ppa1 (0bcacdc)
+ * New upstream release. (a2df60e)
+ * Import upstream version 0.3.13 (b675da7)
+ * 0.3.13 (bc8ba95) (tag: 0.3.13)
+ * Printout on menu showing in the loader (c587ca3)
+ * Putting a printout in for showing menus. (b933e7c)
-2010-08-16 09:14:49 -0500 Ted Gould (6878f174)
+2010-09-14 Ted Gould
- * Changing the message to a warning and clearing the GtkImage.
+ * releasing version 0.3.12-0ubuntu2~ppa1 (74b347a)
+ * Flipping PPA version around (ed40c3c)
+ * Merge with Ubuntu Desktop (06c1df5)
+ * releasing version 0.3.12-0ubuntu1~ppa2 (f09d026)
+ * Upstream Merge * Adding a menu_show signal (4e26272)
+ * Adding a menu_show signal (f0cd004)
+ * Adding in the signal for the menu showing (69221d8)
+ * Forgot the signal name (06b5084)
+ * Adding slot for the menu show signal (98ec2f3)
-2010-08-13 12:02:59 -0500 Ted Gould (6a055d8b)
+2010-08-18 Ken VanDine
- * Adding debug flag
+ * releasing version 0.3.12-0ubuntu1 (ab54852) (tag: 0.3.12-0ubuntu1)
-2010-08-13 11:57:45 +0200 Sebastien Bacher (79f73553)
+2010-08-18 Ted Gould
- * releasing version 0.3.11-0ubuntu2 (tag: 0.3.11-0ubuntu2)
+ * releasing version 0.3.12-0ubuntu1~ppa1 (8839b12)
+ * Merging in Ubuntu Desktop branch (6152054)
+ * New upstream release. * Removing a g_error that was breaking
+ Unity on failed icons (d097561)
+ * Import upstream version 0.3.12 (5c85a79)
+ * 0.3.12 (7df0fe9) (tag: 0.3.12)
+ * Fixing a g_error so we don't kill unity (3a8fac7)
-2010-08-13 10:17:33 +0200 Mikkel Kamstrup Erlandsen (89924de7)
+2010-08-16 Ted Gould
- * Add an --enable-debug flag to configure script that forces a -g to
- gcc
+ * Changing the message to a warning and clearing the GtkImage.
+ (6878f17)
-2010-08-12 16:45:05 -0400 Ken VanDine (25e77dc4)
+2010-08-13 Ted Gould
- * releasing version 0.3.11-0ubuntu1 (tag: 0.3.11-0ubuntu1)
+ * Adding debug flag (6a055d8)
-2010-08-12 14:42:49 -0500 Ted Gould (1c80632c)
+2010-08-13 Sebastien Bacher
- * releasing version 0.3.11-0ubuntu1~ppa1
+ * releasing version 0.3.11-0ubuntu2 (79f7355) (tag: 0.3.11-0ubuntu2)
-2010-08-12 14:42:07 -0500 Ted Gould (ccf75cad)
+2010-08-13 Mikkel Kamstrup Erlandsen
- * * New upstream release. * Allowing absolute paths in the image
- name (LP: #564034)
+ * Add an --enable-debug flag to configure script that forces a -g to
+ gcc (89924de)
-2010-08-12 14:41:09 -0500 Ted Gould (94a94652)
+2010-08-12 Ken VanDine
- * Import upstream version 0.3.11
+ * releasing version 0.3.11-0ubuntu1 (25e77dc) (tag: 0.3.11-0ubuntu1)
-2010-08-12 14:40:42 -0500 Ted Gould (53265a33)
+2010-08-12 Ted Gould
- * 0.3.11 (tag: 0.3.11)
+ * releasing version 0.3.11-0ubuntu1~ppa1 (1c80632)
+ * New upstream release. * Allowing absolute paths in the image
+ name (LP: #564034) (ccf75ca)
+ * Import upstream version 0.3.11 (94a9465)
+ * 0.3.11 (53265a3) (tag: 0.3.11)
+ * Allowing for absolute file names for icons. (e9c09c5)
-2010-08-12 14:37:24 -0500 Ted Gould (e9c09c54)
+2010-08-09 Karl
- * Allowing for absolute file names for icons.
+ * Added absolute filename fixes (bec9f56)
-2010-08-09 10:41:11 +0100 Karl (bec9f56f)
+2010-07-25 Evgeni Golov
- * Added absolute filename fixes
-
-2010-07-25 12:09:27 +0200 Evgeni Golov (ff065979)
-
- * * Merging new upstream release from Ubuntu. * New upstream release.
+ * Merging new upstream release from Ubuntu.; New upstream release.
* Fixing unwatching crash (LP: #603489) * Adding
- configurable timeout for slow test systems (tag: 0.3.10-1)
-
-2010-07-25 12:08:03 +0200 Evgeni Golov (21ba0389)
-
- * Merge lp:~ubuntu-desktop/libindicator/ubuntu * New upstream
+ configurable timeout for slow test systems (ff06597) (tag:
+ 0.3.10-1)
+ * Merge lp:~ubuntu-desktop/libindicator/ubuntu; New upstream
release. * Fixing unwatching crash (LP: #603489) *
Adding configurable timeout for slow test systems
+ (21ba038)
-2010-07-15 12:17:31 -0500 Ted Gould (13ebc6dd)
-
- * Merge from Debian
-
-2010-07-15 12:15:40 -0500 Ted Gould (e5080c72)
-
- * Updating to Ubuntu Desktop
-
-2010-07-15 11:55:34 -0400 Ken VanDine (8c56a899)
-
- * releasing version 0.3.10-0ubuntu1 (tag: 0.3.10-0ubuntu1)
-
-2010-07-15 10:02:59 -0500 Ted Gould (c6b0ab35)
-
- * releasing version 0.3.10-0ubuntu1~ppa1
-
-2010-07-15 10:02:16 -0500 Ted Gould (ae07d573)
-
- * * New upstream release. * Fixing unwatching crash (LP: #603489)
- * Adding configurable timeout for slow test systems *
- Merged in fix for (LP: #603489)
-
-2010-07-15 09:58:36 -0500 Ted Gould (081637af)
-
- * Import upstream version 0.3.10
-
-2010-07-15 09:58:13 -0500 Ted Gould (6c7db767)
-
- * Sync with ubuntu desktop
-
-2010-07-15 09:49:53 -0500 Ted Gould (362a2d76)
-
- * 0.3.10 (tag: 0.3.10)
-
-2010-07-14 10:07:48 +0200 Evgeni Golov (8b7fa3f6)
-
- * Standards-Version: 3.9.0 (tag: 0.3.9-1)
-
-2010-07-14 10:04:40 +0200 Evgeni Golov (55e4c2c2)
-
- * Add "Don't drop debian/source/*" to the changelog
-
-2010-07-14 10:03:46 +0200 Evgeni Golov (b4d14619)
+2010-07-15 Ted Gould
- * Merging new upstream release and some changes from Ubuntu.
+ * Merge from Debian (13ebc6d)
+ * Updating to Ubuntu Desktop (e5080c7)
-2010-07-14 10:00:17 +0200 Evgeni Golov (d14f25ad)
+2010-07-15 Ken VanDine
- * Merging lp:~ubuntu-desktop/libindicator/ubuntu
+ * releasing version 0.3.10-0ubuntu1 (8c56a89) (tag: 0.3.10-0ubuntu1)
-2010-07-13 10:47:42 -0500 Ted Gould (d71fe460)
+2010-07-15 Ted Gould
- * Adding a configurable timeout by environment variable.
+ * releasing version 0.3.10-0ubuntu1~ppa1 (c6b0ab3)
+ * New upstream release. * Fixing unwatching crash (LP: #603489)
+ * Adding configurable timeout for slow test system.
+ Merged in fix for (LP: #603489) (ae07d57)
+ * Import upstream version 0.3.10 (081637a)
+ * Sync with ubuntu desktop (6c7db76)
+ * 0.3.10 (362a2d7) (tag: 0.3.10)
-2010-07-12 11:17:21 -0500 Ted Gould (bf315eb7)
+2010-07-14 Evgeni Golov
- * Adding a new variable to adjust the time of the kill switch.
+ * Standards-Version: 3.9.0 (8b7fa3f) (tag: 0.3.9-1)
+ * Add "Don't drop debian/source/*" to the changelog (55e4c2c)
+ * Merging new upstream release and some changes from Ubuntu.
+ (b4d1461)
+ * Merging lp:~ubuntu-desktop/libindicator/ubuntu (d14f25a)
-2010-07-09 16:47:26 -0400 Ken VanDine (b52f0703)
+2010-07-13 Ted Gould
- * releasing version 0.3.9-0ubuntu2 (tag: 0.3.9-0ubuntu2)
+ * Adding a configurable timeout by environment variable. (d71fe46)
-2010-07-09 13:43:53 -0500 Ted Gould (e102f849)
+2010-07-12 Ted Gould
- * releasing version 0.3.9-0ubuntu2~ppa1
+ * Adding a new variable to adjust the time of the kill switch.
+ (bf315eb)
-2010-07-09 13:42:33 -0500 Ted Gould (d8bd40de)
+2010-07-09 Ken VanDine
- * * Upstream merge * Fixing unwatching crash (LP: #603489)
+ * releasing version 0.3.9-0ubuntu2 (b52f070) (tag: 0.3.9-0ubuntu2)
-2010-07-09 13:35:55 -0500 Ted Gould (17a29ea2)
+2010-07-09 Ted Gould
- * Fixing unwatching lookups.
-
-2010-07-09 13:13:21 -0500 Ted Gould (c7eee081)
-
- * We want the key not the value.
-
-2010-07-09 13:08:22 -0500 Ted Gould (ed191e6c)
-
- * Taking it to the next level with impoliteness.
-
-2010-07-09 13:07:57 -0500 Ted Gould (57503088)
-
- * Lots of impoliteness to make sure.
-
-2010-07-09 13:06:58 -0500 Ted Gould (b0360dd4)
-
- * Adding an impolite manager.
-
-2010-07-09 11:02:48 -0500 Ted Gould (baa324ff)
-
- * Bug
-
-2010-07-09 11:00:38 -0500 Ted Gould (b0a56e9e)
-
- * Adding in the unwatching test
-
-2010-07-09 10:58:17 -0500 Ted Gould (b43f81d0)
-
- * A couple debug messages to make the test easier to read the output
- from.
-
-2010-07-09 10:55:59 -0500 Ted Gould (dceee48d)
-
- * Up to 5 watchers.
-
-2010-07-09 10:53:48 -0500 Ted Gould (990a881d)
-
- * Longer timeout
-
-2010-07-09 10:52:28 -0500 Ted Gould (7c7b497e)
-
- * Okay, we need our own service too. Bah.
-
-2010-07-09 10:50:25 -0500 Ted Gould (56dd41e5)
-
- * Delaying the watchers to ensure that we don't dbus activate, and
+ * releasing version 0.3.9-0ubuntu2~ppa1 (e102f84)
+ * Upstream merge * Fixing unwatching crash (LP: #603489)
+ (d8bd40d)
+ * Fixing unwatching lookups. (17a29ea)
+ * We want the key not the value. (c7eee08)
+ * Taking it to the next level with impoliteness. (ed191e6)
+ * Lots of impoliteness to make sure. (5750308)
+ * Adding an impolite manager. (b0360dd)
+ * Bug (baa324f)
+ * Adding in the unwatching test (b0a56e9)
+ * A couple debug messages to make the test easier to read the output
+ from. (b43f81d)
+ * Up to 5 watchers. (dceee48)
+ * Longer timeout (990a881)
+ * Okay, we need our own service too. Bah. (7c7b497)
+ * Delaying the watchers to ensure that we don't dbus activate, and
removing the session.conf to even allow for that.
-
-2010-07-09 10:45:18 -0500 Ted Gould (5731c1e0)
-
- * Starting the service ourselves.
-
-2010-07-09 10:42:46 -0500 Ted Gould (054704d8)
-
- * Ignoring the new builds.
-
-2010-07-09 10:42:20 -0500 Ted Gould (6786532d)
-
- * Making a new manager
-
-2010-07-09 10:39:44 -0500 Ted Gould (01130c5b)
-
- * Start a multi watch test
-
-2010-07-09 09:58:56 -0500 Ted Gould (b973537a)
-
- * Uhg, wrong branch
-
-2010-07-09 09:53:20 -0500 Ted Gould (74a24d76)
-
- * Stop asking for the name, instead let's find it on our own.
-
-2010-07-09 09:30:25 -0500 Ted Gould (dac4891e)
-
- * A could of protections for the core.
-
-2010-07-09 09:25:18 -0500 Ted Gould (fe4e5b7c)
-
- * Sync to Ubuntu Desktop
-
-2010-07-09 09:22:20 -0500 Ted Gould (613ad629)
-
- * Freeing the service.
-
-2010-07-08 23:14:14 +0200 Sebastien Bacher (dc60b532)
-
- * releasing version 0.3.9-0ubuntu1 (tag: 0.3.9-0ubuntu1)
-
-2010-07-08 15:19:11 -0500 Ted Gould (3fc3179d)
-
- * releasing version 0.3.9-0ubuntu1~ppa1
-
-2010-07-08 15:18:26 -0500 Ted Gould (7957aca1)
-
- * New upstream release.
-
-2010-07-08 15:15:46 -0500 Ted Gould (3b191f92)
-
- * Import upstream version 0.3.9
-
-2010-07-08 15:12:12 -0500 Ted Gould (bc5e925e)
-
- * 0.3.9 (tag: 0.3.9)
-
-2010-07-08 14:06:12 -0500 Ted Gould (3899f93c)
-
- * Fixing signals so that our tests pass
-
-2010-07-08 12:36:50 -0500 Ted Gould (74124905)
-
- * Documenting the choices of not having a nice callback func.
-
-2010-07-08 12:34:24 -0500 Ted Gould (647f8ea9)
-
- * Use the same function so we know everything is all right.
-
-2010-07-08 12:31:56 -0500 Ted Gould (974328f0)
-
- * Unreffing the objects in dispose and ensuring we disconnect the
- signals first.
-
-2010-07-08 12:23:14 -0500 Ted Gould (46c8b3fe)
-
- * Disconnecting signal before removing from hashtable so we don't try
- twice.
-
-2010-07-08 09:25:29 -0500 Ted Gould (2b3087f5)
-
- * releasing version 0.3.8-2ubuntu1~ppa3
-
-2010-07-08 09:22:33 -0500 Ted Gould (fc10497c)
-
- * Make it so that a watcher dying is the same as unregistering.
-
-2010-07-08 09:21:21 -0500 Ted Gould (70f81702)
-
- * * Merge Upstream * Removing checking for style properties that
- aren't used.
-
-2010-07-08 09:20:02 -0500 Ted Gould (5c28cb24)
-
- * Sync to trunk
-
-2010-07-08 09:19:38 -0500 Ted Gould (56919668)
-
- * Shutdown services when watchers leave the bus.
-
-2010-07-06 11:07:22 -0500 Ted Gould (359c6708)
-
- * releasing version 0.3.8-2ubuntu1~ppa2
-
-2010-07-06 11:06:36 -0500 Ted Gould (83141973)
-
- * * Upstream Merge * Make it so that a watcher dying is the same as
- unregistering.
-
-2010-07-06 11:04:41 -0500 Ted Gould (dd7106ee)
-
- * Creating a callback for the destory signal, but then moving the
+ (56dd41e)
+ * Starting the service ourselves. (5731c1e)
+ * Ignoring the new builds. (054704d)
+ * Making a new manager (6786532)
+ * Start a multi watch test (01130c5)
+ * Uhg, wrong branch (b973537)
+ * Stop asking for the name, instead let's find it on our own.
+ (74a24d7)
+ * A could of protections for the core. (dac4891)
+ * Sync to Ubuntu Desktop (fe4e5b7)
+ * Freeing the service. (613ad62)
+
+2010-07-08 Sebastien Bacher
+
+ * releasing version 0.3.9-0ubuntu1 (dc60b53) (tag: 0.3.9-0ubuntu1)
+
+2010-07-08 Ted Gould
+
+ * releasing version 0.3.9-0ubuntu1~ppa1 (3fc3179)
+ * New upstream release. (7957aca)
+ * Import upstream version 0.3.9 (3b191f9)
+ * 0.3.9 (bc5e925) (tag: 0.3.9)
+ * Fixing signals so that our tests pass (3899f93)
+ * Documenting the choices of not having a nice callback func.
+ (7412490)
+ * Use the same function so we know everything is all right. (647f8ea)
+ * Unreffing the objects in dispose and ensuring we disconnect the
+ signals first. (974328f)
+ * Disconnecting signal before removing from hashtable so we don't try
+ twice. (46c8b3f)
+ * releasing version 0.3.8-2ubuntu1~ppa3 (2b3087f)
+ * Make it so that a watcher dying is the same as unregistering.
+ (fc10497)
+ * Merge Upstream * Removing checking for style properties that
+ aren't used. (70f8170)
+ * Sync to trunk (5c28cb2)
+ * Shutdown services when watchers leave the bus. (5691966)
+
+2010-07-06 Ted Gould
+
+ * releasing version 0.3.8-2ubuntu1~ppa2 (359c670)
+ * Upstream Merge * Make it so that a watcher dying is the same as
+ unregistering. (8314197)
+ * Creating a callback for the destory signal, but then moving the
unwatch into a core function so that we can call it.
+ (dd7106e)
+ * Actually creating a proxy to see if we can detect the watcher going
+ away. (d23ca44)
+ * Making ths bus tracked in the private structure (632c3f9)
+ * Switching the watchers data structure over to a hashtable.
+ (8a12556)
+ * Removing unused style check (96faa1e)
+ * Removing the style lookup that wasn't used. (149de10)
-2010-07-06 10:47:58 -0500 Ted Gould (d23ca44c)
-
- * Actually creating a proxy to see if we can detect the watcher going
- away.
-
-2010-07-06 10:39:12 -0500 Ted Gould (632c3f99)
-
- * Making ths bus tracked in the private structure
-
-2010-07-06 10:36:27 -0500 Ted Gould (8a125567)
-
- * Switching the watchers data structure over to a hashtable.
-
-2010-07-06 10:29:45 -0500 Ted Gould (96faa1e9)
-
- * Removing unused style check
+2010-06-19 Michael Terry
-2010-07-06 09:47:12 -0500 Ted Gould (149de106)
+ * don't use 3.3 version, rather use indicator3 (923a1d5)
+ * first pass at providing a gtk3 version (322884d)
- * Removing the style lookup that wasn't used.
+2010-06-16 Ted Gould
-2010-06-19 09:32:03 -0400 Michael Terry (923a1d5b)
-
- * don't use 3.3 version, rather use indicator3
-
-2010-06-19 08:47:50 -0400 Michael Terry (322884dd)
-
- * first pass at providing a gtk3 version
-
-2010-06-16 13:29:19 -0500 Ted Gould (589e6590)
-
- * releasing version 0.3.8-2ubuntu1~ppa1
-
-2010-06-16 13:28:30 -0500 Ted Gould (c055d0f1)
-
- * * Merge debian changes * Drop debian/source/* *
+ * releasing version 0.3.8-2ubuntu1~ppa1 (589e659)
+ * Merge debian changes * Drop debian/source/*
debian/control: Switch VCS for this branch to be the
- indicator applet developers branch. * Revert cdbs drop,
- as requested by the Ubuntu maintainers. * Update
- Maintainer and Vcs-* fields for pkg-ayatana. * Merge
- Ubuntu package into Debian. Closes: #549999 *
- debian/copyright: + Update to machine readable format. *
+ indicator applet developers branch.; Revert cdbs drop,
+ as requested by the Ubuntu maintainers.; Update
+ Maintainer and Vcs-* fields for pkg-ayatana.; Merge
+ Ubuntu package into Debian. Closes: #54999.
+ debian/copyright: + Update to machine readable format.
debian/control: + Drop cdbs Build-Dep, bump debhelper to
>=7. + Standards-Version 3.8.4. + Update Vcs-* fields.
+ Drop GNOME from Description, the package is not GNOME
specific. + Slightly update Description, thanks lintian.
* debian/rules: + Use minimal debhelper 7 rules without
cdbs. + Disable tests for now, they fail (launchpad
- 587811) * debian/source/format: + Add file, make package
- 3.0 (quilt).
-
-2010-06-16 13:20:03 -0500 Ted Gould (b4feaef7)
-
- * Sync to Ubuntu Desktop
-
-2010-06-16 09:55:10 +0200 Evgeni Golov (34b4a4d7)
-
- * Update Maintainer and Vcs-* fields for pkg-ayatana.
-
-2010-06-16 09:52:28 +0200 Evgeni Golov (e3df2830)
-
- * Revert cdbs drop, as requested by the Ubuntu maintainers.
-
-2010-06-16 09:50:48 +0200 Evgeni Golov (30f1ae42)
-
- * Apply 0.3.8-1 changes (tag: 0.3.8-1)
-
-2010-05-06 11:39:55 +0200 Ted Gould (c77d719c)
-
- * Dummy commit
-
-2010-04-09 20:53:31 +0200 Sebastien Bacher (ec365779)
-
- * releasing version 0.3.8-0ubuntu1 (tag: 0.3.8-0ubuntu1)
-
-2010-04-09 12:56:24 -0500 Ted Gould (478b7f7a)
-
- * releasing version 0.3.8-0ubuntu1~ppa1
-
-2010-04-09 12:54:42 -0500 Ted Gould (a662e1aa)
-
- * * New upstream release. * Adding template files to tarball
-
-2010-04-09 12:54:16 -0500 Ted Gould (105fa990)
-
- * Import upstream version 0.3.8
-
-2010-04-09 12:53:42 -0500 Ted Gould (3e9180ae)
-
- * releasing version 0.3.7-0ubuntu1~ppa1
-
-2010-04-09 12:53:27 -0500 Ted Gould (9530995a)
-
- * 0.3.8 (tag: 0.3.8)
-
-2010-04-09 12:51:25 -0500 Ted Gould (882ef719)
-
- * Disting the templates.
-
-2010-04-09 11:58:23 -0500 Ted Gould (6c48a234)
-
- * New upstream release.
-
-2010-04-09 11:57:53 -0500 Ted Gould (97035da0)
-
- * Import upstream version 0.3.7
+ 587811); debian/source/format: + Add file, make package
+ 3.0 (quilt). (c055d0f)
+ * Sync to Ubuntu Desktop (b4feaef)
-2010-04-09 11:57:05 -0500 Ted Gould (e9392e98)
+2010-06-16 Evgeni Golov
- * No merging
+ * Update Maintainer and Vcs-* fields for pkg-ayatana. (34b4a4d)
+ * Revert cdbs drop, as requested by the Ubuntu maintainers. (e3df283)
+ * Apply 0.3.8-1 changes (30f1ae4) (tag: 0.3.8-1)
-2010-04-09 11:53:43 -0500 Ted Gould (ee0f45f6)
+2010-05-06 Ted Gould
- * 0.3.7 (tag: 0.3.7)
+ * Dummy commit (c77d719)
-2010-04-09 11:53:36 -0500 Ted Gould (588efad1)
+2010-04-09 Sebastien Bacher
- * Fixing the desktop test to make it more reliable.
+ * releasing version 0.3.8-0ubuntu1 (ec36577) (tag: 0.3.8-0ubuntu1)
-2010-04-06 16:21:22 -0500 Ted Gould (6262d6f4)
+2010-04-09 Ted Gould
- * releasing version 0.3.6-0ubuntu2~ppa1
+ * releasing version 0.3.8-0ubuntu1~ppa1 (478b7f7)
+ * New upstream release. * Adding template files to tarball
+ (a662e1a)
+ * Import upstream version 0.3.8 (105fa99)
+ * releasing version 0.3.7-0ubuntu1~ppa1 (3e9180a)
+ * 0.3.8 (9530995) (tag: 0.3.8)
+ * Disting the templates. (882ef71)
+ * New upstream release. (6c48a23)
+ * Import upstream version 0.3.7 (97035da)
+ * No merging (e9392e9)
+ * 0.3.7 (ee0f45f) (tag: 0.3.7)
+ * Fixing the desktop test to make it more reliable. (588efad)
-2010-04-06 16:03:52 -0500 Ted Gould (a57b84e1)
+2010-04-06 Ted Gould
- * Merge from Ubuntu desktop
+ * releasing version 0.3.6-0ubuntu2~ppa1 (6262d6f)
+ * Merge from Ubuntu desktop (a57b84e)
+ * Upstream merge * Use the domain in desktop files for shortcuts
+ (LP: #549322) (2eb97c2)
+ * Translating the shortcuts of the actions based on the desktop file
+ translation domains. (8e19cd3)
+ * Typo (22de798)
-2010-04-06 16:00:49 -0500 Ted Gould (2eb97c23)
+2010-04-05 Ted Gould
- * * Upstream merge * Use the domain in desktop files for shortcuts
- (LP: #549322)
-
-2010-04-06 15:57:17 -0500 Ted Gould (8e19cd38)
-
- * Translating the shortcuts of the actions based on the desktop file
- translation domains.
-
-2010-04-06 15:55:45 -0500 Ted Gould (22de7982)
-
- * Typo
-
-2010-04-05 15:37:15 -0500 Ted Gould (e0f5fb7d)
-
- * releasing version 0.3.6-0ubuntu1~ppa2~shortcutdomain2
-
-2010-04-05 15:21:26 -0500 Ted Gould (4213bc2a)
-
- * * Upstream merge * Chnages requested by pitt
-
-2010-04-05 15:20:46 -0500 Ted Gould (1200f51e)
-
- * Switching to only use the g_dgettext version if the locale_string
+ * releasing version 0.3.6-0ubuntu1~ppa2~shortcutdomain2 (e0f5fb7)
+ * Upstream merge * Chnages requested by pitt (4213bc2)
+ * Switching to only use the g_dgettext version if the locale_string
function doesn't change the string from the normal lookup
- (and we have a domain to look in).
-
-2010-04-05 12:46:10 -0500 Ted Gould (e900b4c7)
-
- * Make it so that we check the GNOME-Gettext-Domain as well
+ (and we have a domain to look in). (1200f51)
+ * Make it so that we check the GNOME-Gettext-Domain as well (e900b4c)
-2010-04-02 10:52:01 -0500 Ted Gould (49c5444a)
+2010-04-02 Ted Gould
- * releasing version 0.3.6-0ubuntu1~ppa2~shortcutdomain1
-
-2010-04-02 10:50:59 -0500 Ted Gould (4d6575bf)
-
- * * Upstream merge * Use the domain in desktop files for shortcuts
-
-2010-04-02 10:49:33 -0500 Ted Gould (20e03af6)
-
- * If we don't have a domain just use the locale function, otherwise
+ * releasing version 0.3.6-0ubuntu1~ppa2~shortcutdomain1 (49c5444)
+ * Upstream merge * Use the domain in desktop files for shortcuts
+ (4d6575b)
+ * If we don't have a domain just use the locale function, otherwise
we need to use that domain to get the translation.
+ (20e03af)
+ * Adding a private variable for the translation domain and grabbing
+ it from the keyfile. (5d02c0c)
-2010-04-02 10:44:57 -0500 Ted Gould (5d02c0c8)
-
- * Adding a private variable for the translation domain and grabbing
- it from the keyfile.
-
-2010-03-18 23:34:24 +0100 Sebastien Bacher (0cf6e600)
-
- * releasing version 0.3.6-0ubuntu1 (tag: 0.3.6-0ubuntu1)
-
-2010-03-18 15:05:20 -0400 Ken VanDine (947d4cf2)
-
- * * Upstream release 0.3.6 * Adding in scroll signals for the
- indicators * debian/rules: Updating shlibs
-
-2010-03-18 11:10:23 -0500 Ted Gould (f07a2dff)
-
- * releasing version 0.3.6-0ubuntu1~ppa1
-
-2010-03-18 10:59:10 -0500 Ted Gould (218c6a8d)
-
- * debian/rules: Updating shlibs
-
-2010-03-18 10:53:40 -0500 Ted Gould (738df2fa)
-
- * * Upstream release 0.3.6 * Adding in scroll signals for the
- indicators
-
-2010-03-18 10:52:54 -0500 Ted Gould (60ab69b8)
-
- * Update to Ubuntu Desktop
-
-2010-03-18 10:49:26 -0500 Ted Gould (999f1483)
-
- * 0.3.6 (tag: 0.3.6)
-
-2010-03-17 09:28:22 -0500 Ted Gould (5abaca2b)
-
- * Adding the signal for scrolling in the indicator-object
-
-2010-03-17 01:21:58 -0500 Cody Russell (e0c1a3ca)
-
- * name
-
-2010-03-17 01:14:13 -0500 Cody Russell (b782a8a4)
-
- * Documentation fix.
-
-2010-03-16 15:31:15 -0500 Cody Russell (11c78ed1)
-
- * Use IndicatorScrollDirection instead of gboolean in
- IndicatorObjectClass->scroll function pointer.
-
-2010-03-16 11:40:14 -0500 Cody Russell (02d3dde8)
-
- * Define IndicatorScrollDirection enum for scroll signal parameter.
-
-2010-03-15 14:12:20 -0500 Cody Russell (4adb9ab7)
-
- * Add 'scroll' signal.
-
-2010-03-11 22:52:27 +0100 Sebastien Bacher (a68b0e81)
-
- * releasing version 0.3.5-0ubuntu1 (tag: 0.3.5-0ubuntu1)
-
-2010-03-11 16:34:22 -0500 Ken VanDine (c74b2455)
-
- * * Upstream release 0.3.5 * Adding in a image loader helper for
- indicators.
+2010-03-18 Sebastien Bacher
-2010-03-11 14:27:17 -0600 Ted Gould (a815f842)
+ * releasing version 0.3.6-0ubuntu1 (0cf6e60) (tag: 0.3.6-0ubuntu1)
- * releasing version 0.3.5-0ubuntu1~ppa2
+2010-03-18 Ken VanDine
-2010-03-11 14:26:58 -0600 Ted Gould (259bcc99)
+ * Upstream release 0.3.6 * Adding in scroll signals for the
+ indicators; debian/rules: Updating shlibs (947d4cf)
- * debian/rules: Updating shlibs number
+2010-03-18 Ted Gould
-2010-03-11 14:26:15 -0600 Ted Gould (0de990f4)
+ * releasing version 0.3.6-0ubuntu1~ppa1 (f07a2df)
+ * debian/rules: Updating shlibs (218c6a8)
+ * Upstream release 0.3.6 * Adding in scroll signals for the
+ indicators (738df2f)
+ * Update to Ubuntu Desktop (60ab69b)
+ * 0.3.6 (999f148) (tag: 0.3.6)
- * releasing version 0.3.5-0ubuntu1~ppa1
+2010-03-17 Ted Gould
-2010-03-11 14:22:51 -0600 Ted Gould (8caf60a3)
+ * Adding the signal for scrolling in the indicator-object (5abaca2)
- * Upstream release 0.3.5
+2010-03-17 Cody Russell
-2010-03-11 14:21:59 -0600 Ted Gould (5ca699ba)
+ * name (e0c1a3c)
+ * Documentation fix. (b782a8a)
- * Syncing with ubuntu desktop
+2010-03-16 Cody Russell
-2010-03-11 14:20:02 -0600 Ted Gould (bb8b7032)
+ * Use IndicatorScrollDirection instead of gboolean in
+ IndicatorObjectClass->scroll function pointer. (11c78ed)
+ * Define IndicatorScrollDirection enum for scroll signal parameter.
+ (02d3dde)
- * 0.3.5 (tag: 0.3.5)
+2010-03-15 Cody Russell
-2010-03-11 14:10:42 -0600 Ted Gould (8e82b02a)
+ * Add 'scroll' signal. (4adb9ab)
- * Creating a function to update the icon to a new name.
+2010-03-11 Sebastien Bacher
-2010-03-11 10:51:17 -0600 Ted Gould (a6ecf4a5)
+ * releasing version 0.3.5-0ubuntu1 (a68b0e8) (tag: 0.3.5-0ubuntu1)
- * Watching for style changes on the image.
+2010-03-11 Ken VanDine
-2010-03-11 10:35:14 -0600 Ted Gould (e31a7de2)
+ * Upstream release 0.3.5 * Adding in a image loader helper for
+ indicators. (c74b245)
- * Check to see if we've seen the image previously before adding
- signals in.
+2010-03-11 Ted Gould
-2010-03-11 10:22:17 -0600 Ted Gould (b4ca4f6f)
-
- * Splitting things out into an update function and a buid function.
-
-2010-03-10 22:12:35 -0600 Ted Gould (d4246925)
-
- * releasing version 0.3.4-0ubuntu1~ppa2
-
-2010-03-10 22:10:05 -0600 Ted Gould (fdba9943)
-
- * * Upstream merge * Adding in a image loader helper for
- indicators.
-
-2010-03-10 22:09:33 -0600 Ted Gould (fc9f4609)
-
- * Update to trunk
-
-2010-03-10 22:06:56 -0600 Ted Gould (fc87fda0)
-
- * Add a small helper for loading images.
-
-2010-03-10 16:58:15 -0600 Ted Gould (9bc7677c)
-
- * releasing version 0.3.4-0ubuntu1~ppa2~imagehelper1
-
-2010-03-10 16:55:44 -0600 Ted Gould (680631ec)
-
- * * Upstream merge * Adding in a image loader helper for
- indicators.
-
-2010-03-10 16:40:19 -0600 Ted Gould (5867fa76)
-
- * Adding in a copyright header.
-
-2010-03-10 16:30:19 -0600 Ted Gould (0660884b)
-
- * A little loader to test to see if we load an icon and what size it
- is.
-
-2010-03-10 16:14:46 -0600 Ted Gould (12ab8f44)
-
- * If we get an icon that is too big, we have to scale it.
-
-2010-03-10 15:30:37 -0600 Ted Gould (37f0f340)
-
- * Doing dynamic size calculation based on the font if we have a prop
- set telling us to do so.
-
-2010-03-10 14:26:20 -0600 Ted Gould (ba4a73a9)
-
- * Disconnect from theme update when the image goes away.
-
-2010-03-10 13:25:26 -0600 Ted Gould (64df2c66)
-
- * Setting up the callback for themes changing.
-
-2010-03-10 13:10:36 -0600 Ted Gould (805edb88)
-
- * Pulled out a bunch of the code into a refresh function for signals.
-
-2010-03-10 12:29:30 -0600 Ted Gould (48e8a34c)
-
- * Fleshing out the image loading function.
-
-2010-03-10 11:45:53 -0600 Ted Gould (636b9f97)
-
- * Adding in an image helper library.
-
-2010-02-25 22:23:29 +0100 Sebastien Bacher (e9aea6f9)
-
- * releasing version 0.3.4-0ubuntu1 (tag: 0.3.4-0ubuntu1)
-
-2010-02-25 11:27:26 -0600 Ted Gould (436e5f16)
-
- * releasing version 0.3.4-0ubuntu1~ppa1
-
-2010-02-25 11:25:01 -0600 Ted Gould (577ae5bb)
-
- * * Upstream Release 0.3.4 * Reducing gio-unix dependency to 2.22
-
-2010-02-25 11:21:02 -0600 Ted Gould (8e12685b)
-
- * 0.3.4 (tag: 0.3.4)
-
-2010-02-24 21:05:05 -0600 Ted Gould (802da09a)
-
- * releasing version 0.3.3-0ubuntu2 (tag: 0.3.3-0ubuntu2)
-
-2010-02-24 21:04:56 -0600 Ted Gould (d4404ea2)
-
- * debian/control: Reducing libglib dependency down to 2.22 for Karmic
- builds
-
-2010-02-19 16:24:25 -0600 Ted Gould (9200b55f)
-
- * No reason we need newer APIs than this.
-
-2010-02-18 10:59:08 -0600 Ted Gould (25b2503d)
-
- * Updating to ubuntu desktop
-
-2010-02-18 17:33:16 +0100 Sebastien Bacher (2de65741)
-
- * releasing version 0.3.3-0ubuntu1 (tag: 0.3.3-0ubuntu1)
-
-2010-02-18 10:11:24 -0600 Ted Gould (6528ac05)
-
- * releasing version 0.3.3-0ubuntu1~ppa1
-
-2010-02-18 10:08:32 -0600 Ted Gould (019fb774)
-
- * Upstream release 0.3.3
-
-2010-02-18 10:07:56 -0600 Ted Gould (bf7525ab)
-
- * releasing version 0.3.2-0ubuntu1~ppa2
-
-2010-02-18 10:06:47 -0600 Ted Gould (fa27dc53)
-
- * * Upstream merge * Adding new object for parsing desktop files
- for Shortcuts
-
-2010-02-18 10:05:29 -0600 Ted Gould (0fc87470)
-
- * Sync to trunk
-
-2010-02-18 10:03:57 -0600 Ted Gould (49cdb8cc)
-
- * 0.3.3 (tag: 0.3.3)
-
-2010-02-18 10:01:57 -0600 Ted Gould (f325f3eb)
-
- * Adding in an object to get shortcuts out of desktop files.
-
-2010-02-16 22:54:20 -0600 Ted Gould (8eee8911)
-
- * Updating to Ubuntu Desktop branch
-
-2010-02-16 22:52:10 -0600 Ted Gould (fdc2872a)
-
- * releasing version 0.3.2-0ubuntu1~ppa2~shortcuts1
-
-2010-02-16 22:51:13 -0600 Ted Gould (a9e097f3)
-
- * * Upstream merge * Adding new object for parsing desktop files
- for Shortcuts
-
-2010-02-16 22:47:04 -0600 Ted Gould (6665fd01)
-
- * Ignoring the touch file for the testing
-
-2010-02-16 22:45:54 -0600 Ted Gould (1b58c66b)
-
- * Being more specific about where we should find the touch file for
- distcheck
-
-2010-02-16 22:44:22 -0600 Ted Gould (3e69079e)
-
- * Disabling debug messages
-
-2010-02-16 22:43:55 -0600 Ted Gould (5a75fb5b)
-
- * Debug messages.
-
-2010-02-16 22:43:45 -0600 Ted Gould (a3e1058e)
-
- * We should look at the other nicks even if this one doesn't work.
-
-2010-02-16 22:43:11 -0600 Ted Gould (ef9c19ed)
-
- * Shipping our test desktop file
-
-2010-02-16 22:39:45 -0600 Ted Gould (7e69f61e)
-
- * Clean up touch file
-
-2010-02-16 22:35:03 -0600 Ted Gould (0aa8119e)
-
- * Checking to ensure the right nick is in the list
-
-2010-02-16 22:21:29 -0600 Ted Gould (b10dd199)
-
- * Using the nick directly to make this work better.
-
-2010-02-16 22:07:38 -0600 Ted Gould (b0e8d1c6)
-
- * Wrong identity
-
-2010-02-16 22:05:08 -0600 Ted Gould (452c195c)
-
- * Forgot to set the type of the desktop file, need to be an
- Application.
-
-2010-02-16 21:40:50 -0600 Ted Gould (af36cb86)
-
- * Add a test to launch an nick
-
-2010-02-16 21:34:30 -0600 Ted Gould (e0bc1911)
-
- * Adding a check to ensure we're getting the right names from the
- nicks.
-
-2010-02-16 21:31:33 -0600 Ted Gould (c636c3e6)
-
- * Making the function not recurse forever.
-
-2010-02-16 21:23:59 -0600 Ted Gould (b6b2a65e)
-
- * Adding in local filter test functions.
-
-2010-02-16 21:16:02 -0600 Ted Gould (edaa80e3)
-
- * Check to ensure a global no show works.
-
-2010-02-16 15:28:29 -0600 Ted Gould (0a90515d)
-
- * Fix group detection to put a space in the name of the group
-
-2010-02-16 15:27:18 -0600 Ted Gould (755e697c)
-
- * Better name
-
-2010-02-16 15:26:30 -0600 Ted Gould (17cdd8ca)
-
- * Ignoring the new stuff
-
-2010-02-16 15:26:03 -0600 Ted Gould (0a4d6689)
-
- * A backslash off
-
-2010-02-16 15:24:51 -0600 Ted Gould (53c9f60b)
-
- * Adding in a basic test desktop file test
-
-2010-02-16 15:13:29 -0600 Ted Gould (1a85eb2c)
-
- * Create a testing desktop file
-
-2010-02-16 11:02:53 -0600 Ted Gould (8fb1d365)
-
- * Refactoring the list checks into their own functions so we can
- check the desktop group as well.
-
-2010-02-16 10:53:08 -0600 Ted Gould (a39d4268)
-
- * Adding in checking to see if we should be showing this entry.
-
-2010-02-16 10:41:58 -0600 Ted Gould (4ee953a0)
-
- * Basic parsing of the files.
-
-2010-02-16 09:39:59 -0600 Ted Gould (21c3a883)
-
- * Checking for our shortcuts key, we don't really want a desktop file
- without it.
-
-2010-02-16 08:46:22 -0600 Ted Gould (55145548)
-
- * Start loading the keyfile.
-
-2010-02-16 08:25:10 -0600 Ted Gould (62876d9e)
-
- * Removing the reading of the desktop file.
-
-2010-02-16 08:22:57 -0600 Ted Gould (37a107b5)
-
- * Identity management with the properties.
-
-2010-02-16 08:20:01 -0600 Ted Gould (8b8c3f42)
-
- * Some error handling.
-
-2010-02-15 17:14:12 -0600 Ted Gould (ae0b7bc7)
-
- * A basic property system.
-
-2010-02-15 16:46:58 -0600 Ted Gould (5d7fbff4)
-
- * Fleshing out the exec function which require GIO Unix
-
-2010-02-15 15:44:00 -0600 Ted Gould (f2196d12)
-
- * Fleshing out getting the Name of a shortcut
-
-2010-02-15 15:20:09 -0600 Ted Gould (5d2ace5a)
-
- * Fleshing out _new and _get_nicks Both are lovely functions.
-
-2010-02-15 15:12:29 -0600 Ted Gould (a32a078b)
-
- * Getting some new private variables, and making sure they have a
- full lifecycle.
-
-2010-02-15 14:57:23 -0600 Ted Gould (3a95d842)
-
- * Instanciating the prototypes and making some comments.
-
-2010-02-15 14:22:01 -0600 Ted Gould (d970c855)
-
- * Letz get ur prototypes
-
-2010-02-15 14:13:51 -0600 Ted Gould (95f07c4e)
-
- * Copyright headers
-
-2010-02-15 14:00:56 -0600 Ted Gould (a2717539)
-
- * Adding in the new object we're building for evaluating desktop
- shortcuts.
-
-2010-02-04 19:00:38 -0800 Sebastien Bacher (050ef48d)
-
- * releasing version 0.3.2-0ubuntu1 (tag: 0.3.2-0ubuntu1)
-
-2010-02-04 17:40:09 -0800 Ted Gould (72ef75fa)
-
- * releasing version 0.3.2-0ubuntu1~ppa1
-
-2010-02-04 17:37:47 -0800 Ted Gould (65bc7421)
-
- * * Upstream release 0.3.2 * Various fixes to timeout handling in
+ * releasing version 0.3.5-0ubuntu1~ppa2 (a815f84)
+ * debian/rules: Updating shlibs number (259bcc9)
+ * releasing version 0.3.5-0ubuntu1~ppa1 (0de990f)
+ * Upstream release 0.3.5 (8caf60a)
+ * Syncing with ubuntu desktop (5ca699b)
+ * 0.3.5 (bb8b703) (tag: 0.3.5)
+ * Creating a function to update the icon to a new name. (8e82b02)
+ * Watching for style changes on the image. (a6ecf4a)
+ * Check to see if we've seen the image previously before adding
+ signals in. (e31a7de)
+ * Splitting things out into an update function and a buid function.
+ (b4ca4f6)
+
+2010-03-10 Ted Gould
+
+ * releasing version 0.3.4-0ubuntu1~ppa2 (d424692)
+ * Upstream merge * Adding in a image loader helper for
+ indicators. (fdba994)
+ * Update to trunk (fc9f460)
+ * Add a small helper for loading images. (fc87fda)
+ * releasing version 0.3.4-0ubuntu1~ppa2~imagehelper1 (9bc7677)
+ * Upstream merge * Adding in a image loader helper for
+ indicators. (680631e)
+ * Adding in a copyright header. (5867fa7)
+ * A little loader to test to see if we load an icon and what size it
+ is. (0660884)
+ * If we get an icon that is too big, we have to scale it. (12ab8f4)
+ * Doing dynamic size calculation based on the font if we have a prop
+ set telling us to do so. (37f0f34)
+ * Disconnect from theme update when the image goes away. (ba4a73a)
+ * Setting up the callback for themes changing. (64df2c6)
+ * Pulled out a bunch of the code into a refresh function for signals.
+ (805edb8)
+ * Fleshing out the image loading function. (48e8a34)
+ * Adding in an image helper library. (636b9f9)
+
+2010-02-25 Sebastien Bacher
+
+ * releasing version 0.3.4-0ubuntu1 (e9aea6f) (tag: 0.3.4-0ubuntu1)
+
+2010-02-25 Ted Gould
+
+ * releasing version 0.3.4-0ubuntu1~ppa1 (436e5f1)
+ * Upstream Release 0.3.4 * Reducing gio-unix dependency to 2.22
+ (577ae5b)
+ * 0.3.4 (8e12685) (tag: 0.3.4)
+
+2010-02-24 Ted Gould
+
+ * releasing version 0.3.3-0ubuntu2 (802da09) (tag: 0.3.3-0ubuntu2)
+ * debian/control: Reducing libglib dependency down to 2.22 for Karmic
+ builds (d4404ea)
+
+2010-02-19 Ted Gould
+
+ * No reason we need newer APIs than this. (9200b55)
+
+2010-02-18 Ted Gould
+
+ * Updating to ubuntu desktop (25b2503)
+
+2010-02-18 Sebastien Bacher
+
+ * releasing version 0.3.3-0ubuntu1 (2de6574) (tag: 0.3.3-0ubuntu1)
+
+2010-02-18 Ted Gould
+
+ * releasing version 0.3.3-0ubuntu1~ppa1 (6528ac0)
+ * Upstream release 0.3.3 (019fb77)
+ * releasing version 0.3.2-0ubuntu1~ppa2 (bf7525a)
+ * Upstream merge * Adding new object for parsing desktop files
+ for Shortcuts (fa27dc5)
+ * Sync to trunk (0fc8747)
+ * 0.3.3 (49cdb8c) (tag: 0.3.3)
+ * Adding in an object to get shortcuts out of desktop files.
+ (f325f3e)
+
+2010-02-16 Ted Gould
+
+ * Updating to Ubuntu Desktop branch (8eee891)
+ * releasing version 0.3.2-0ubuntu1~ppa2~shortcuts1 (fdc2872)
+ * Upstream merge * Adding new object for parsing desktop files
+ for Shortcuts (a9e097f)
+ * Ignoring the touch file for the testing (6665fd0)
+ * Being more specific about where we should find the touch file for
+ distcheck (1b58c66)
+ * Disabling debug messages (3e69079)
+ * Debug messages. (5a75fb5)
+ * We should look at the other nicks even if this one doesn't work.
+ (a3e1058)
+ * Shipping our test desktop file (ef9c19e)
+ * Clean up touch file (7e69f61)
+ * Checking to ensure the right nick is in the list (0aa8119)
+ * Using the nick directly to make this work better. (b10dd19)
+ * Wrong identity (b0e8d1c)
+ * Forgot to set the type of the desktop file, need to be an
+ Application. (452c195)
+ * Add a test to launch an nick (af36cb8)
+ * Adding a check to ensure we're getting the right names from the
+ nicks. (e0bc191)
+ * Making the function not recurse forever. (c636c3e)
+ * Adding in local filter test functions. (b6b2a65)
+ * Check to ensure a global no show works. (edaa80e)
+ * Fix group detection to put a space in the name of the group
+ (0a90515)
+ * Better name (755e697)
+ * Ignoring the new stuff (17cdd8c)
+ * A backslash off (0a4d668)
+ * Adding in a basic test desktop file test (53c9f60)
+ * Create a testing desktop file (1a85eb2)
+ * Refactoring the list checks into their own functions so we can
+ check the desktop group as well. (8fb1d36)
+ * Adding in checking to see if we should be showing this entry.
+ (a39d426)
+ * Basic parsing of the files. (4ee953a)
+ * Checking for our shortcuts key, we don't really want a desktop file
+ without it. (21c3a88)
+ * Start loading the keyfile. (5514554)
+ * Removing the reading of the desktop file. (62876d9)
+ * Identity management with the properties. (37a107b)
+ * Some error handling. (8b8c3f4)
+
+2010-02-15 Ted Gould
+
+ * A basic property system. (ae0b7bc)
+ * Fleshing out the exec function which require GIO Unix (5d7fbff)
+ * Fleshing out getting the Name of a shortcut (f2196d1)
+ * Fleshing out _new and _get_nicks Both are lovely functions.
+ (5d2ace5)
+ * Getting some new private variables, and making sure they have a
+ full lifecycle. (a32a078)
+ * Instanciating the prototypes and making some comments. (3a95d84)
+ * Letz get ur prototypes (d970c85)
+ * Copyright headers (95f07c4)
+ * Adding in the new object we're building for evaluating desktop
+ shortcuts. (a271753)
+
+2010-02-04 Sebastien Bacher
+
+ * releasing version 0.3.2-0ubuntu1 (050ef48) (tag: 0.3.2-0ubuntu1)
+
+2010-02-04 Ted Gould
+
+ * releasing version 0.3.2-0ubuntu1~ppa1 (72ef75f)
+ * Upstream release 0.3.2 * Various fixes to timeout handling in
services and the * Fix test suite when run headless
-
-2010-02-04 17:34:50 -0800 Ted Gould (0d5ea566)
-
- * 0.3.2 (tag: 0.3.2)
-
-2010-02-02 13:16:42 -0800 Ted Gould (6afee918)
-
- * Fixes to the test suite.
-
-2010-02-02 12:20:44 -0800 Ted Gould (527674dd)
-
- * Adjusting to new timeout value
-
-2010-02-02 12:10:23 -0800 Ted Gould (9719ffe2)
-
- * Switching to 'bash'
-
-2010-02-02 12:09:00 -0800 Ted Gould (0526f263)
-
- * Adding an printout for saying which display we created.
-
-2010-02-02 12:01:22 -0800 Ted Gould (953e6565)
-
- * Adding in run-xvfb.sh
-
-2010-02-01 23:59:26 -0800 Ted Gould (e0dbaa39)
-
- * releasing version 0.3.1-0ubuntu1~ppa2
-
-2010-02-01 23:58:22 -0800 Ted Gould (106a07d2)
-
- * * Upstream merge * Various fixes to timeout handling in servcies
- and the service manager.
-
-2010-02-01 23:57:35 -0800 Ted Gould (71e47128)
-
- * Sync to trunk
-
-2010-02-01 23:56:58 -0800 Ted Gould (103f8b0b)
-
- * Better handling of some timeout conditions and more logging.
-
-2010-01-28 21:43:02 -0800 Ted Gould (7e7507e9)
-
- * releasing version 0.3.1-0ubuntu1~ppa2~better1
-
-2010-01-28 21:41:58 -0800 Ted Gould (32c331ce)
-
- * * Upstream merge * Various fixes to timeout handling in servcies
- and the service manager.
-
-2010-01-28 21:39:29 -0800 Ted Gould (7c581851)
-
- * Adding a debug message for restarting the service.
-
-2010-01-28 21:31:45 -0800 Ted Gould (1abf840d)
-
- * Error handling when building our proxies.
-
-2010-01-28 21:23:18 -0800 Ted Gould (52e1a43b)
-
- * Changing timeout to be approximatedly 1 second.
-
-2010-01-28 21:07:54 -0800 Ted Gould (21eca67f)
-
- * checking the error field for name callback and printing an error
- when it fails.
-
-2010-01-28 21:03:42 -0800 Ted Gould (138321d5)
-
- * In the timeout function mention that we're shutting down, and have
- an environment variable to stop that.
-
-2010-01-21 15:53:46 -0500 Ken VanDine (717a085c)
-
- * releasing version 0.3.1-0ubuntu1 (tag: 0.3.1-0ubuntu1)
-
-2010-01-21 13:15:10 -0600 Ted Gould (8f6a206a)
-
- * releasing version 0.3.1-0ubuntu1~ppa1
-
-2010-01-21 13:04:15 -0600 Ted Gould (26454911)
-
- * Upstream release 0.3.1
-
-2010-01-21 13:02:56 -0600 Ted Gould (923106ed)
-
- * Sync to ubuntu-desktop
-
-2010-01-21 13:01:01 -0600 Ted Gould (f5232a31)
-
- * 0.3.1 (tag: 0.3.1)
-
-2010-01-21 12:50:41 -0600 Ted Gould (16e0cd5d)
-
- * When a watch fails we're moving to having that try and restart the
- startup/connection process again.
-
-2010-01-21 10:30:52 -0600 Ted Gould (0219e0e7)
-
- * Adding in tracking of the restart idle function and making sure we
- don't do it twice.
-
-2010-01-21 10:25:27 -0600 Ted Gould (4a7af569)
-
- * In case we're restarting because of the 'Watch' returning failure
- we'd have a valid 'service_proxy' object to kill
-
-2010-01-21 09:49:02 -0600 Ted Gould (c72ff4f0)
-
- * Setting up the watch_cb function so that in errors it'll try to
+ (65bc742)
+ * 0.3.2 (0d5ea56) (tag: 0.3.2)
+
+2010-02-02 Ted Gould
+
+ * Fixes to the test suite. (6afee91)
+ * Adjusting to new timeout value (527674d)
+ * Switching to 'bash' (9719ffe)
+ * Adding an printout for saying which display we created. (0526f26)
+ * Adding in run-xvfb.sh (953e656)
+
+2010-02-01 Ted Gould
+
+ * releasing version 0.3.1-0ubuntu1~ppa2 (e0dbaa3)
+ * Upstream merge * Various fixes to timeout handling in servcies
+ and the service manager. (106a07d)
+ * Sync to trunk (71e4712)
+ * Better handling of some timeout conditions and more logging.
+ (103f8b0)
+
+2010-01-28 Ted Gould
+
+ * releasing version 0.3.1-0ubuntu1~ppa2~better1 (7e7507e)
+ * Upstream merge * Various fixes to timeout handling in servcies
+ and the service manager. (32c331c)
+ * Adding a debug message for restarting the service. (7c58185)
+ * Error handling when building our proxies. (1abf840)
+ * Changing timeout to be approximatedly 1 second. (52e1a43)
+ * checking the error field for name callback and printing an error
+ when it fails. (21eca67)
+ * In the timeout function mention that we're shutting down, and have
+ an environment variable to stop that. (138321d)
+
+2010-01-21 Ken VanDine
+
+ * releasing version 0.3.1-0ubuntu1 (717a085) (tag: 0.3.1-0ubuntu1)
+
+2010-01-21 Ted Gould
+
+ * releasing version 0.3.1-0ubuntu1~ppa1 (8f6a206)
+ * Upstream release 0.3.1 (2645491)
+ * Sync to ubuntu-desktop (923106e)
+ * 0.3.1 (f5232a3) (tag: 0.3.1)
+ * When a watch fails we're moving to having that try and restart the
+ startup/connection process again. (16e0cd5)
+ * Adding in tracking of the restart idle function and making sure we
+ don't do it twice. (0219e0e)
+ * In case we're restarting because of the 'Watch' returning failure
+ we'd have a valid 'service_proxy' object to kill (4a7af56)
+ * Setting up the watch_cb function so that in errors it'll try to
restart. As most errors will be fixed by trying again.
+ (c72ff4f)
-2010-01-19 09:00:53 -0600 Ted Gould (38d6422c)
-
- * releasing version 0.3.0-0ubuntu2~ppa2
-
-2010-01-19 08:59:05 -0600 Ted Gould (45e16a50)
-
- * * Upstream Merge * Adding in entry ordering.
-
-2010-01-19 08:58:24 -0600 Ted Gould (f48680ff)
-
- * Sync to trunk
-
-2010-01-19 08:46:48 -0600 Ted Gould (eaf87fac)
-
- * Support for entries having a location and moving that location.
-
-2010-01-18 14:07:03 -0600 Ted Gould (292d5b0d)
+2010-01-19 Ted Gould
- * releasing version 0.3.0-0ubuntu2~ppa2~ordering1
+ * releasing version 0.3.0-0ubuntu2~ppa2 (38d6422)
+ * Upstream Merge * Adding in entry ordering. (45e16a5)
+ * Sync to trunk (f48680f)
+ * Support for entries having a location and moving that location.
+ (eaf87fa)
-2010-01-18 14:05:59 -0600 Ted Gould (f419f425)
+2010-01-18 Ted Gould
- * * Upstream Merge * Adding in entry ordering.
+ * releasing version 0.3.0-0ubuntu2~ppa2~ordering1 (292d5b0)
+ * Upstream Merge * Adding in entry ordering. (f419f42)
+ * Update from trunk. (a1032ca)
+ * releasing version 0.3.0-0ubuntu2~ppa1 (2265c84)
+ * Upstream Merge * Adding in the code to restart services
+ (90990c6)
+ * Sync to trunk (bcf1d4e)
+ * Adding the code for having the services automatically restart if
+ they crash. (e36616b)
-2010-01-18 14:04:38 -0600 Ted Gould (a1032ca3)
+2010-01-15 Ted Gould
- * Update from trunk.
-
-2010-01-18 12:57:38 -0600 Ted Gould (2265c847)
-
- * releasing version 0.3.0-0ubuntu2~ppa1
-
-2010-01-18 12:56:14 -0600 Ted Gould (90990c6b)
-
- * * Upstream Merge * Adding in the code to restart services
-
-2010-01-18 12:54:22 -0600 Ted Gould (bcf1d4ec)
-
- * Sync to trunk
-
-2010-01-18 12:53:34 -0600 Ted Gould (e36616bc)
-
- * Adding the code for having the services automatically restart if
- they crash.
-
-2010-01-15 22:28:13 -0600 Ted Gould (079c2b51)
-
- * It's a fundamental mistake to believe that we can protect people
+ * It's a fundamental mistake to believe that we can protect people
using this interface from the disconnection. We have no
information to say that the new service starting will come
up in the same state as the one before it. We need the
individual implementers to verify that. Now we need to
- fix that. This commit does so.
-
-2010-01-15 22:19:16 -0600 Ted Gould (faa40d71)
-
- * releasing version 0.3.0-0ubuntu2~ppa1~restart2
-
-2010-01-15 22:17:57 -0600 Ted Gould (08192cc3)
-
- * * Upstream Merge * Emitting the connection changed signal better.
-
-2010-01-15 22:16:45 -0600 Ted Gould (62d8c1c8)
-
- * Handling the connected signal as well, making sure we emit it.
-
-2010-01-15 21:45:58 -0600 Ted Gould (f8d47e91)
-
- * releasing version 0.3.0-0ubuntu2~ppa1~restart1
-
-2010-01-15 21:44:49 -0600 Ted Gould (26f24213)
-
- * * Upstream Merge * Adding in the code to restart services
-
-2010-01-15 21:40:03 -0600 Ted Gould (deabfe64)
-
- * Switching what our enviroment variable is for, let's just stop the
- whole thing instead of playing with it.
-
-2010-01-15 21:25:48 -0600 Ted Gould (9bccc146)
-
- * Setting up the signal for when the proxies falls down, we restart.
-
-2010-01-15 21:15:30 -0600 Ted Gould (2ce95b02)
-
- * Filling out the function to start it again, and adding in the
- function to respond to the timeout.
-
-2010-01-15 20:38:04 -0600 Ted Gould (b9344c35)
-
- * Reset the restart_count when we start, and start to bring in
+ fix that. This commit does so. (079c2b5)
+ * releasing version 0.3.0-0ubuntu2~ppa1~restart2 (faa40d7)
+ * Upstream Merge * Emitting the connection changed signal better.
+ (08192cc)
+ * Handling the connected signal as well, making sure we emit it.
+ (62d8c1c)
+ * releasing version 0.3.0-0ubuntu2~ppa1~restart1 (f8d47e9)
+ * Upstream Merge * Adding in the code to restart services
+ (26f2421)
+ * Switching what our enviroment variable is for, let's just stop the
+ whole thing instead of playing with it. (deabfe6)
+ * Setting up the signal for when the proxies falls down, we restart.
+ (9bccc14)
+ * Filling out the function to start it again, and adding in the
+ function to respond to the timeout. (2ce95b0)
+ * Reset the restart_count when we start, and start to bring in
'start_service_again' to begin to throttle the restarts.
-
-2010-01-15 19:54:42 -0600 Ted Gould (41559b3c)
-
- * Getting a multiplier, and providing a way to override it using an
- environment variable.
-
-2010-01-15 16:11:42 -0600 Ted Gould (d7635fc9)
-
- * Having the signaller test check the 'moved' signal as well as the
- others.
-
-2010-01-15 16:08:35 -0600 Ted Gould (c25db995)
-
- * No error on not having a get_location function. We'll just return
- zero.
-
-2010-01-15 15:58:56 -0600 Ted Gould (cb5f34b9)
-
- * Basic location checking test.
-
-2010-01-15 15:35:55 -0600 Ted Gould (308e4db1)
-
- * Fleshing out the get_location function as much as they're
- implemented here.
-
-2010-01-15 15:28:31 -0600 Ted Gould (d334db50)
-
- * Fixing the signal comments.
-
-2010-01-15 15:16:30 -0600 Ted Gould (14b58238)
-
- * Setting up the move signal, which required custom marshallers.
-
-2010-01-15 15:04:20 -0600 Ted Gould (529ce66c)
-
- * API changes required to have locations for the entries.
-
-2009-12-10 20:42:51 -0600 Ted Gould (58c68774)
-
- * Ken loves us.
-
-2009-12-10 12:18:01 -0500 Ken VanDine (b6fb26bf)
-
- * set release for lucid
-
-2009-12-10 12:15:54 -0500 Ken VanDine (c45b838f)
-
- * * debian/control: - Added description for libindicator-tools
-
-2009-12-10 12:02:39 -0500 Ken VanDine (697b3246)
-
- * set version number
-
-2009-12-10 11:00:11 -0600 Ted Gould (5f5763c6)
-
- * releasing version 0.3.0-0ubuntu1~ppa1
-
-2009-12-10 10:59:39 -0600 Ted Gould (b4fb8024)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa11
-
-2009-12-10 10:58:39 -0600 Ted Gould (91d15281)
-
- * * Upstream 0.3.0 Release * Adds a new tool to load indicators
+ (b9344c3)
+ * Getting a multiplier, and providing a way to override it using an
+ environment variable. (41559b3)
+ * Having the signaller test check the 'moved' signal as well as the
+ others. (d7635fc)
+ * No error on not having a get_location function. We'll just return
+ zero. (c25db99)
+ * Basic location checking test. (cb5f34b)
+ * Fleshing out the get_location function as much as they're
+ implemented here. (308e4db)
+ * Fixing the signal comments. (d334db5)
+ * Setting up the move signal, which required custom marshallers.
+ (14b5823)
+ * API changes required to have locations for the entries. (529ce66)
+
+2009-12-10 Ted Gould
+
+ * Ken loves us. (58c6877)
+
+2009-12-10 Ken VanDine
+
+ * set release for lucid (b6fb26b)
+ * debian/control: - Added description for libindicator-tools
+ (c45b838)
+ * set version number (697b324)
+
+2009-12-10 Ted Gould
+
+ * releasing version 0.3.0-0ubuntu1~ppa1 (5f5763c)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa11 (b4fb802)
+ * Upstream 0.3.0 Release * Adds a new tool to load indicators
from the command line. * Adds an object for loading
indicators. * Changes the indicator interface to be
- object based. * debian/control, debian/libindicator0:
+ object based.; debian/control, debian/libindicator0:
Adding in a new packages for the binary library.
-
-2009-12-10 10:50:31 -0600 Ted Gould (cee358bb)
-
- * 0.3.0 (tag: 0.3.0)
-
-2009-12-10 10:41:43 -0600 Ted Gould (5fb45923)
-
- * Adding in license headers.
-
-2009-12-10 10:32:31 -0600 Ted Gould (29cb00e9)
-
- * Adding in license headers.
-
-2009-12-07 14:24:36 -0600 Ted Gould (97c515e7)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa10
-
-2009-12-07 14:23:24 -0600 Ted Gould (93ef960d)
-
- * * Licensing and doc updates. * Minor code cleanups
-
-2009-12-07 14:22:35 -0600 Ted Gould (2a521b2f)
-
- * Documentation, licenses, and some slight updates.
-
-2009-12-07 13:11:39 -0600 Ted Gould (578ffd23)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa9
-
-2009-12-07 13:10:34 -0600 Ted Gould (53bd4b5d)
-
- * Adding in a service API version number.
-
-2009-12-07 13:09:12 -0600 Ted Gould (483992f7)
-
- * Add in support for sevice API versions.
-
-2009-12-07 13:07:43 -0600 Ted Gould (13470413)
-
- * Fixing a typo in the error message -- noticed by David Barth.
-
-2009-12-04 14:30:44 -0600 Ted Gould (c1fa836f)
-
- * GPLv3 copyright headers.
-
-2009-12-04 13:50:43 -0600 Ted Gould (2d3d5b5c)
-
- * Implemented the _connected function as it's silly that it wasn't.
-
-2009-12-04 13:39:49 -0600 Ted Gould (59b5bb78)
-
- * More gtk-doc comments.
-
-2009-12-03 23:25:57 -0600 Ted Gould (5852e0be)
-
- * Adding in some comments and a little bit of code cleanup.
-
-2009-12-03 16:25:33 -0600 Ted Gould (a6d2a696)
-
- * Putting in comments for the functions.
-
-2009-12-03 16:03:17 -0600 Ted Gould (873b502f)
-
- * Service version numbers.
-
-2009-12-03 15:15:34 -0600 Ted Gould (ea29a8ef)
-
- * Adding a weak pointer to the service proxy.
-
-2009-12-03 14:39:20 -0600 Ted Gould (8331ee5c)
-
- * Switching unwatch to being a no_reply function call.
-
-2009-12-03 14:31:10 -0600 Ted Gould (436bca27)
-
- * Full signal handlers so that we can see everything.
-
-2009-12-03 08:49:16 -0600 Ted Gould (6db57d8c)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa8
-
-2009-12-03 08:49:10 -0600 Ted Gould (fa0212c4)
-
- * autogen.sh fix. (LP: #491907)
-
-2009-12-03 08:45:59 -0600 Ted Gould (360ae7ad)
-
- * Patch to fix autogen.sh
-
-2009-12-03 08:36:08 -0600 Cody Russell (66a7877c)
-
- * Fix autogen.sh so parameters are passed
-
-2009-12-02 15:58:52 -0600 Ted Gould (bc803c5d)
-
- * Merge in from trunk, now two failing tests.
-
-2009-12-02 15:49:23 -0600 Ted Gould (1696a679)
-
- * Forgot to delete the programs.
-
-2009-12-02 15:35:26 -0600 Ted Gould (b2a0e038)
-
- * Actually checking the version and erroring on it.
-
-2009-12-02 15:15:21 -0600 Ted Gould (0c7f6132)
-
- * Specifying who can't get the session bus.
-
-2009-12-02 15:15:03 -0600 Ted Gould (6bbe9890)
-
- * Printing out the session bus address
-
-2009-12-02 15:11:29 -0600 Ted Gould (18351a81)
-
- * Changing the names we're registering for to be correct.
-
-2009-12-02 13:57:00 -0600 Ted Gould (937c28b1)
-
- * Not erroring when we're supposed to pass.
-
-2009-12-02 13:56:44 -0600 Ted Gould (792315d7)
-
- * Adding a log domain for error messages
-
-2009-12-02 13:42:29 -0600 Ted Gould (36f2ede0)
-
- * Adding a new test to look at version numbers.
-
-2009-12-02 10:15:11 -0600 Ted Gould (a4e33bf9)
-
- * Adding _new functions that include the version number in them.
-
-2009-12-02 10:06:43 -0600 Ted Gould (d7e9d013)
-
- * Sending a version number for the local service.
-
-2009-12-02 08:40:09 -0600 Ted Gould (8f124e3c)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa7
-
-2009-12-02 08:37:01 -0600 Ted Gould (c986e2ca)
-
- * Adding an 'UnWatch' command to the standard DBus interface for
- graceful disconnection from a service.
-
-2009-12-02 08:35:41 -0600 Ted Gould (de38fc85)
-
- * Adding an unwatch command to allow for graceful disconnection from
- a service if we're not interested in it.
-
-2009-12-01 16:45:54 -0600 Ted Gould (a1d20fbf)
-
- * Adding a property for version.
-
-2009-12-01 16:34:32 -0600 Ted Gould (aa951a3e)
-
- * Change the watch function to return both an API version and a user
- set version.
-
-2009-12-01 16:07:26 -0600 Ted Gould (b7864d86)
-
- * Only getting the bus once.
-
-2009-12-01 13:44:30 -0600 Ted Gould (4ba1af34)
-
- * Trying to get a proxy before starting the service every time. If
- it exists, let's use it.
-
-2009-12-01 13:37:00 -0600 Ted Gould (5757cfb4)
-
- * New files to ignore.
-
-2009-12-01 13:35:30 -0600 Ted Gould (1b1a50d5)
-
- * Adding a test to ensure that a service gets shutdown by someone
- unwatching it.
-
-2009-12-01 10:47:13 -0600 Ted Gould (6e89bf09)
-
- * Checking to make sure we don't get connected twice, that'd be an
- error.
-
-2009-12-01 10:43:10 -0600 Ted Gould (d69de934)
-
- * Updating connection prototype to get all the data.
-
-2009-12-01 10:40:17 -0600 Ted Gould (8f0f2ad3)
-
- * Making the timeout a failure case, and making it so that we want a
- graceful shutdown.
-
-2009-12-01 10:20:36 -0600 Ted Gould (824d1e8b)
-
- * Unwatching if we have mismatched version.
-
-2009-12-01 10:19:11 -0600 Ted Gould (088eff44)
-
- * When destroying the object we tell the watched service that we're
- not watching it.
-
-2009-12-01 10:12:51 -0600 Ted Gould (67aef7b9)
-
- * Using the define for the version on both sides
-
-2009-12-01 10:11:50 -0600 Ted Gould (c0e2510b)
-
- * Finding the watcher and removing him from the list.
-
-2009-12-01 09:58:05 -0600 Ted Gould (8a1912e7)
-
- * Add an unwatch function with a basic handler.
-
-2009-11-24 16:36:04 -0600 Ted Gould (0d1af254)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa6
-
-2009-11-24 16:35:04 -0600 Ted Gould (5d0d185e)
-
- * * Adding a new tool to load indicators from the command line. *
+ (91d1528)
+ * 0.3.0 (cee358b) (tag: 0.3.0)
+ * Adding in license headers. (5fb4592)
+ * Adding in license headers. (29cb00e)
+
+2009-12-07 Ted Gould
+
+ * releasing version 0.3.0~dev-0ubuntu1~ppa10 (97c515e)
+ * Licensing and doc updates.; Minor code cleanups (93ef960)
+ * Documentation, licenses, and some slight updates. (2a521b2)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa9 (578ffd2)
+ * Adding in a service API version number. (53bd4b5)
+ * Add in support for sevice API versions. (483992f)
+ * Fixing a typo in the error message -- noticed by David Barth.
+ (1347041)
+
+2009-12-04 Ted Gould
+
+ * GPLv3 copyright headers. (c1fa836)
+ * Implemented the _connected function as it's silly that it wasn't.
+ (2d3d5b5)
+ * More gtk-doc comments. (59b5bb7)
+
+2009-12-03 Ted Gould
+
+ * Adding in some comments and a little bit of code cleanup. (5852e0b)
+ * Putting in comments for the functions. (a6d2a69)
+ * Service version numbers. (873b502)
+ * Adding a weak pointer to the service proxy. (ea29a8e)
+ * Switching unwatch to being a no_reply function call. (8331ee5)
+ * Full signal handlers so that we can see everything. (436bca2)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa8 (6db57d8)
+ * autogen.sh fix. (LP: #491907) (fa0212c)
+ * Patch to fix autogen.sh (360ae7a)
+
+2009-12-03 Cody Russell
+
+ * Fix autogen.sh so parameters are passed (66a7877)
+
+2009-12-02 Ted Gould
+
+ * Merge in from trunk, now two failing tests. (bc803c5)
+ * Forgot to delete the programs. (1696a67)
+ * Actually checking the version and erroring on it. (b2a0e03)
+ * Specifying who can't get the session bus. (0c7f613)
+ * Printing out the session bus address (6bbe989)
+ * Changing the names we're registering for to be correct. (18351a8)
+ * Not erroring when we're supposed to pass. (937c28b)
+ * Adding a log domain for error messages (792315d)
+ * Adding a new test to look at version numbers. (36f2ede)
+ * Adding _new functions that include the version number in them.
+ (a4e33bf)
+ * Sending a version number for the local service. (d7e9d01)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa7 (8f124e3)
+ * Adding an 'UnWatch' command to the standard DBus interface for
+ graceful disconnection from a service. (c986e2c)
+ * Adding an unwatch command to allow for graceful disconnection from
+ a service if we're not interested in it. (de38fc8)
+
+2009-12-01 Ted Gould
+
+ * Adding a property for version. (a1d20fb)
+ * Change the watch function to return both an API version and a user
+ set version. (aa951a3)
+ * Only getting the bus once. (b7864d8)
+ * Trying to get a proxy before starting the service every time. If
+ it exists, let's use it. (4ba1af3)
+ * New files to ignore. (5757cfb)
+ * Adding a test to ensure that a service gets shutdown by someone
+ unwatching it. (1b1a50d)
+ * Checking to make sure we don't get connected twice, that'd be an
+ error. (6e89bf0)
+ * Updating connection prototype to get all the data. (d69de93)
+ * Making the timeout a failure case, and making it so that we want a
+ graceful shutdown. (8f0f2ad)
+ * Unwatching if we have mismatched version. (824d1e8)
+ * When destroying the object we tell the watched service that we're
+ not watching it. (088eff4)
+ * Using the define for the version on both sides (67aef7b)
+ * Finding the watcher and removing him from the list. (c0e2510)
+ * Add an unwatch function with a basic handler. (8a1912e)
+
+2009-11-24 Ted Gould
+
+ * releasing version 0.3.0~dev-0ubuntu1~ppa6 (0d1af25)
+ * Adding a new tool to load indicators from the command line.
debian/control, debian/libindicator-tools: Adding in a new
- package for the tools of libindicator.
-
-2009-11-24 16:34:20 -0600 Ted Gould (01c14391)
-
- * Sync to trunk
-
-2009-11-24 16:33:38 -0600 Ted Gould (ad2ef4d3)
-
- * Adding in a small tool to test loading of indicators on the command
- line. (easier development)
-
-2009-11-24 14:56:18 -0600 Ted Gould (d66daf8d)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa6~tl3
-
-2009-11-24 14:55:22 -0600 Ted Gould (411182c3)
-
- * debian/control: Making sure the tools package is using the same
- version of the library that it was built with.
-
-2009-11-24 14:52:43 -0600 Ted Gould (8e829711)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa6~tl2
-
-2009-11-24 14:51:27 -0600 Ted Gould (f5ad2016)
-
- * Adding support for remove.
-
-2009-11-24 14:50:53 -0600 Ted Gould (bfb7a29c)
-
- * Adding support for removing entries
-
-2009-11-24 10:34:31 -0600 Ted Gould (06ac252b)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa6~tl1
-
-2009-11-24 10:33:21 -0600 Ted Gould (5a914cab)
-
- * debian/control, debian/libindicator-tools: Adding in a new package
- for the tools of libindicator.
-
-2009-11-24 10:28:51 -0600 Ted Gould (cc1c8d4e)
-
- * Adding a new tool to load indicators from the command line.
-
-2009-11-24 10:19:34 -0600 Ted Gould (b6f78fa6)
-
- * Stopping the app when the window closes.
-
-2009-11-24 10:13:44 -0600 Ted Gould (cd27c1b5)
-
- * Grabbing the entry added function as well, didn't realize how much
- it did :)
-
-2009-11-24 10:11:36 -0600 Ted Gould (a9b6d6fe)
-
- * Showing the menubar and window
-
-2009-11-24 10:04:28 -0600 Ted Gould (93650be7)
-
- * Adding a small little tool to load an indicator from the command
- line.
-
-2009-11-16 23:23:12 -0600 Ted Gould (f8b4671f)
-
- * Merging in from Robert.
-
-2009-11-16 23:18:28 -0600 Ted Gould (f040dac4)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa5
-
-2009-11-16 23:18:22 -0600 Ted Gould (7b0d813f)
-
- * debian/control: Adding a depend for the -dev package on the base
- library to stop users from linking staticly.
-
-2009-11-17 14:06:59 +1100 Robert Collins (18eb9ed6)
-
- * Depend on libindicator0 to pull it in when libindicator-dev is a
- build-dep.
-
-2009-11-16 15:26:59 -0600 Ted Gould (961fafaf)
-
- * Confused
-
-2009-11-16 15:26:25 -0600 Ted Gould (b72113b5)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa4
-
-2009-11-16 15:25:07 -0600 Ted Gould (a095f059)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa4
-
-2009-11-16 15:25:01 -0600 Ted Gould (52fd9ea3)
-
- * 64-bit fix for printf's
-
-2009-11-05 10:56:41 -0600 Ted Gould (a7b77875)
-
- * 64-bit fix in that GTypes are not ints on 64-bit
-
-2009-11-05 10:25:54 -0600 Ted Gould (a87ce282)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa3
-
-2009-11-05 10:25:09 -0600 Ted Gould (a6c762e2)
-
- * debian/control: Adding build deps dbus-glib as well.
-
-2009-11-05 10:09:43 -0600 Ted Gould (2fb0a49a)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa2
-
-2009-11-05 10:08:29 -0600 Ted Gould (31771888)
-
- * debian/control: Adding build deps for the libraries we're using.
- Seems we should have done that earlier, eh?
-
-2009-11-05 09:16:25 -0600 Ted Gould (8569ff33)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa1
-
-2009-11-05 09:15:33 -0600 Ted Gould (20d9f0ea)
-
- * * Changing the object interface to allow for multiple items per
- module. * Changing debian/libindicator-dev.install for the
- adjusted include path.
-
-2009-11-05 09:14:25 -0600 Ted Gould (c3474004)
-
- * Sync with trunk
-
-2009-11-05 09:13:41 -0600 Ted Gould (db9e8f49)
-
- * Changing the indicator-object API to support indicators that have
- multiple entries, and are dynamic.
-
-2009-11-04 13:18:22 -0600 Ted Gould (d6901e10)
-
- * releasing version 0.3.0~dev-0ubuntu1~ppa1~multi1
-
-2009-11-04 13:17:33 -0600 Ted Gould (15120ed5)
-
- * Changing version.
-
-2009-11-04 13:16:34 -0600 Ted Gould (77033be1)
-
- * releasing version 0.2.1-0ubuntu2~ppa2~multi1
-
-2009-11-04 13:13:23 -0600 Ted Gould (2802941a)
-
- * Changing debian/libindicator-dev.install for the adjusted include
- path.
-
-2009-11-04 13:07:37 -0600 Ted Gould (0512f867)
-
- * Changing the object interface to allow for multiple items per
- module.
-
-2009-11-04 11:34:44 -0600 Ted Gould (34f914c2)
-
- * Changing the include directory as well.
-
-2009-11-04 11:34:00 -0600 Ted Gould (4a558fc0)
-
- * Moving everything up to '3' as we're breaking everyone pretty bad
- at this point.
-
-2009-11-04 11:24:25 -0600 Ted Gould (2b754cb1)
-
- * Updating to current trunk.
-
-2009-11-04 11:19:26 -0600 Ted Gould (534aab3a)
-
- * Use close instead of unreffing.
-
-2009-11-04 11:14:22 -0600 Ted Gould (8c321faf)
-
- * Adding a simple indicator test that checks to make sure we can
- signal up the stack.
-
-2009-11-04 10:55:48 -0600 Ted Gould (80330111)
-
- * Building a dummy indicator that signals.
-
-2009-11-04 10:53:14 -0600 Ted Gould (db2a2391)
-
- * Using the proper define for the type.
-
-2009-11-04 08:19:04 -0600 Ted Gould (5ad8e303)
-
- * releasing version 0.2.1-0ubuntu2~ppa1
-
-2009-11-04 08:15:18 -0600 Ted Gould (3d93d5a2)
-
- * * Adding in service management code. * debian/control: Adding a
- target for libindicator0 * Adding libindicator0.install
- and libindicator-dev.install
-
-2009-11-04 08:14:17 -0600 Ted Gould (61e1ae1b)
-
- * Updating to trunk
-
-2009-11-03 23:22:23 -0600 Ted Gould (c547687a)
-
- * Adding a service management interface into libindicators as many
- will use that.
-
-2009-11-03 23:17:33 -0600 Ted Gould (7db78869)
-
- * Adding in some ID helpers.
-
-2009-11-03 23:15:10 -0600 Ted Gould (0db39bf6)
-
- * Adding in some signals to make for some more fun.
-
-2009-11-03 22:42:39 -0600 Ted Gould (cb0c099a)
-
- * Making a warning not use a colloquialism.
-
-2009-11-03 22:40:05 -0600 Ted Gould (cfa83c08)
-
- * Changing version to service_version
-
-2009-11-03 22:24:07 -0600 Ted Gould (b267db90)
-
- * Updating to current trunk.
-
-2009-11-03 22:23:16 -0600 Ted Gould (e354bc45)
-
- * Changing the way the module is free'd
-
-2009-11-03 22:16:43 -0600 Ted Gould (03e89036)
-
- * Having the test expect an object, but fail when calling the
- functions.
-
-2009-11-03 21:44:51 -0600 Ted Gould (1a528a74)
-
- * Make the tester dynamically link the lib so that there's not two
- versions of everything.
-
-2009-11-03 21:38:09 -0600 Ted Gould (10aa8002)
-
- * Linking the indicators with the libindicator library.
-
-2009-11-03 21:33:08 -0600 Ted Gould (bffbb2c3)
-
- * Switching to checking the entires list instead of individual
- functions.
-
-2009-11-03 21:31:04 -0600 Ted Gould (57642ed8)
-
- * Converting the dummy indicators over to the new API. They compile
- now.
-
-2009-11-03 20:27:00 -0600 Ted Gould (9fa35bae)
-
- * Syncing up with trunk before merging.
-
-2009-11-03 20:23:41 -0600 Ted Gould (541f18ce)
-
- * Merging in an interface for loading modules cleanly.
-
-2009-11-03 17:06:39 -0600 Ted Gould (c09917d4)
-
- * Changing comment on private struct.
-
-2009-11-03 16:38:11 -0600 Ted Gould (1f96a346)
-
- * Typo
-
-2009-11-03 16:38:05 -0600 Ted Gould (258f461b)
-
- * Creating the actual backing function for
- indicator_object_get_entries.
-
-2009-11-03 14:00:08 -0600 Ted Gould (78868a0d)
-
- * Adding in a default handler for get_entries.
-
-2009-11-03 13:40:10 -0600 Ted Gould (ed409d4c)
-
- * Whew, blew up the interface and built it back again.
-
-2009-11-03 13:19:25 -0600 Ted Gould (0575b911)
-
- * Redefining the interface. Now this object should get subclassed by
- folks.
-
-2009-11-03 13:03:50 -0600 Ted Gould (e2ce2dd0)
-
- * Removing the instance object. I think that we can do everything we
- need by using the object.
-
-2009-11-03 11:54:09 -0600 Ted Gould (6935a6b0)
-
- * Switching to a set_type function instead of making people do that
- themselves.
-
-2009-11-03 11:52:16 -0600 Ted Gould (aaacaacd)
-
- * Adding in the basis for the instance class.
-
-2009-11-03 11:46:51 -0600 Ted Gould (614606a9)
-
- * Stripping out the symbols for the old stuff, and going with the new
- of just getting a type.
-
-2009-11-03 11:16:20 -0600 Ted Gould (1021a835)
-
- * We need atleast the loader branch as that's what we want to change.
-
-2009-11-03 09:34:00 -0600 Ted Gould (b3fc7791)
-
- * Typo
-
-2009-11-03 09:31:53 -0600 Ted Gould (07c7bb1b)
-
- * Comments in the copyright statements updated.
-
-2009-11-02 17:15:12 -0600 Ted Gould (ff0cc74b)
-
- * releasing version 0.2.1-0ubuntu2~ppa1~sm2
-
-2009-11-02 17:14:34 -0600 Ted Gould (c626be5f)
-
- * Fixing package config file to point to library
-
-2009-11-02 17:12:06 -0600 Ted Gould (0aa21060)
-
- * Oops, we need to tell package config that we're a big library now.
-
-2009-11-02 16:50:02 -0600 Ted Gould (a4652e18)
-
- * releasing version 0.2.1-0ubuntu2~ppa1~sm1
-
-2009-11-02 16:39:53 -0600 Ted Gould (00808f0d)
-
- * * debian/control: Adding a target for libindicator0 * Adding
+ package for the tools of libindicator. (5d0d185)
+ * Sync to trunk (01c1439)
+ * Adding in a small tool to test loading of indicators on the command
+ line. (easier development) (ad2ef4d)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa6~tl3 (d66daf8)
+ * debian/control: Making sure the tools package is using the same
+ version of the library that it was built with. (411182c)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa6~tl2 (8e82971)
+ * Adding support for remove. (f5ad201)
+ * Adding support for removing entries (bfb7a29)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa6~tl1 (06ac252)
+ * debian/control, debian/libindicator-tools: Adding in a new package
+ for the tools of libindicator. (5a914ca)
+ * Adding a new tool to load indicators from the command line.
+ (cc1c8d4)
+ * Stopping the app when the window closes. (b6f78fa)
+ * Grabbing the entry added function as well, didn't realize how much
+ it did :) (cd27c1b)
+ * Showing the menubar and window (a9b6d6f)
+ * Adding a small little tool to load an indicator from the command
+ line. (93650be)
+
+2009-11-16 Ted Gould
+
+ * Merging in from Robert. (f8b4671)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa5 (f040dac)
+ * debian/control: Adding a depend for the -dev package on the base
+ library to stop users from linking staticly. (7b0d813)
+
+2009-11-17 Robert Collins
+
+ * Depend on libindicator0 to pull it in when libindicator-dev is a
+ build-dep. (18eb9ed)
+
+2009-11-16 Ted Gould
+
+ * Confused (961fafa)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa4 (b72113b)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa4 (a095f05)
+ * 64-bit fix for printf's (52fd9ea)
+
+2009-11-05 Ted Gould
+
+ * 64-bit fix in that GTypes are not ints on 64-bit (a7b7787)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa3 (a87ce28)
+ * debian/control: Adding build deps dbus-glib as well. (a6c762e)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa2 (2fb0a49)
+ * debian/control: Adding build deps for the libraries we're using.
+ Seems we should have done that earlier, eh? (3177188)
+ * releasing version 0.3.0~dev-0ubuntu1~ppa1 (8569ff3)
+ * Changing the object interface to allow for multiple items per
+ module.; Changing debian/libindicator-dev.install for the
+ adjusted include path. (20d9f0e)
+ * Sync with trunk (c347400)
+ * Changing the indicator-object API to support indicators that have
+ multiple entries, and are dynamic. (db9e8f4)
+
+2009-11-04 Ted Gould
+
+ * releasing version 0.3.0~dev-0ubuntu1~ppa1~multi1 (d6901e1)
+ * Changing version. (15120ed)
+ * releasing version 0.2.1-0ubuntu2~ppa2~multi1 (77033be)
+ * Changing debian/libindicator-dev.install for the adjusted include
+ path. (2802941)
+ * Changing the object interface to allow for multiple items per
+ module. (0512f86)
+ * Changing the include directory as well. (34f914c)
+ * Moving everything up to '3' as we're breaking everyone pretty bad
+ at this point. (4a558fc)
+ * Updating to current trunk. (2b754cb)
+ * Use close instead of unreffing. (534aab3)
+ * Adding a simple indicator test that checks to make sure we can
+ signal up the stack. (8c321fa)
+ * Building a dummy indicator that signals. (8033011)
+ * Using the proper define for the type. (db2a239)
+ * releasing version 0.2.1-0ubuntu2~ppa1 (5ad8e30)
+ * Adding in service management code.; debian/control: Adding a
+ target for libindicator0; Adding libindicator0.install
+ and libindicator-dev.install (3d93d5a)
+ * Updating to trunk (61e1ae1)
+
+2009-11-03 Ted Gould
+
+ * Adding a service management interface into libindicators as many
+ will use that. (c547687)
+ * Adding in some ID helpers. (7db7886)
+ * Adding in some signals to make for some more fun. (0db39bf)
+ * Making a warning not use a colloquialism. (cb0c099)
+ * Changing version to service_version (cfa83c0)
+ * Updating to current trunk. (b267db9)
+ * Changing the way the module is free'd (e354bc4)
+ * Having the test expect an object, but fail when calling the
+ functions. (03e8903)
+ * Make the tester dynamically link the lib so that there's not two
+ versions of everything. (1a528a7)
+ * Linking the indicators with the libindicator library. (10aa800)
+ * Switching to checking the entires list instead of individual
+ functions. (bffbb2c)
+ * Converting the dummy indicators over to the new API. They compile
+ now. (57642ed)
+ * Syncing up with trunk before merging. (9fa35ba)
+ * Merging in an interface for loading modules cleanly. (541f18c)
+ * Changing comment on private struct. (c09917d)
+ * Typo (1f96a34)
+ * Creating the actual backing function for
+ indicator_object_get_entries. (258f461)
+ * Adding in a default handler for get_entries. (78868a0)
+ * Whew, blew up the interface and built it back again. (ed409d4)
+ * Redefining the interface. Now this object should get subclassed by
+ folks. (0575b91)
+ * Removing the instance object. I think that we can do everything we
+ need by using the object. (e2ce2dd)
+ * Switching to a set_type function instead of making people do that
+ themselves. (6935a6b)
+ * Adding in the basis for the instance class. (aaacaac)
+ * Stripping out the symbols for the old stuff, and going with the new
+ of just getting a type. (614606a)
+ * We need atleast the loader branch as that's what we want to change.
+ (1021a83)
+ * Typo (b3fc779)
+ * Comments in the copyright statements updated. (07c7bb1)
+
+2009-11-02 Ted Gould
+
+ * releasing version 0.2.1-0ubuntu2~ppa1~sm2 (ff0cc74)
+ * Fixing package config file to point to library (c626be5)
+ * Oops, we need to tell package config that we're a big library now.
+ (0aa2106)
+ * releasing version 0.2.1-0ubuntu2~ppa1~sm1 (a4652e1)
+ * debian/control: Adding a target for libindicator0; Adding
libindicator0.install and libindicator-dev.install
-
-2009-11-02 16:31:03 -0600 Ted Gould (8e4486c2)
-
- * Adding in service management code.
-
-2009-11-02 16:17:31 -0600 Ted Gould (5ccc73be)
-
- * Distcheck fixes. Looking for the files in the right place and
- making sure we clean up after ourselves.
-
-2009-11-02 16:14:53 -0600 Ted Gould (c3d30bd0)
-
- * We should pass the test if we get a connection, it means we
- activated.
-
-2009-11-02 16:13:28 -0600 Ted Gould (6cb18e9a)
-
- * We want to not get the shutdown. Since we're testing that we get
+ (00808f0)
+ * Adding in service management code. (8e4486c)
+ * Distcheck fixes. Looking for the files in the right place and
+ making sure we clean up after ourselves. (5ccc73b)
+ * We should pass the test if we get a connection, it means we
+ activated. (c3d30bd)
+ * We want to not get the shutdown. Since we're testing that we get
it without connection we can now assume that if we don't
- get it we should pass.
-
-2009-11-02 16:08:04 -0600 Ted Gould (ddb2ab7c)
-
- * Adding a fallback to the session bus after trying the starter bus.
-
-2009-11-02 11:24:03 -0600 Ted Gould (5e5f4952)
-
- * Switching the name to match the service file... should fail.
-
-2009-11-02 11:21:20 -0600 Ted Gould (dc5fbef8)
-
- * Building a service file.
-
-2009-11-02 11:17:10 -0600 Ted Gould (9a15eec1)
-
- * Adding in the basic data needed to start bringing up a test to
- start the service.
-
-2009-11-02 10:48:18 -0600 Ted Gould (90446e0f)
-
- * Fixing up the build rules so that they're directory independent.
-
-2009-11-02 09:35:48 -0600 Ted Gould (c99ef225)
-
- * Some things are errors that should really be warnings.
-
-2009-11-02 09:31:43 -0600 Ted Gould (0745e42d)
-
- * Ah, we can't throw an error on success.
-
-2009-10-30 17:18:10 -0500 Ted Gould (911b9d7f)
-
- * Adding a test that ensures we don't get a connect signal.
-
-2009-10-30 15:58:57 -0500 Ted Gould (aa1549d8)
-
- * Adding in the connected property and signalling when we're all
- hooked up.
-
-2009-10-30 11:30:49 -0500 Ted Gould (d9dc7707)
-
- * Ubuntu Desktop updates
-
-2009-10-29 21:58:48 -0500 Ted Gould (a9e61b6f)
-
- * A service proxy, and then calling watch.
-
-2009-10-29 21:28:48 -0500 Ted Gould (02ce4f5c)
-
- * Building the dbus proxy and using it a little bit.
-
-2009-10-29 20:23:54 -0500 Ted Gould (c87569c1)
-
- * Ah, forgot to free name
-
-2009-10-29 20:12:44 -0500 Ted Gould (12fbcd55)
-
- * Properties functions.
-
-2009-10-29 20:02:46 -0500 Ted Gould (9af4097a)
-
- * Signals and properties, oh my!
-
-2009-10-29 17:34:00 -0500 Ted Gould (c099b033)
-
- * Adding the API functions.
-
-2009-10-29 17:22:29 -0500 Ted Gould (74296a68)
-
- * Oops, forgot to set to passed.
-
-2009-10-29 17:21:39 -0500 Ted Gould (58194766)
-
- * Sending shutdown signal 500 ms after getting a name if we have no
- watchers.
-
-2009-10-29 17:18:51 -0500 Ted Gould (fbba4158)
-
- * Adding in the watchers and timeout parameter.
-
-2009-10-29 16:29:47 -0500 Ted Gould (82aaaed9)
-
- * Adding in some shared strings for finding intefaces and objects.
-
-2009-10-29 16:11:02 -0500 Ted Gould (2e39b18f)
-
- * Woot! We're a DBus service now.
-
-2009-10-29 15:24:49 -0500 Ted Gould (f99a9f26)
-
- * Building ourselves a DBus proxy.
-
-2009-10-29 14:55:25 -0500 Ted Gould (145b2143)
-
- * Filling in more of the name property.
-
-2009-10-29 13:45:37 -0500 Ted Gould (fbb2bc9c)
-
- * Adding in the 'name' property
-
-2009-10-29 13:13:07 -0500 Ted Gould (621a7ba6)
-
- * Adding the shutdown signal
-
-2009-10-29 13:03:39 -0500 Ted Gould (22a5b08a)
-
- * Woot! A failing test. Look how TDD I am.
-
-2009-10-29 12:57:56 -0500 Ted Gould (a72fc583)
-
- * Making the gtester stuff into a autotest thingy.
-
-2009-10-29 11:34:44 -0500 Ted Gould (fc573dc1)
-
- * Creating a new test and linking it into things.
-
-2009-10-29 11:33:37 -0500 Ted Gould (ec0809ed)
-
- * Putting a dummy implementation in for _new for linking
-
-2009-10-29 10:49:12 -0500 Ted Gould (b60a7f11)
-
- * Adding basic interfaces and docs to IndicatorService
-
-2009-10-29 09:56:39 -0500 Ted Gould (0af9206b)
-
- * Defining some API and boot strapping documentation.
-
-2009-10-29 09:33:21 -0500 Ted Gould (b8db8189)
-
- * Making 'INDICATOR' the prefix for the objects.
-
-2009-10-29 09:27:05 -0500 Ted Gould (ba8af821)
-
- * Putting in some templated objects.
-
-2009-10-28 16:58:19 -0500 Ted Gould (606b4939)
-
- * Building ourselves a little dbus spec
-
-2009-10-28 16:55:18 -0500 Ted Gould (15995b7a)
-
- * Adding a description for the indicator service.
-
-2009-10-28 16:46:25 -0500 Ted Gould (0220cc7a)
-
- * Grabbing the loader branch
-
-2009-10-28 16:43:19 -0500 Ted Gould (b98a4811)
-
- * Removing valgrind as I want to clean this branch up and make
- another for that.
-
-2009-10-28 16:41:34 -0500 Ted Gould (755adf0a)
-
- * Oh, legal headers. Fun, fun.
-
-2009-10-28 16:37:49 -0500 Ted Gould (a8b1436d)
-
- * Adding in comments.
-
-2009-10-14 09:08:40 -0500 Ted Gould (f28c65a1)
-
- * Adding in check for valgrind that we'll need for the test tools.
-
-2009-10-11 22:06:46 -0500 Ted Gould (7cc9b8f4)
-
- * Adding the terballs into ignore
-
-2009-10-11 22:05:28 -0500 Ted Gould (0b18e53f)
-
- * Making a tools directory
-
-2009-10-11 21:50:46 -0500 Ted Gould (ccc7f82c)
-
- * using the blank dummy indicator
-
-2009-10-11 21:49:22 -0500 Ted Gould (a2f4f868)
-
- * Building a new dummy indicator that doesn't have any symbols in it.
-
-2009-10-09 08:12:31 +0200 Martin Pitt (98c7033d)
-
- * releasing version 0.2.1-0ubuntu1 (tag: 0.2.1-0ubuntu1)
-
-2009-10-08 21:03:30 -0400 Ted Gould (bb7b49ae)
-
- * Testing the accessors
-
-2009-10-08 20:47:19 -0400 Ted Gould (5144944d)
-
- * Adding some accessor functions for the various GTK objects.
-
-2009-10-08 20:22:59 -0400 Ted Gould (fda24e43)
-
- * Maintaining a reference to the objects we create in the object.
-
-2009-10-08 20:18:20 -0400 Ted Gould (32fc4b83)
-
- * We need to use GTK.
-
-2009-10-08 20:17:04 -0400 Ted Gould (9c16e7c9)
-
- * A better dummy menu.
-
-2009-10-08 20:12:48 -0400 Ted Gould (97a4004d)
-
- * Create a very simple indicator and testing it.
-
-2009-10-08 19:50:40 -0400 Ted Gould (a28e917b)
-
- * Being a bit more verbose
-
-2009-10-08 19:49:23 -0400 Ted Gould (56450cfd)
-
- * Making it so that the null test checks for failure as we shoudln't
+ get it we should pass. (6cb18e9)
+ * Adding a fallback to the session bus after trying the starter bus.
+ (ddb2ab7)
+ * Switching the name to match the service file... should fail.
+ (5e5f495)
+ * Building a service file. (dc5fbef)
+ * Adding in the basic data needed to start bringing up a test to
+ start the service. (9a15eec)
+ * Fixing up the build rules so that they're directory independent.
+ (90446e0)
+ * Some things are errors that should really be warnings. (c99ef22)
+ * Ah, we can't throw an error on success. (0745e42)
+
+2009-10-30 Ted Gould
+
+ * Adding a test that ensures we don't get a connect signal. (911b9d7)
+ * Adding in the connected property and signalling when we're all
+ hooked up. (aa1549d)
+ * Ubuntu Desktop updates (d9dc770)
+
+2009-10-29 Ted Gould
+
+ * A service proxy, and then calling watch. (a9e61b6)
+ * Building the dbus proxy and using it a little bit. (02ce4f5)
+ * Ah, forgot to free name (c87569c)
+ * Properties functions. (12fbcd5)
+ * Signals and properties, oh my! (9af4097)
+ * Adding the API functions. (c099b03)
+ * Oops, forgot to set to passed. (74296a6)
+ * Sending shutdown signal 500 ms after getting a name if we have no
+ watchers. (5819476)
+ * Adding in the watchers and timeout parameter. (fbba415)
+ * Adding in some shared strings for finding intefaces and objects.
+ (82aaaed)
+ * Woot! We're a DBus service now. (2e39b18)
+ * Building ourselves a DBus proxy. (f99a9f2)
+ * Filling in more of the name property. (145b214)
+ * Adding in the 'name' property (fbb2bc9)
+ * Adding the shutdown signal (621a7ba)
+ * Woot! A failing test. Look how TDD I am. (22a5b08)
+ * Making the gtester stuff into a autotest thingy. (a72fc58)
+ * Creating a new test and linking it into things. (fc573dc)
+ * Putting a dummy implementation in for _new for linking (ec0809e)
+ * Adding basic interfaces and docs to IndicatorService (b60a7f1)
+ * Defining some API and boot strapping documentation. (0af9206)
+ * Making 'INDICATOR' the prefix for the objects. (b8db818)
+ * Putting in some templated objects. (ba8af82)
+
+2009-10-28 Ted Gould
+
+ * Building ourselves a little dbus spec (606b493)
+ * Adding a description for the indicator service. (15995b7)
+ * Grabbing the loader branch (0220cc7)
+ * Removing valgrind as I want to clean this branch up and make
+ another for that. (b98a481)
+ * Oh, legal headers. Fun, fun. (755adf0)
+ * Adding in comments. (a8b1436)
+
+2009-10-14 Ted Gould
+
+ * Adding in check for valgrind that we'll need for the test tools.
+ (f28c65a)
+
+2009-10-11 Ted Gould
+
+ * Adding the terballs into ignore (7cc9b8f)
+ * Making a tools directory (0b18e53)
+ * using the blank dummy indicator (ccc7f82)
+ * Building a new dummy indicator that doesn't have any symbols in it.
+ (a2f4f86)
+
+2009-10-09 Martin Pitt
+
+ * releasing version 0.2.1-0ubuntu1 (98c7033) (tag: 0.2.1-0ubuntu1)
+
+2009-10-08 Ted Gould
+
+ * Testing the accessors (bb7b49a)
+ * Adding some accessor functions for the various GTK objects.
+ (5144944)
+ * Maintaining a reference to the objects we create in the object.
+ (fda24e4)
+ * We need to use GTK. (32fc4b8)
+ * A better dummy menu. (9c16e7c)
+ * Create a very simple indicator and testing it. (97a4004)
+ * Being a bit more verbose (a28e917)
+ * Making it so that the null test checks for failure as we shoudln't
have a null image and label. Also making it so that
- warnings don't cause the test to fail.
-
-2009-10-08 19:48:44 -0400 Ted Gould (66b0d1be)
-
- * Making it so that we use the same unref code as everyone else.
-
-2009-10-08 19:17:15 -0400 Ted Gould (4ea28685)
-
- * Truth again. Keeps bitting back. I shouldn't of lied in the 2nd
- grade, I confess! No more, please.
-
-2009-10-08 19:12:47 -0400 Ted Gould (b2942d9c)
-
- * Checking to see if a file exists before trying to load it.
-
-2009-10-08 19:07:03 -0400 Ted Gould (18f63963)
-
- * Truth. Sucks.
-
-2009-10-08 19:04:51 -0400 Ted Gould (a65694f2)
-
- * Turning all the return if fails into proper if's with warning and
+ warnings don't cause the test to fail. (56450cf)
+ * Making it so that we use the same unref code as everyone else.
+ (66b0d1b)
+ * Truth again. Keeps bitting back. I shouldn't of lied in the 2nd
+ grade, I confess! No more, please. (4ea2868)
+ * Checking to see if a file exists before trying to load it.
+ (b2942d9)
+ * Truth. Sucks. (18f6396)
+ * Turning all the return if fails into proper if's with warning and
unref the object so there aren't any memory leaks.
-
-2009-10-08 18:49:08 -0400 Ted Gould (3bafca74)
-
- * Use the new build dir flag
-
-2009-10-08 18:48:59 -0400 Ted Gould (37665869)
-
- * Build dir fix and making gtester run all of them even if one fails.
-
-2009-10-08 18:43:10 -0400 Ted Gould (bece9de3)
-
- * Making it so that we're not using g_return_if_fail as it messes up
- the test suite.
-
-2009-10-08 18:36:06 -0400 Ted Gould (f4b307cd)
-
- * Fleshing out the load from file function. Still fails.
-
-2009-10-08 17:57:14 -0400 Ted Gould (bce9f514)
-
- * A test to load the dummy indicator
-
-2009-10-08 17:53:01 -0400 Ted Gould (1b828c9f)
-
- * Apparently they have to be installable to get the .so. Fail.
-
-2009-10-08 17:11:47 -0400 Ted Gould (d946049e)
-
- * Adding a test that should pass as given a bad filename we should
- get no object back.
-
-2009-10-08 17:09:21 -0400 Ted Gould (b4d20eb0)
-
- * Adding a function to create an object from a file
-
-2009-10-08 17:03:20 -0400 Ted Gould (c5941268)
-
- * Creating a dummy indicator that returns null
-
-2009-10-08 17:02:06 -0400 Ted Gould (605f74bd)
-
- * Switch from GLib to GTK as that's what we really needed.
-
-2009-10-08 16:34:13 -0400 Ted Gould (26ced5cd)
-
- * Using a weak ref instead of connecting to a signal that doesn't
- exist
-
-2009-10-08 16:32:19 -0400 Ted Gould (3bf9efb3)
-
- * Putting data in the private
-
-2009-10-08 16:29:36 -0400 Ted Gould (4658844f)
-
- * Test to build the object and unref it.
-
-2009-10-08 15:29:55 -0400 Ken VanDine (133d9bd5)
-
- * * Upstream release 0.2.1 (LP: #446619) * Puts a copyright header
+ (a65694f)
+ * Use the new build dir flag (3bafca7)
+ * Build dir fix and making gtester run all of them even if one fails.
+ (3766586)
+ * Making it so that we're not using g_return_if_fail as it messes up
+ the test suite. (bece9de)
+ * Fleshing out the load from file function. Still fails. (f4b307c)
+ * A test to load the dummy indicator (bce9f51)
+ * Apparently they have to be installable to get the .so. Fail.
+ (1b828c9)
+ * Adding a test that should pass as given a bad filename we should
+ get no object back. (d946049)
+ * Adding a function to create an object from a file (b4d20eb)
+ * Creating a dummy indicator that returns null (c594126)
+ * Switch from GLib to GTK as that's what we really needed. (605f74b)
+ * Using a weak ref instead of connecting to a signal that doesn't
+ exist (26ced5c)
+ * Putting data in the private (3bf9efb)
+ * Test to build the object and unref it. (4658844)
+
+2009-10-08 Ken VanDine
+
+ * Upstream release 0.2.1 (LP: #446619) * Puts a copyright header
on the header file. Should have been there all along.
+ (133d9bd)
-2009-10-08 13:00:00 -0400 Ted Gould (1386478a)
-
- * Fleshing out the test a little bit.
-
-2009-10-08 12:29:12 -0400 Ted Gould (c314d604)
-
- * Adding in a simple little test.
-
-2009-10-08 12:18:23 -0400 Ted Gould (fa946df2)
-
- * Adding in a tests folder
-
-2009-10-08 12:05:36 -0400 Ted Gould (1ca96666)
-
- * Ignoring our new file.
-
-2009-10-08 10:17:18 -0400 Ted Gould (1518975a)
-
- * releasing version 0.2.1-0ubuntu1~ppa1
-
-2009-10-08 10:16:40 -0400 Ted Gould (972ad5e6)
-
- * * Upstream release 0.2.1 * Puts a copyright header on the header
- file. Should have been there all along.
-
-2009-10-08 10:14:24 -0400 Ted Gould (6d8cd640)
-
- * Merging in ubuntu-desktop branch
-
-2009-10-08 10:11:01 -0400 Ted Gould (b5f41d1c)
-
- * 0.2.1 (tag: 0.2.1)
-
-2009-10-06 19:07:31 -0400 Ted Gould (a7a8c73b)
-
- * Adding license information to the header
-
-2009-10-06 16:32:23 -0400 Ted Gould (24d02536)
-
- * Adding some pkg-config love to get things compiling all nice like.
-
-2009-10-06 15:28:41 -0400 Ted Gould (1f822bf6)
-
- * Building a base object.
-
-2009-10-06 11:00:34 -0400 Ted Gould (89357084)
-
- * oops, should be GPLv3 not LGPLv3
+2009-10-08 Ted Gould
-2009-10-06 10:58:01 -0400 Ted Gould (0d87e4e2)
+ * Fleshing out the test a little bit. (1386478)
+ * Adding in a simple little test. (c314d60)
+ * Adding in a tests folder (fa946df)
+ * Ignoring our new file. (1ca9666)
+ * releasing version 0.2.1-0ubuntu1~ppa1 (1518975)
+ * Upstream release 0.2.1 * Puts a copyright header on the header
+ file. Should have been there all along. (972ad5e)
+ * Merging in ubuntu-desktop branch (6d8cd64)
+ * 0.2.1 (b5f41d1) (tag: 0.2.1)
- * Header for the header file that has the LGPLv3
+2009-10-06 Ted Gould
-2009-09-10 20:22:50 +0200 Martin Pitt (90bed292)
+ * Adding license information to the header (a7a8c73)
+ * Adding some pkg-config love to get things compiling all nice like.
+ (24d0253)
+ * Building a base object. (1f822bf)
+ * oops, should be GPLv3 not LGPLv3 (8935708)
+ * Header for the header file that has the LGPLv3 (0d87e4e)
- * releasing version 0.2.0-0ubuntu1 (tag: 0.2.0-0ubuntu1)
+2009-09-10 Martin Pitt
-2009-09-10 20:22:38 +0200 Martin Pitt (9075de46)
+ * releasing version 0.2.0-0ubuntu1 (90bed29) (tag: 0.2.0-0ubuntu1)
+ * more verbose changelog (9075de4)
- * more verbose changelog
+2009-09-10 Ken VanDine
-2009-09-10 13:09:34 -0400 Ken VanDine (287766d6)
+ * Upstream release 0.2.0 (LP: #427443) (287766d)
- * Upstream release 0.2.0 (LP: #427443)
+2009-09-10 Ted Gould
-2009-09-10 11:09:13 -0500 Ted Gould (7f838109)
+ * Merging in desktop branch (7f83810)
+ * releasing version 0.2.0-0ubuntu1~ppa1 (507d19b)
+ * Upstream release 0.2.0 (2eb5232)
+ * Making 0.2.0 (1c30efe) (tag: 0.2.0)
- * Merging in desktop branch
+2009-08-25 Martin Pitt
-2009-09-10 11:05:56 -0500 Ted Gould (507d19bc)
+ * releasing version 0.2.0~bzr325-0ubuntu1 (e5afc87)
+ * debian/control: Fix Vcs-* links. (6736e77)
+ * Flush changelog. (f434a87)
- * releasing version 0.2.0-0ubuntu1~ppa1
+2009-08-24 Ken VanDine
-2009-09-10 11:04:51 -0500 Ted Gould (2eb52326)
+ * debian/control: - Set both Vcs-Bzr and Vcs-Bzr-Browser, with
+ ~ubuntu-desktop (7e26ec7)
+ * New version (LP: #417039) (689de8d)
- * Upstream release 0.2.0
+2009-08-19 Ted Gould
-2009-09-10 11:03:29 -0500 Ted Gould (1c30efea)
+ * Using AM 1.11 silent mode (999dbf8)
- * Making 0.2.0 (tag: 0.2.0)
+2009-08-18 Ted Gould
-2009-08-25 08:38:04 +0200 Martin Pitt (e5afc873)
+ * releasing version 0.2.0~bzr325-0ubuntu1~ppa1 (772dcaf)
+ * Removing the install file. (0ec3b86)
+ * Merging in the seperation from indicator-applet; debian/*
+ Removing all of the indicator-applet stuff (a810a01)
+ * Merging in the separation from indicator-applet (f9bc0fe)
+ * Deleting everything only leaving libindicator (ba24704)
- * releasing version 0.2.0~bzr325-0ubuntu1
+2009-08-17 Ted Gould
-2009-08-25 08:33:06 +0200 Martin Pitt (6736e778)
+ * releasing version 0.2.0~bzr319-0ubuntu5~ppa5 (dcbb7eb)
+ * Setting the icon path in the .pc file. (8fda9af)
- * debian/control: Fix Vcs-* links.
+2009-08-08 Ted Gould
-2009-08-25 08:32:27 +0200 Martin Pitt (f434a877)
+ * Adding an icons directory to the .pc file (033de55)
- * Flush changelog.
+2009-08-07 Ted Gould
-2009-08-24 12:20:28 -0400 Ken VanDine (7e26ec75)
-
- * * debian/control: - Set both Vcs-Bzr and Vcs-Bzr-Browser, with
- ~ubuntu-desktop
-
-2009-08-24 09:00:47 -0400 Ken VanDine (689de8dc)
-
- * New version (LP: #417039)
-
-2009-08-19 11:38:23 -0500 Ted Gould (999dbf81)
-
- * Using AM 1.11 silent mode
-
-2009-08-18 13:55:03 -0500 Ted Gould (772dcaf2)
-
- * releasing version 0.2.0~bzr325-0ubuntu1~ppa1
-
-2009-08-18 13:54:50 -0500 Ted Gould (0ec3b869)
-
- * Removing the install file.
-
-2009-08-18 13:45:00 -0500 Ted Gould (a810a01a)
-
- * * Merging in the seperation from indicator-applet * debian/*
- Removing all of the indicator-applet stuff
-
-2009-08-18 13:41:27 -0500 Ted Gould (f9bc0fe6)
-
- * Merging in the separation from indicator-applet
-
-2009-08-18 11:52:09 -0500 Ted Gould (ba247049)
-
- * Deleting everything only leaving libindicator
-
-2009-08-17 09:18:22 -0500 Ted Gould (dcbb7eba)
-
- * releasing version 0.2.0~bzr319-0ubuntu5~ppa5
-
-2009-08-17 09:18:16 -0500 Ted Gould (8fda9afc)
-
- * Setting the icon path in the .pc file.
-
-2009-08-08 09:55:54 -0600 Ted Gould (033de552)
-
- * Adding an icons directory to the .pc file
-
-2009-08-07 19:02:23 +0100 Ted Gould (79d17f5f)
-
- * releasing version 0.2.0~bzr319-0ubuntu5~ppa4
-
-2009-08-07 19:02:11 +0100 Ted Gould (1a01d82a)
-
- * * Merging onto the main packaging branch. * Renaming the second
+ * releasing version 0.2.0~bzr319-0ubuntu5~ppa4 (79d17f5)
+ * Merging onto the main packaging branch.; Renaming the second
Bonobo server description file to match that of the
- FastUserSwitchApplet. * Upstream merge for better naming
- of the applet. * Updating from upstream with two (count
- them) two applets installed in the source. *
+ FastUserSwitchApplet.; Upstream merge for better naming
+ of the applet.; Updating from upstream with two (count
+ them) two applets installed in the source.
debian/control: Adding information on indicator-applet-sus
- which is a different applet for the SUS indicator. *
+ which is a different applet for the SUS indicator.
debian/indicator-applet.install: Making it more specific
so that it doesn't grab the directories that now have
additional files created by indicator-applet-sus
- existing. * debian/indicator-applet-sus.install: List
+ existing.; debian/indicator-applet-sus.install: List
files that are now used by the new binary package.
-
-2009-08-07 19:00:00 +0100 Ted Gould (4aa0584c)
-
- * Merging in the branch making two applets.
-
-2009-08-07 18:50:37 +0100 Ted Gould (853ef5b9)
-
- * releasing version 0.2.0~bzr319-0ubuntu5~ppa3
-
-2009-08-07 18:50:32 +0100 Ted Gould (40540252)
-
- * Renaming the second Bonobo server description file to match that of
- the FastUserSwitchApplet.
-
-2009-08-07 18:47:02 +0100 Ted Gould (3a8b5cae)
-
- * Changing the Bonobo server description file name to match that of
- FUSA.
-
-2009-08-07 18:40:26 +0100 Ted Gould (721b0f9a)
-
- * releasing version 0.2.0~bzr319-0ubuntu5~ppa2
-
-2009-08-07 18:40:19 +0100 Ted Gould (e97463ed)
-
- * Upstream merge for better naming of the applet.
-
-2009-08-07 18:40:03 +0100 Ted Gould (31fac01d)
-
- * releasing version 0.2.0~bzr319-0ubuntu5~ppa1
-
-2009-08-07 18:38:59 +0100 Ted Gould (38e4c747)
-
- * Oops, we need more identity.
-
-2009-08-07 18:31:45 +0100 Ted Gould (709f0a83)
-
- * Locking the version number so the two indicator-applets are the
- same
-
-2009-08-07 18:30:27 +0100 Ted Gould (93135b10)
-
- * * debian/control: Adding information on indicator-applet-sus which
- is a different applet for the SUS indicator. *
+ (1a01d82)
+ * Merging in the branch making two applets. (4aa0584)
+ * releasing version 0.2.0~bzr319-0ubuntu5~ppa3 (853ef5b)
+ * Renaming the second Bonobo server description file to match that of
+ the FastUserSwitchApplet. (4054025)
+ * Changing the Bonobo server description file name to match that of
+ FUSA. (3a8b5ca)
+ * releasing version 0.2.0~bzr319-0ubuntu5~ppa2 (721b0f9)
+ * Upstream merge for better naming of the applet. (e97463e)
+ * releasing version 0.2.0~bzr319-0ubuntu5~ppa1 (31fac01)
+ * Oops, we need more identity. (38e4c74)
+ * Locking the version number so the two indicator-applets are the
+ same (709f0a8)
+ * debian/control: Adding information on indicator-applet-sus which
+ is a different applet for the SUS indicator.
debian/indicator-applet.install: Making it more specific
so that it doesn't grab the directories that now have
additional files created by indicator-applet-sus
- existing. * debian/indicator-applet-sus.install: List
+ existing.; debian/indicator-applet-sus.install: List
files that are now used by the new binary package.
+ (93135b1)
+ * Updating from upstream with two (count them) two applets installed
+ in the source. (ae15eee)
+ * Switching the name to the proper server file. (8fd9f27)
+ * Loading only the SUS plugin. (65df6f1)
+ * Blocking out SUS from standard applet. (6c07c79)
+ * Fixing the generation rules for the bonobo server files. (3bb7806)
+ * Ignoring more files. (327dfdb)
+ * Switching the name to actually be correct. (2f92722)
+ * Changing the name of the directory to -sus which makes more sense
+ (059f1bf)
+ * New executable name (c35dbea)
+ * Renaming the server file (f33fa71)
+ * Adjusting the namespace. Just to make things fun like that.
+ (019d958)
+ * Making the schema translatable (f2a3bfc)
+ * Adding a new server to connect with our new applet. Still needs
+ changes as it's just a copy. (5bc7f7d)
+ * Adding a new build target for our new applet (99caa03)
+ * Adding the new src to the build system (a1ec732)
+ * New src entry (3b1bb35)
-2009-08-07 18:18:55 +0100 Ted Gould (ae15eee2)
-
- * Updating from upstream with two (count them) two applets installed
- in the source.
-
-2009-08-07 18:17:42 +0100 Ted Gould (8fd9f27b)
+2009-08-06 Ted Gould
- * Switching the name to the proper server file.
+ * Aurelien's patch to add a set_server function to indicators.
+ (d7f91b9)
-2009-08-07 17:43:09 +0100 Ted Gould (65df6f19)
+2009-08-06 Aurelien Gateau
- * Loading only the SUS plugin.
+ * Updated documentation (937dba5)
-2009-08-07 17:41:21 +0100 Ted Gould (6c07c799)
+2009-08-05 Ted Gould
- * Blocking out SUS from standard applet.
+ * Update to core-dev branch (a3eb3ea)
-2009-08-07 16:55:23 +0100 Ted Gould (3bb78064)
+2009-08-05 Aurelien Gateau
- * Fixing the generation rules for the bonobo server files.
+ * Introduce indicate_indicator_set_server() so that server can be
+ defined for message indicators too. (c4bd83a)
-2009-08-07 16:06:32 +0100 Ted Gould (327dfdb0)
+2009-08-05 Jonathan Riddell
- * Ignoring more files.
+ * Add build-dep on gtk-doc-tools (8223eb6)
+ * merge with Ken, fix gtk-doc (924a0a6)
-2009-08-07 15:57:14 +0100 Ted Gould (2f927220)
+2009-08-05 Ken VanDine
- * Switching the name to actually be correct.
+ * indicator-applet (0.2.0~bzr319-0ubuntu3) karmic; urgency=low
+ (bff1218)
-2009-08-07 15:53:10 +0100 Ted Gould (059f1bf7)
+2009-08-05 Ted Gould
- * Changing the name of the directory to -sus which makes more sense
+ * releasing version 0.2.0~bzr319-0ubuntu1~ppa5 (6a2b4b1)
+ * Upstream fix for server.c and get indicators with hidden indicators
+ in the list. (cc920f1)
+ * Maintaining the count independent of the entires. (a3e59c2)
-2009-08-07 15:45:40 +0100 Ted Gould (c35dbea8)
+2009-08-05 Jonathan Riddell
- * New executable name
-
-2009-08-07 15:32:30 +0100 Ted Gould (f33fa710)
-
- * Renaming the server file
-
-2009-08-07 14:24:33 +0100 Ted Gould (019d9582)
-
- * Adjusting the namespace. Just to make things fun like that.
-
-2009-08-07 14:21:31 +0100 Ted Gould (f2a3bfcd)
-
- * Making the schema translatable
-
-2009-08-07 14:19:27 +0100 Ted Gould (5bc7f7d4)
-
- * Adding a new server to connect with our new applet. Still needs
- changes as it's just a copy.
-
-2009-08-07 14:15:15 +0100 Ted Gould (99caa033)
-
- * Adding a new build target for our new applet
-
-2009-08-07 14:13:05 +0100 Ted Gould (a1ec7327)
-
- * Adding the new src to the build system
-
-2009-08-07 12:14:44 +0100 Ted Gould (3b1bb35d)
-
- * New src entry
-
-2009-08-06 14:57:57 +0100 Ted Gould (d7f91b92)
-
- * Aurelien's patch to add a set_server function to indicators.
-
-2009-08-06 15:43:38 +0200 Aurelien Gateau (937dba5d)
-
- * Updated documentation
-
-2009-08-05 17:53:44 +0100 Ted Gould (a3eb3eaa)
-
- * Update to core-dev branch
-
-2009-08-05 15:51:59 +0200 Aurelien Gateau (c4bd83aa)
-
- * Introduce indicate_indicator_set_server() so that server can be
- defined for message indicators too.
-
-2009-08-05 11:29:13 +0100 Jonathan Riddell (8223eb61)
-
- * Add build-dep on gtk-doc-tools
-
-2009-08-05 11:12:14 +0100 Jonathan Riddell (924a0a66)
-
- * merge with Ken, fix gtk-doc
-
-2009-08-05 09:50:42 +0100 Ken VanDine (bff1218c)
-
- * indicator-applet (0.2.0~bzr319-0ubuntu3) karmic; urgency=low
-
-2009-08-05 01:26:47 +0100 Ted Gould (6a2b4b17)
-
- * releasing version 0.2.0~bzr319-0ubuntu1~ppa5
-
-2009-08-05 01:26:41 +0100 Ted Gould (cc920f1c)
-
- * Upstream fix for server.c and get indicators with hidden indicators
- in the list.
-
-2009-08-05 01:25:55 +0100 Ted Gould (a3e59c22)
-
- * Maintaining the count independent of the entires.
-
-2009-08-05 00:41:16 +0100 Jonathan Riddell (07a83fac)
-
- * Run ./autogen.sh before upload
-
-2009-08-05 00:23:53 +0100 Jonathan Riddell (daaa9a5b)
-
- * tidy changelog for release
-
-2009-08-05 00:19:38 +0100 Jonathan Riddell (cb9d427c)
-
- * merge current package for upload,
+ * Run ./autogen.sh before upload (07a83fa)
+ * tidy changelog for release (daaa9a5)
+ * merge current package for upload,
https://code.edge.launchpad.net/~indicator-applet-developers/indicator-applet/applet-packaging/+merge/9671
-
-2009-08-04 12:30:59 +0100 Ted Gould (42ba02f7)
-
- * releasing version 0.2.0~bzr319-0ubuntu1~ppa4
-
-2009-08-04 12:26:53 +0100 Ted Gould (c495a628)
-
- * Upstream fix to PC file.
-
-2009-08-04 12:25:24 +0100 Ted Gould (e4ac1dcf)
-
- * Update the pc file from the GTK split out.
-
-2009-08-04 10:53:52 +0100 Ted Gould (72093e20)
-
- * releasing version 0.2.0~bzr319-0ubuntu1~ppa3
-
-2009-08-04 10:53:46 +0100 Ted Gould (41c535b3)
-
- * debian/control: Fixing the library reference of libindicate-gtk-dev
-
-2009-08-04 10:52:00 +0100 Ted Gould (96ace70f)
-
- * releasing version 0.2.0~bzr319-0ubuntu1~ppa2
-
-2009-08-04 10:51:33 +0100 Ted Gould (64034dda)
-
- * Forgot to autogen.sh
-
-2009-08-04 10:27:44 +0100 Ted Gould (541c9b2a)
-
- * releasing version 0.2.0~bzr319-0ubuntu1~ppa1
-
-2009-08-04 10:27:27 +0100 Ted Gould (dd164ac0)
-
- * Setting up the merge history correctly.
-
-2009-08-04 10:27:08 +0100 Ted Gould (5909ee41)
-
- * * Merging in upstream code to split out libindicate-gtk *
+ (cb9d427)
+
+2009-08-04 Ted Gould
+
+ * releasing version 0.2.0~bzr319-0ubuntu1~ppa4 (42ba02f)
+ * Upstream fix to PC file. (c495a62)
+ * Update the pc file from the GTK split out. (e4ac1dc)
+ * releasing version 0.2.0~bzr319-0ubuntu1~ppa3 (72093e2)
+ * debian/control: Fixing the library reference of libindicate-gtk-dev
+ (41c535b)
+ * releasing version 0.2.0~bzr319-0ubuntu1~ppa2 (96ace70)
+ * Forgot to autogen.sh (64034dd)
+ * releasing version 0.2.0~bzr319-0ubuntu1~ppa1 (541c9b2)
+ * Setting up the merge history correctly. (dd164ac)
+ * Merging in upstream code to split out libindicate-gt.
debian/control: * Changing the version number of
libindcate to 2 to match the .so numbering. *
- Creating packages for libindicate-gtk * Added
- libindicate-gtk-dev.install and libindicate-gtk0.install
- for the new library. * Renamed libindicate1.install to
- libindicate2.install to match the package name change. *
+ Creating packages for libindicate-gtk; Added
+ libindicate-gtk-dev.install and libindicate-gtk0.install
+ for the new library.; Renamed libindicate1.install to
+ libindicate2.install to match the package name change.
Modified libindicate-dev to be more specific about the
- header files that it grabs.
-
-2009-08-04 10:24:51 +0100 Ted Gould (74bc54ca)
-
- * Merging in the splitout of a GTK version of the lib
-
-2009-08-04 01:38:29 +0100 Ted Gould (63ed0ba9)
-
- * releasing version 0.2.0~bzr309-0ubuntu4~ppa2
-
-2009-08-04 01:36:30 +0100 Ted Gould (54b4e00a)
-
- * debian/control: Fixing some libindicate1's that should be
+ header files that it grabs. (5909ee4)
+ * Merging in the splitout of a GTK version of the lib (74bc54c)
+ * releasing version 0.2.0~bzr309-0ubuntu4~ppa2 (63ed0ba)
+ * debian/control: Fixing some libindicate1's that should be
libindicate2 and making everything dependent on the
- versions that are built here in the package.
-
-2009-08-04 01:31:34 +0100 Ted Gould (be06bcb9)
-
- * releasing version 0.2.0~bzr309-0ubuntu4~ppa1
-
-2009-08-04 01:26:31 +0100 Ted Gould (6401c45b)
-
- * Adding in a make fix
-
-2009-08-04 01:26:10 +0100 Ted Gould (16b15aa9)
-
- * Adding libindicate a build include
-
-2009-08-04 00:32:09 +0100 Ted Gould (8bed775c)
-
- * * Added libindicate-gtk-dev.install and libindicate-gtk0.install
- for the new library. * Renamed libindicate1.install to
- libindicate2.install to match the package name change. *
+ versions that are built here in the package. (54b4e00)
+ * releasing version 0.2.0~bzr309-0ubuntu4~ppa1 (be06bcb)
+ * Adding in a make fix (6401c45)
+ * Adding libindicate a build include (16b15aa)
+ * Added libindicate-gtk-dev.install and libindicate-gtk0.install
+ for the new library.; Renamed libindicate1.install to
+ libindicate2.install to match the package name change.
Modified libindicate-dev to be more specific about the
- header files that it grabs.
-
-2009-08-04 00:27:09 +0100 Ted Gould (84f00026)
-
- * * debian/control: * Changing the version number of libindcate to
+ header files that it grabs. (8bed775)
+ * debian/control: * Changing the version number of libindcate to
2 to match the .so numbering. * Creating packages
- for libindicate-gtk
-
-2009-08-04 00:23:05 +0100 Ted Gould (a1fa7baf)
-
- * Merging in upstream code to split out libindicate-gtk
-
-2009-08-04 00:18:10 +0100 Ted Gould (475cf3d1)
-
- * Removing some more noise
-
-2009-08-04 00:14:37 +0100 Ted Gould (2b415942)
-
- * Ignoring the tarball
-
-2009-08-04 00:10:35 +0100 Ted Gould (34baaeca)
-
- * Ignoring the right file
-
-2009-08-04 00:08:51 +0100 Ted Gould (c3034d9d)
-
- * Making seperate versioning for libindicate-gtk
-
-2009-08-04 00:06:00 +0100 Ted Gould (b31efb27)
-
- * Bumping the version as we removed a function.
-
-2009-08-04 00:01:06 +0100 Ted Gould (8850baa1)
-
- * A bunch of distcheck fixes to clean things up
-
-2009-08-03 23:53:40 +0100 Ted Gould (34975226)
-
- * Some odd change
-
-2009-08-03 23:53:17 +0100 Ted Gould (3ec1d88a)
-
- * Last libgtk-pixbuf header
-
-2009-08-03 23:52:48 +0100 Ted Gould (8c7a1a7b)
-
- * Removing GTK dependencies from the libindicate stuff
-
-2009-08-03 23:49:42 +0100 Ted Gould (d94f22ad)
-
- * Fixing these guys to include the -gtk library where needed
-
-2009-08-03 23:45:34 +0100 Ted Gould (f6fb98db)
-
- * Some ignore files for fun
-
-2009-08-03 23:43:37 +0100 Ted Gould (793db0f0)
-
- * Oops, forgot the listener stuff
-
-2009-08-03 23:31:00 +0100 Ted Gould (78ad4c46)
-
- * Moving the listener code and some indicator code into
- libindicate-gtk
-
-2009-08-03 19:25:05 +0100 Ted Gould (840e1c8b)
-
- * Okay, now it is the offending function in it.
-
-2009-08-03 19:10:34 +0100 Ted Gould (ecde85f5)
-
- * Creating a default little GTK library to move the GTK stuff in
-
-2009-08-03 18:50:57 +0100 Ted Gould (b3d3f3de)
-
- * Adding a function to set the server of the indicator upon creation.
- indicate_indicator_new_with_server()
-
-2009-08-03 18:12:34 +0100 Ted Gould (573c458e)
-
- * Merging in changes to the destroy and removing a warning.
-
-2009-08-03 18:08:22 +0100 Ted Gould (f3443748)
-
- * Ignoring built files
-
-2009-07-27 17:20:24 +0200 Aurelien Gateau (7f379d5d)
-
- * Removed warning: it's annoying in unittests.
-
-2009-07-27 17:18:41 +0200 Aurelien Gateau (8157a2c4)
-
- * Destroy dbus proxies in listener finalize.
-
-2009-07-21 11:41:46 -0500 Ted Gould (53908231)
-
- * Fixing the other signal marshallers
-
-2009-07-21 11:39:26 -0500 Ted Gould (b8b2c52d)
-
- * Using the server marshaller
-
-2009-07-21 11:37:51 -0500 Ted Gould (5cbbca20)
-
- * Creating the server marshallers that we need
-
-2009-07-21 10:42:36 -0500 Ted Gould (e3a0b5a8)
-
- * Oops, we shouldn't have a prototype for a function that doesn't
- exist. Thanks to Aurilien.
-
-2009-07-17 21:24:56 -0500 Ted Gould (064740bd)
-
- * releasing version 0.2.0~bzr309-0ubuntu3
-
-2009-07-17 21:24:31 -0500 Ted Gould (61730d0a)
-
- * Now moving on to Karmic
-
-2009-07-17 21:24:00 -0500 Ted Gould (c594f600)
-
- * releasing version 0.2.0~bzr309-0ubuntu2
-
-2009-07-03 14:42:38 -0500 Ted Gould (049947b2)
-
- * Configure change to cleanup output
-
-2009-07-03 14:41:48 -0500 Ted Gould (78678854)
-
- * A little like mentioned on the GNOME Wiki, but doesn't work until I
+ for libindicate-gtk (84f0002)
+ * Merging in upstream code to split out libindicate-gtk (a1fa7ba)
+ * Removing some more noise (475cf3d)
+ * Ignoring the tarball (2b41594)
+ * Ignoring the right file (34baaec)
+ * Making seperate versioning for libindicate-gtk (c3034d9)
+ * Bumping the version as we removed a function. (b31efb2)
+ * A bunch of distcheck fixes to clean things up (8850baa)
+
+2009-08-03 Ted Gould
+
+ * Some odd change (3497522)
+ * Last libgtk-pixbuf header (3ec1d88)
+ * Removing GTK dependencies from the libindicate stuff (8c7a1a7)
+ * Fixing these guys to include the -gtk library where needed
+ (d94f22a)
+ * Some ignore files for fun (f6fb98d)
+ * Oops, forgot the listener stuff (793db0f)
+ * Moving the listener code and some indicator code into
+ libindicate-gtk (78ad4c4)
+ * Okay, now it is the offending function in it. (840e1c8)
+ * Creating a default little GTK library to move the GTK stuff in
+ (ecde85f)
+ * Adding a function to set the server of the indicator upon creation.
+ indicate_indicator_new_with_server() (b3d3f3d)
+ * Merging in changes to the destroy and removing a warning. (573c458)
+ * Ignoring built files (f344374)
+
+2009-07-27 Aurelien Gateau
+
+ * Removed warning: it's annoying in unittests. (7f379d5)
+ * Destroy dbus proxies in listener finalize. (8157a2c)
+
+2009-07-21 Ted Gould
+
+ * Fixing the other signal marshallers (5390823)
+ * Using the server marshaller (b8b2c52)
+ * Creating the server marshallers that we need (5cbbca2)
+ * Oops, we shouldn't have a prototype for a function that doesn't
+ exist. Thanks to Aurilien. (e3a0b5a)
+
+2009-07-17 Ted Gould
+
+ * releasing version 0.2.0~bzr309-0ubuntu3 (064740b)
+ * Now moving on to Karmic (61730d0)
+ * releasing version 0.2.0~bzr309-0ubuntu2 (c594f60)
+
+2009-07-03 Ted Gould
+
+ * Configure change to cleanup output (049947b)
+ * A little like mentioned on the GNOME Wiki, but doesn't work until I
have a higher version of automake. Doesn't seem to cause
- problems though.
+ problems though. (7867885)
-2009-06-08 09:31:48 -0500 Ted Gould (63dad6a7)
+2009-06-08 Ted Gould
- * Patch from Mark Trompell to make suffix checking better.
+ * Patch from Mark Trompell to make suffix checking better. (63dad6a)
-2009-05-13 15:01:34 -0500 Ted Gould (aee89144)
+2009-05-13 Ted Gould
- * debian/control, debian/libindicate-doc.install: Merging in Ken
+ * debian/control, debian/libindicate-doc.install: Merging in Ken
Vandine's work on making a -doc package for libindicate.
-
-2009-05-13 14:52:04 -0400 Ken VanDine (f36cc1b4)
-
- * added debian/libindicate-doc.install
-
-2009-05-13 13:25:33 -0400 Ken VanDine (10e51643)
-
- * Added package libindicate-doc and removed dbus-test-runner build
- requirement
-
-2009-05-05 16:45:01 +0100 Ted Gould (e38da9b0)
-
- * Merge from upstream, includes documentation.
-
-2009-05-05 16:43:20 +0100 Ted Gould (7926d56f)
-
- * Merging in the documentation branch.
-
-2009-04-30 22:30:15 -0500 Ted Gould (1b3fd924)
-
- * Never understand this file really.
-
-2009-04-30 22:30:04 -0500 Ted Gould (395ae9ad)
-
- * Fixing function listing
-
-2009-04-30 22:29:44 -0500 Ted Gould (c027c7f3)
-
- * Fixing typo
-
-2009-04-30 21:45:19 -0500 Ted Gould (3810da4b)
-
- * Fixing some documentation bugs.
-
-2009-04-30 21:42:39 -0500 Ted Gould (51f63e11)
-
- * Documenting most of the public visible functions
-
-2009-04-30 20:58:42 -0500 Ted Gould (1595ee29)
-
- * Adding in arguments for the signals
-
-2009-04-30 20:53:10 -0500 Ted Gould (f64bd737)
-
- * Adding in arguments on the signal docs.
-
-2009-04-30 20:44:43 -0500 Ted Gould (dbfd181e)
-
- * Woot, signal documentation works now.
-
-2009-04-30 20:37:52 -0500 Ted Gould (15720aae)
-
- * Basic signals docs.
-
-2009-04-30 20:24:53 -0500 Ted Gould (f4a1e462)
-
- * Server section documentation.
-
-2009-04-30 20:17:52 -0500 Ted Gould (a1ba880a)
-
- * Comments for the class, who put all those functions on there...
-
-2009-04-30 16:57:51 -0500 Ted Gould (933bcaaa)
-
- * Adding in message documentation and cleaning up some mistakes as I
- see them.
-
-2009-04-30 16:04:09 -0500 Ted Gould (298abb13)
-
- * Never understand this file
-
-2009-04-30 16:03:42 -0500 Ted Gould (ef5a4ba6)
-
- * Doing a better job about defining out the documentation gets
- created and looks. Much cleaner.
-
-2009-04-30 15:50:27 -0500 Ted Gould (0b5e0c1c)
-
- * Breaking out into sections.
-
-2009-04-30 15:40:06 -0500 Ted Gould (a77a8085)
-
- * Section information
-
-2009-04-30 15:16:47 -0500 Ted Gould (cd973f18)
-
- * Adding to the unused side of things.
-
-2009-04-30 15:16:06 -0500 Ted Gould (6a4918e6)
-
- * Removing the big defines that aren't useful and the boilerplate
- get_type functions.
-
-2009-04-30 15:12:37 -0500 Ted Gould (d73f65f2)
-
- * Reformatting to make gtk-doc happy.
-
-2009-04-30 14:35:30 -0500 Ted Gould (9201eb6c)
-
- * Making it more like English and less like a pointer table.
-
-2009-04-30 14:29:40 -0500 Ted Gould (877ac7aa)
-
- * Adding in IndicateIndicatorClass documentation.
-
-2009-04-30 14:10:41 -0500 Ted Gould (dd49cd3d)
-
- * What is the server
-
-2009-04-30 14:10:33 -0500 Ted Gould (47c4b8e7)
-
- * Typo
-
-2009-04-30 14:06:45 -0500 Ted Gould (43f575ee)
-
- * Getting most of the indicator documentation in the pool.
-
-2009-04-30 13:07:29 -0500 Ted Gould (1c91e431)
-
- * Turns out that gtk-doc can't have the name of the function on the
+ (aee8914)
+
+2009-05-13 Ken VanDine
+
+ * added debian/libindicate-doc.install (f36cc1b)
+ * Added package libindicate-doc and removed dbus-test-runner build
+ requirement (10e5164)
+
+2009-05-05 Ted Gould
+
+ * Merge from upstream, includes documentation. (e38da9b)
+ * Merging in the documentation branch. (7926d56)
+
+2009-04-30 Ted Gould
+
+ * Never understand this file really. (1b3fd92)
+ * Fixing function listing (395ae9a)
+ * Fixing typo (c027c7f)
+ * Fixing some documentation bugs. (3810da4)
+ * Documenting most of the public visible functions (51f63e1)
+ * Adding in arguments for the signals (1595ee2)
+ * Adding in arguments on the signal docs. (f64bd73)
+ * Woot, signal documentation works now. (dbfd181)
+ * Basic signals docs. (15720aa)
+ * Server section documentation. (f4a1e46)
+ * Comments for the class, who put all those functions on there...
+ (a1ba880)
+ * Adding in message documentation and cleaning up some mistakes as I
+ see them. (933bcaa)
+ * Never understand this file (298abb1)
+ * Doing a better job about defining out the documentation gets
+ created and looks. Much cleaner. (ef5a4ba)
+ * Breaking out into sections. (0b5e0c1)
+ * Section information (a77a808)
+ * Adding to the unused side of things. (cd973f1)
+ * Removing the big defines that aren't useful and the boilerplate
+ get_type functions. (6a4918e)
+ * Reformatting to make gtk-doc happy. (d73f65f)
+ * Making it more like English and less like a pointer table.
+ (9201eb6)
+ * Adding in IndicateIndicatorClass documentation. (877ac7a)
+ * What is the server (dd49cd3)
+ * Typo (47c4b8e)
+ * Getting most of the indicator documentation in the pool. (43f575e)
+ * Turns out that gtk-doc can't have the name of the function on the
same line as the start of the comment. How stupid.
-
-2009-04-30 12:08:32 -0500 Ted Gould (a41eab6f)
-
- * Removing symbols that shouldn't be in the docs anyway.
-
-2009-04-30 12:04:20 -0500 Ted Gould (73a5c924)
-
- * Ignoring the dbus and glib-marshaller generated header files.
-
-2009-04-30 11:51:46 -0500 Ted Gould (f62b8365)
-
- * Dispaly typo
-
-2009-04-30 11:40:56 -0500 Ted Gould (c73af692)
-
- * First pass at trying to create some function documentation for
- Indicator
-
-2009-04-29 10:11:52 -0500 Ted Gould (0ed07490)
-
- * Patch from Niel Patel to close the directory after opening it.
-
-2009-04-29 10:11:21 -0500 Ted Gould (89235a43)
-
- * Patch from Niel Patel to close the directory after opening it.
-
-2009-04-27 11:06:50 -0500 Ted Gould (f6767c86)
-
- * releasing version 0.2.0~bzr307-0ubuntu2
-
-2009-04-27 11:06:42 -0500 Ted Gould (f6f7c274)
-
- * Increment for PPA. Forgot to autogen.sh
-
-2009-04-27 10:52:33 -0500 Ted Gould (d8582f74)
-
- * releasing version 0.2.0~bzr307-0ubuntu1
-
-2009-04-27 10:51:25 -0500 Ted Gould (60e4ddeb)
-
- * debian/control: Adding a build-dep on dbus-test-runner
-
-2009-04-27 10:50:40 -0500 Ted Gould (73e576b1)
-
- * Upstream Snapshot: Adding in a test suite.
-
-2009-04-27 10:48:38 -0500 Ted Gould (0f174a8a)
-
- * How important a simple backslash is :)
-
-2009-04-27 10:42:39 -0500 Ted Gould (d2d0c7aa)
-
- * Merging in the testing branch to get some tests for this guy
-
-2009-04-27 10:39:20 -0500 Ted Gould (5899a3f2)
-
- * Switching to system dbus-test-runner
-
-2009-04-22 23:46:48 -0500 Ted Gould (183d218f)
-
- * releasing version 0.2.0~bzr305-0ubuntu1
-
-2009-04-22 23:46:23 -0500 Ted Gould (fd65e073)
-
- * Upstream update
-
-2009-04-22 23:44:06 -0500 Ted Gould (c292100a)
-
- * Get the submenu set right.
-
-2009-04-22 22:06:00 -0500 Ted Gould (2f6ccdfe)
-
- * Slipping in the hbox
-
-2009-04-22 22:02:05 -0500 Ted Gould (d075aeec)
-
- * Oops, cut and paste error, pulling up the wrong symbols
-
-2009-04-22 17:09:11 -0500 Ted Gould (e1eb7c8f)
-
- * releasing version 0.2.0~bzr302-0ubuntu1
-
-2009-04-22 17:09:03 -0500 Ted Gould (836e2659)
-
- * Upstream snapshot, turning version getting feature into a function
- and adding a name symbol outline.
-
-2009-04-22 17:08:17 -0500 Ted Gould (18397c82)
-
- * Turning versions into a function and adding a name symbol. Not yet
- used though.
-
-2009-04-22 15:56:02 -0500 Ted Gould (f5044ea6)
-
- * releasing version 0.2.0~bzr301-0ubuntu1
-
-2009-04-22 15:55:50 -0500 Ted Gould (2c0d0d84)
-
- * Upstream snapshot, fixing indicator.h
-
-2009-04-22 15:53:30 -0500 Ted Gould (ef4bfdeb)
-
- * Wow, the genius of making a symbol you want to export static is
+ (1c91e43)
+ * Removing symbols that shouldn't be in the docs anyway. (a41eab6)
+ * Ignoring the dbus and glib-marshaller generated header files.
+ (73a5c92)
+ * Dispaly typo (f62b836)
+ * First pass at trying to create some function documentation for
+ Indicator (c73af69)
+
+2009-04-29 Ted Gould
+
+ * Patch from Niel Patel to close the directory after opening it.
+ (0ed0749)
+ * Patch from Niel Patel to close the directory after opening it.
+ (89235a4)
+
+2009-04-27 Ted Gould
+
+ * releasing version 0.2.0~bzr307-0ubuntu2 (f6767c8)
+ * Increment for PPA. Forgot to autogen.sh (f6f7c27)
+ * releasing version 0.2.0~bzr307-0ubuntu1 (d8582f7)
+ * debian/control: Adding a build-dep on dbus-test-runner (60e4dde)
+ * Upstream Snapshot: Adding in a test suite. (73e576b)
+ * How important a simple backslash is :) (0f174a8)
+ * Merging in the testing branch to get some tests for this guy
+ (d2d0c7a)
+ * Switching to system dbus-test-runner (5899a3f)
+
+2009-04-22 Ted Gould
+
+ * releasing version 0.2.0~bzr305-0ubuntu1 (183d218)
+ * Upstream update (fd65e07)
+ * Get the submenu set right. (c292100)
+ * Slipping in the hbox (2f6ccdf)
+ * Oops, cut and paste error, pulling up the wrong symbols (d075aee)
+ * releasing version 0.2.0~bzr302-0ubuntu1 (e1eb7c8)
+ * Upstream snapshot, turning version getting feature into a function
+ and adding a name symbol outline. (836e265)
+ * Turning versions into a function and adding a name symbol. Not yet
+ used though. (18397c8)
+ * releasing version 0.2.0~bzr301-0ubuntu1 (f5044ea)
+ * Upstream snapshot, fixing indicator.h (2c0d0d8)
+ * Wow, the genius of making a symbol you want to export static is
simply amazing. It's truly a wonder of nature that I can
- tie my shoes in the morning.
-
-2009-04-22 15:23:20 -0500 Ted Gould (adfd764d)
-
- * releasing version 0.2.0~bzr300-0ubuntu1
-
-2009-04-22 15:23:13 -0500 Ted Gould (fded83b0)
-
- * Upstream snapshot, fixing indicator.h
-
-2009-04-22 15:22:14 -0500 Ted Gould (c0b1f48f)
-
- * Oops, not what I wanted. These should have been prototypes not
+ tie my shoes in the morning. (ef4bfde)
+ * releasing version 0.2.0~bzr300-0ubuntu1 (adfd764)
+ * Upstream snapshot, fixing indicator.h (fded83b)
+ * Oops, not what I wanted. These should have been prototypes not
global variables. Takes a second to think about it, but
- yeah, that's what they were.
-
-2009-04-22 14:52:19 -0500 Ted Gould (d332ad5b)
-
- * releasing version 0.2.0~bzr299-0ubuntu1
-
-2009-04-22 14:49:27 -0500 Ted Gould (180822b6)
-
- * Upstream snapshot, forgot a + on GTK
-
-2009-04-22 14:48:36 -0500 Ted Gould (20cfaa9c)
+ yeah, that's what they were. (c0b1f48)
+ * releasing version 0.2.0~bzr299-0ubuntu1 (d332ad5)
+ * Upstream snapshot, forgot a + on GTK (180822b)
+ * Forgot a + on gtk (20cfaa9)
- * Forgot a + on gtk
+2009-04-21 Ted Gould
-2009-04-21 22:31:30 -0500 Ted Gould (a3806780)
-
- * releasing version 0.2.0~bzr298-0ubuntu1
-
-2009-04-21 20:45:05 -0500 Ted Gould (74a29536)
-
- * * debian/control: * Add in package libindicator-dev * Add build
- depends on libxml2-dev for upstream dep
-
-2009-04-21 20:42:26 -0500 Ted Gould (6465b8b7)
-
- * * debian/control: Add in package libindicator-dev *
+ * releasing version 0.2.0~bzr298-0ubuntu1 (a380678)
+ * debian/control: * Add in package libindicator-dev * Add build
+ depends on libxml2-dev for upstream dep (74a2953)
+ * debian/control: Add in package libindicator-de.
debian/libindicate-dev.install: Add greater specificity on
what gets installed to not get confused with files from
- libindicator * debian/libindicator-dev.install: Specify
+ libindicator; debian/libindicator-dev.install: Specify
which files should be put into the development package.
-
-2009-04-21 17:07:21 -0500 Ted Gould (b630f123)
-
- * Upstream snapshot
-
-2009-04-21 17:05:44 -0500 Ted Gould (65381a49)
-
- * Release by core-dev into Ubuntu
-
-2009-04-21 15:14:52 -0500 Ted Gould (8c6656e5)
-
- * Changing to an icon and a lable and building our own item
-
-2009-04-21 15:01:19 -0500 Ted Gould (ae268928)
-
- * Putting in and checking version information to ensure we all agree
- about the header version
-
-2009-04-21 14:49:57 -0500 Ted Gould (4023d350)
-
- * Fixing and using the new indicator header. This will help to
+ (6465b8b)
+ * Upstream snapshot (b630f12)
+ * Release by core-dev into Ubuntu (65381a4)
+ * Changing to an icon and a lable and building our own item (8c6656e)
+ * Putting in and checking version information to ensure we all agree
+ about the header version (ae26892)
+ * Fixing and using the new indicator header. This will help to
connect things together and make them actually work in a
- reasonably type safe way.
-
-2009-04-21 14:35:49 -0500 Ted Gould (b0c9eb5b)
-
- * Moving the indicators directory to match libindicator
-
-2009-04-21 14:34:19 -0500 Ted Gould (292b04ef)
-
- * Setting the indicators directory manually
-
-2009-04-21 14:15:22 -0500 Ted Gould (61bc03af)
-
- * Creating an indicator lib to make sure we can attach all these
- things together.
-
-2009-04-20 15:39:42 -0500 Ted Gould (6f87e9c0)
-
- * Adding a test to build a bunch of indicators
-
-2009-04-20 14:44:25 -0500 Ted Gould (ecad1e36)
-
- * Adding in multiple servers connecting in to declare interest test
-
-2009-04-20 13:16:14 -0500 Ted Gould (c5cc32d7)
-
- * Expanding range of interest test and not checking to see if we got
- none, we shouldn't get it.
-
-2009-04-20 13:13:04 -0500 Ted Gould (76d5d0d2)
-
- * Gaurding against setting bad interests
-
-2009-04-20 12:36:07 -0500 Ted Gould (38c6ce2a)
-
- * Adding an interests test
-
-2009-04-20 12:16:33 -0500 Ted Gould (443c83ab)
-
- * Woot, now we do distcheck too
-
-2009-04-20 12:11:19 -0500 Ted Gould (5f5f476f)
-
- * Distcheck fixes
-
-2009-04-20 12:10:58 -0500 Ted Gould (43cf92a1)
-
- * Chaning the include so that it works for make distcheck
-
-2009-04-20 11:25:33 -0500 Ted Gould (8162f719)
-
- * Adding in a simple test
-
-2009-04-20 10:57:57 -0500 Ted Gould (ecfb1c26)
-
- * Build infrastructure for first test
-
-2009-04-20 09:34:10 -0500 Ted Gould (a1ccd1a9)
-
- * Moving tests to examples
-
-2009-04-14 11:36:17 +0200 Martin Pitt (d10264bc)
-
- * releasing version 0.1.6-0ubuntu1
-
-2009-04-14 11:36:10 +0200 Martin Pitt (4959fae2)
-
- * * New upstream version * Applied the same fixes as Cody Russell's
+ reasonably type safe way. (4023d35)
+ * Moving the indicators directory to match libindicator (b0c9eb5)
+ * Setting the indicators directory manually (292b04e)
+ * Creating an indicator lib to make sure we can attach all these
+ things together. (61bc03a)
+
+2009-04-20 Ted Gould
+
+ * Adding a test to build a bunch of indicators (6f87e9c)
+ * Adding in multiple servers connecting in to declare interest test
+ (ecad1e3)
+ * Expanding range of interest test and not checking to see if we got
+ none, we shouldn't get it. (c5cc32d)
+ * Gaurding against setting bad interests (76d5d0d)
+ * Adding an interests test (38c6ce2)
+ * Woot, now we do distcheck too (443c83a)
+ * Distcheck fixes (5f5f476)
+ * Chaning the include so that it works for make distcheck (43cf92a)
+ * Adding in a simple test (8162f71)
+ * Build infrastructure for first test (ecfb1c2)
+ * Moving tests to examples (a1ccd1a)
+
+2009-04-14 Martin Pitt
+
+ * releasing version 0.1.6-0ubuntu1 (d10264b)
+ * New upstream version * Applied the same fixes as Cody Russell's
patch to indicator-messages to the finalize functions
here. Should fix LP: #359018 completely. * Minor
- warnings fixes in search of solution to above.
+ warnings fixes in search of solution to above. (4959fae)
-2009-04-13 14:52:22 -0500 Ted Gould (8270f151)
+2009-04-13 Ted Gould
- * Adding in support for finding out if people are interesting on the
+ * Adding in support for finding out if people are interesting on the
bus using introspection instead of sending a random
- function call to them and seeing what happens.
-
-2009-04-13 14:47:35 -0500 Ted Gould (e32b37d0)
-
- * Commenting out some debug messages
-
-2009-04-13 14:41:33 -0500 Ted Gould (46a050c2)
-
- * Less debug
-
-2009-04-13 14:16:25 -0500 Ted Gould (135906b4)
-
- * Ah, a typo. Bother.
-
-2009-04-13 14:15:01 -0500 Ted Gould (dec69be3)
-
- * Okay, connected into that other there code... let's see what
- happens.
-
-2009-04-13 14:07:46 -0500 Ted Gould (24e268d1)
-
- * Fleshing out some
-
-2009-04-13 13:30:31 -0500 Ted Gould (bde7e27a)
-
- * Whoa, it like builds and stuff
-
-2009-04-13 11:54:33 -0500 Ted Gould (2edf3fb9)
-
- * Fixes to the finalize functions.
-
-2009-04-13 11:31:28 -0500 Ted Gould (cb60d3fd)
-
- * * New upstream version * Applied the same fixes as Cody Russell's
+ function call to them and seeing what happens. (8270f15)
+ * Commenting out some debug messages (e32b37d)
+ * Less debug (46a050c)
+ * Ah, a typo. Bother. (135906b)
+ * Okay, connected into that other there code... let's see what
+ happens. (dec69be)
+ * Fleshing out some (24e268d)
+ * Whoa, it like builds and stuff (bde7e27)
+ * Fixes to the finalize functions. (2edf3fb)
+ * New upstream version * Applied the same fixes as Cody Russell's
patch to indicator-messages to the finalize functions
here. Should fix LP: #359018 completely. * Minor
- warnings fixes in search of solution to above.
-
-2009-04-13 11:29:13 -0500 Ted Gould (61ded01c)
-
- * Merging in core-dev
-
-2009-04-13 10:56:39 -0500 Ted Gould (70223e1d)
-
- * Making into a 6 (tag: 0.1.6)
-
-2009-04-13 10:30:28 -0500 Ted Gould (f7dc7fa8)
-
- * Adding a bug number
-
-2009-04-13 10:09:20 -0500 Ted Gould (f0fa474c)
-
- * Adding in call to the parent class' finalize function as well, this
- should free all the way up to the top.
-
-2009-04-12 21:55:06 -0500 Ted Gould (a1207dc3)
-
- * Updating from trunk
-
-2009-04-12 21:42:30 -0500 Ted Gould (e9ef5ec7)
-
- * Some slight code cleanups to remove warnings
-
-2009-04-12 21:41:48 -0500 Ted Gould (ce664599)
+ warnings fixes in search of solution to above. (cb60d3f)
+ * Merging in core-dev (61ded01)
+ * Making into a 6 (70223e1) (tag: 0.1.6)
+ * Adding a bug number (f7dc7fa)
+ * Adding in call to the parent class' finalize function as well, this
+ should free all the way up to the top. (f0fa474)
- * Proto-pseudo-code for the introspection functions that are going to
- be needed
+2009-04-12 Ted Gould
-2009-04-11 23:07:38 -0500 Ted Gould (a09510f6)
+ * Updating from trunk (a1207dc)
+ * Some slight code cleanups to remove warnings (e9ef5ec)
+ * Proto-pseudo-code for the introspection functions that are going to
+ be needed (ce66459)
- * Fixing some pedantic little bugs to try and figure out what's
- causing 359018
+2009-04-11 Ted Gould
-2009-04-10 15:51:26 -0500 Ted Gould (20836b86)
+ * Fixing some pedantic little bugs to try and figure out what's
+ causing 359018 (a09510f)
- * Adding in libxml linking
+2009-04-10 Ted Gould
-2009-04-10 14:33:59 -0500 Ted Gould (551a97c2)
+ * Adding in libxml linking (20836b8)
+ * Dummy to put bug number in. (551a97c)
+ * Create the virtual function for checking interest. (f4bfa1f)
+ * Merging in Eitan's gtype-ify of the enums and the
+ IndicateListener... objects. (28e006b)
+ * Marking the dev branch as such. (70697a6)
- * Dummy to put bug number in.
+2009-04-10 Eitan Isaacson
-2009-04-10 14:32:37 -0500 Ted Gould (f4bfa1ff)
+ * gtypify IndicateListenerIndicator (bcdeb13)
+ * changed IndicateListenerServer to a gtyped pointer instead of a
+ gboxed. (a3188d2)
- * Create the virtual function for checking interest.
+2009-04-08 Eitan Isaacson
-2009-04-10 14:19:31 -0500 Ted Gould (28e006b9)
+ * Changed marshallers to GBoxed for IndicatorListenerServer. Make
+ copy/free functions empty for now. (8f4019b)
+ * GBoxed IndicateListenerServer (a300f6c)
+ * gtypified the interests enum. (0307775)
- * Merging in Eitan's gtype-ify of the enums and the
- IndicateListener... objects.
+2009-04-08 seb128
-2009-04-10 14:07:43 -0500 Ted Gould (70697a6c)
+ * releasing version 0.1.5-0ubuntu1 (df604ba)
- * Marking the dev branch as such.
+2009-04-07 Ted Gould
-2009-04-10 13:16:39 +0300 Eitan Isaacson (bcdeb139)
-
- * gtypify IndicateListenerIndicator
-
-2009-04-10 12:51:16 +0300 Eitan Isaacson (a3188d21)
-
- * changed IndicateListenerServer to a gtyped pointer instead of a
- gboxed.
-
-2009-04-08 18:14:27 +0300 Eitan Isaacson (8f4019b3)
-
- * Changed marshallers to GBoxed for IndicatorListenerServer. Make
- copy/free functions empty for now.
-
-2009-04-08 16:47:46 +0300 Eitan Isaacson (a300f6cd)
-
- * GBoxed IndicateListenerServer
-
-2009-04-08 14:25:50 +0300 Eitan Isaacson (03077752)
-
- * gtypified the interests enum.
-
-2009-04-08 10:57:41 +0200 seb128 (df604ba7)
-
- * releasing version 0.1.5-0ubuntu1
-
-2009-04-07 23:08:20 -0500 Ted Gould (746b6aa3)
-
- * Cleaning up changelog
-
-2009-04-07 23:07:04 -0500 Ted Gould (198fee29)
-
- * Merging in core-dev branch
-
-2009-04-07 22:26:07 -0500 Ted Gould (2ffebacd)
-
- * Explicitly sets the about window's window icon. (LP: #356437)
-
-2009-04-07 22:25:24 -0500 Ted Gould (a8ab75df)
-
- * Lots of fixes from trunk
-
-2009-04-07 22:22:53 -0500 Ted Gould (c1955c5c)
-
- * Added in an 'icon-name' to make the about dialog have a proper
- icon. (tag: 0.1.5)
-
-2009-04-07 22:17:11 -0500 Ted Gould (13aa4e53)
-
- * on both client and server side. (LP: #353112) * Makes it so that
+ * Cleaning up changelog (746b6aa)
+ * Merging in core-dev branch (198fee2)
+ * Explicitly sets the about window's window icon. (LP: #356437)
+ (2ffebac)
+ * Lots of fixes from trunk (a8ab75d)
+ * Added in an 'icon-name' to make the about dialog have a proper
+ icon. (c1955c5) (tag: 0.1.5)
+ * on both client and server side. (LP: #353112); Makes it so that
all objects down to the menu now use the gtkstyle naming
from FUSA to ensure that they all pick up the theme hacks
- that are set for FUSA. (LP: #334490)
-
-2009-04-07 22:12:15 -0500 Ted Gould (b2d85cfc)
-
- * * debian/libindicate0.install changed to
- debian/libindicate1.install * New upstream version: *
+ that are set for FUSA. (LP: #334490) (13aa4e5)
+ * debian/libindicate0.install changed to
+ debian/libindicate1.install; New upstream version: *
Adds new API for detecting interests of various listeners.
Implemented on both client and server side. (LP:
- 353112)
-
-2009-04-07 21:13:07 -0500 Ted Gould (75002ffd)
-
- * Clearing another warning. Shame gdk doesn't do this one for us.
-
-2009-04-07 21:08:27 -0500 Ted Gould (9a7bcf39)
-
- * Patch from Eitan Isaacson to correct prototype. Had to be adjusted
- slightly as the prototypes had moved.
-
-2009-04-07 21:02:08 -0500 Ted Gould (7115f770)
-
- * Ignoring our new test
-
-2009-04-07 20:52:05 -0500 Ted Gould (eba8697a)
-
- * Patch from Eitan Isaacson to remove a ref/unref infinite loop that
- effectively made it so that we kept our objects forever.
+ 353112) (b2d85cf)
+ * Clearing another warning. Shame gdk doesn't do this one for us.
+ (75002ff)
+ * Patch from Eitan Isaacson to correct prototype. Had to be adjusted
+ slightly as the prototypes had moved. (9a7bcf3)
+ * Ignoring our new test (7115f77)
+ * Patch from Eitan Isaacson to remove a ref/unref infinite loop that
+ effectively made it so that we kept our objects forever.
While we love them, at some point we need to say goodbye.
-
-2009-04-07 17:40:25 -0500 Ted Gould (3e1e5126)
-
- * Making it so that we don't register the object twice. This is
- really a work around, but it's atleast fixes the crasher.
+ (eba8697)
+ * Making it so that we don't register the object twice. This is
+ really a work around, but it's atleast fixes the crasher.
Which sucked. We need to work with the dbus folks to make
- this better.
-
-2009-04-07 17:34:45 -0500 Ted Gould (596a5dbe)
-
- * Adding show hide server test from Eitan on bug 351537
-
-2009-04-07 15:45:35 -0500 Ted Gould (0b820c7c)
-
- * Moving the install file.
-
-2009-04-07 11:44:47 -0500 Ted Gould (98d4485b)
-
- * debian/control: Switching libindicate0 to libindicate1 to express
+ this better. (3e1e512)
+ * Adding show hide server test from Eitan on bug 351537 (596a5db)
+ * Moving the install file. (0b820c7)
+ * debian/control: Switching libindicate0 to libindicate1 to express
the fact that the binary compatibility is broken.
-
-2009-04-07 11:43:02 -0500 Ted Gould (7f23e113)
-
- * I finally understood what seb128 told me about the version
+ (98d4485)
+ * I finally understood what seb128 told me about the version
numbering. I feel so stupid for not understanding before
- :)
-
-2009-04-07 10:15:39 -0500 Ted Gould (912a2a1a)
-
- * Hiding some debugging messages.
-
-2009-04-07 10:14:00 -0500 Ted Gould (9bd1519e)
-
- * Simplifying error message
-
-2009-04-06 21:44:50 -0500 Ted Gould (8b71317c)
-
- * Fixes for dev stuff.
-
-2009-04-06 21:42:16 -0500 Ted Gould (42492db6)
-
- * * Some debug messages * Making the comparison of interests detect
- changings properly * Correctly use g_list_remove in
- several cases making for long lists * Using g_list_prepend
- instead of append because it's faster. * Checking whether
- we've got proxies before destroying them.
-
-2009-04-03 15:09:55 -0500 Ted Gould (f252656b)
-
- * Header fixes
-
-2009-04-03 15:09:30 -0500 Ted Gould (5f46d7f6)
-
- * Merge from upstream for header file fixes.
-
-2009-04-03 15:09:06 -0500 Ted Gould (06dd63a3)
-
- * Moving private interests out of the public header file.
-
-2009-04-03 12:50:10 -0500 Ted Gould (76c68f9f)
-
- * Merging in dev stuff. This'll break things.
-
-2009-04-03 12:48:28 -0500 Ted Gould (5e3c75a9)
-
- * Merge in from the Dev branch
-
-2009-04-03 12:47:23 -0500 Ted Gould (05b5aa40)
-
- * Not quite sure how these got added, but I'm not going to fight it.
-
-2009-04-03 12:45:38 -0500 Ted Gould (4f5d2b52)
-
- * Trying to get to a sane state. I apparently don't know as much
- about library versioning as I thought I did.
-
-2009-04-03 12:27:31 -0500 Ted Gould (d93da3d5)
-
- * Hiding all of the functions that part of the DBus interface in that
+ :) (7f23e11)
+ * Hiding some debugging messages. (912a2a1)
+ * Simplifying error message (9bd1519)
+
+2009-04-06 Ted Gould
+
+ * Fixes for dev stuff. (8b71317)
+ * Some debug messages; Making the comparison of interests detect
+ changings properly; Correctly use g_list_remove in
+ several cases making for long lists; Using g_list_prepend
+ instead of append because it's faster.; Checking whether
+ we've got proxies before destroying them. (42492db)
+
+2009-04-03 Ted Gould
+
+ * Header fixes (f252656)
+ * Merge from upstream for header file fixes. (5f46d7f)
+ * Moving private interests out of the public header file. (06dd63a)
+ * Merging in dev stuff. This'll break things. (76c68f9)
+ * Merge in from the Dev branch (5e3c75a)
+ * Not quite sure how these got added, but I'm not going to fight it.
+ (05b5aa4)
+ * Trying to get to a sane state. I apparently don't know as much
+ about library versioning as I thought I did. (4f5d2b5)
+ * Hiding all of the functions that part of the DBus interface in that
now they're all prefixed with '_' so that they don't get
exported as part of the library symbols. This should
simplify everything a little bit for implementors.
-
-2009-04-03 12:14:07 -0500 Ted Gould (eb5078b8)
-
- * Getting rid of everything starting with 'd'. This gets rid of the
+ (d93da3d)
+ * Getting rid of everything starting with 'd'. This gets rid of the
dbus stuff that isn't set up to be static, which is silly.
-
-2009-04-03 11:32:35 -0500 Ted Gould (be4c0025)
-
- * Hiding the marshsallers from the libraries in the symbols by adding
- a _ in front of them.
-
-2009-04-03 11:28:44 -0500 Ted Gould (303c52b3)
-
- * Cleaning up the exported symbols, make sure that 'get_type_cb'
- isn't exported
-
-2009-04-03 10:51:10 -0500 Ted Gould (c9b2fe49)
-
- * Getting to version 0.2.0
-
-2009-04-03 10:49:56 -0500 Ted Gould (68d7bf95)
-
- * Trying to have more style information included so that we can get
- rid of the focus line.
-
-2009-04-03 10:36:10 -0500 Ted Gould (16abe6d5)
-
- * Adding interests on new servers saying that we're displaying the
- indicators and in the server.
-
-2009-04-03 10:22:20 -0500 Ted Gould (96c18839)
-
- * Fleshing out the functions in the listener to set interests.
-
-2009-04-02 16:38:47 -0500 Ted Gould (68fb067b)
-
- * Putting in some protection from crazy values
-
-2009-04-02 16:36:27 -0500 Ted Gould (2f66ceb4)
-
- * Hiding debug
-
-2009-04-02 16:35:38 -0500 Ted Gould (5c9e92e5)
-
- * Adding a bunch of debugging messages and fixing the lifecycle for
+ (eb5078b)
+ * Hiding the marshsallers from the libraries in the symbols by adding
+ a _ in front of them. (be4c002)
+ * Cleaning up the exported symbols, make sure that 'get_type_cb'
+ isn't exported (303c52b)
+ * Getting to version 0.2.0 (c9b2fe4)
+ * Trying to have more style information included so that we can get
+ rid of the focus line. (68d7bf9)
+ * Adding interests on new servers saying that we're displaying the
+ indicators and in the server. (16abe6d)
+ * Fleshing out the functions in the listener to set interests.
+ (96c1883)
+
+2009-04-02 Ted Gould
+
+ * Putting in some protection from crazy values (68fb067)
+ * Hiding debug (2f66ceb)
+ * Adding a bunch of debugging messages and fixing the lifecycle for
the folk pointer. Lots'o'fun. But things seem to be
- working.
-
-2009-04-02 16:12:19 -0500 Ted Gould (68268487)
-
- * Filling in the dbus owner changing code. Now we should catch
- those.
-
-2009-04-02 16:11:34 -0500 Ted Gould (15544254)
-
- * Adding printouts for interest changes.
-
-2009-04-02 15:23:10 -0500 Ted Gould (26bfe1c6)
-
- * Connecting in the DBus messaging that we need.
-
-2009-04-02 14:08:55 -0500 Ted Gould (6e429965)
-
- * Fleshing out the interest setting and removing functions.
-
-2009-04-02 13:35:20 -0500 Ted Gould (aa7ec589)
-
- * Updating unused file
-
-2009-04-02 13:34:40 -0500 Ted Gould (f94b4859)
-
- * Adding in folks support.
-
-2009-04-02 11:34:56 -0500 Ted Gould (1212c8e0)
-
- * Adding the interest removed and interest added signals in.
-
-2009-04-02 11:11:20 -0500 Ted Gould (5ebb3c4f)
-
- * Woot! Now we have some real functions to call!
-
-2009-04-02 11:05:35 -0500 Ted Gould (b8747687)
-
- * I can't believe I messed up this one. Luckily it doesn't seem to
- have caused any bugs. Man.
-
-2009-04-02 10:49:35 -0500 Ted Gould (6e51efbe)
-
- * Switching around the show_interest and remove_interest functions so
+ working. (5c9e92e)
+ * Filling in the dbus owner changing code. Now we should catch
+ those. (6826848)
+ * Adding printouts for interest changes. (1554425)
+ * Connecting in the DBus messaging that we need. (26bfe1c)
+ * Fleshing out the interest setting and removing functions. (6e42996)
+ * Updating unused file (aa7ec58)
+ * Adding in folks support. (f94b485)
+ * Adding the interest removed and interest added signals in.
+ (1212c8e)
+ * Woot! Now we have some real functions to call! (5ebb3c4)
+ * I can't believe I messed up this one. Luckily it doesn't seem to
+ have caused any bugs. Man. (b874768)
+ * Switching around the show_interest and remove_interest functions so
that they are now asyncronous. Not that being
asynchronous is important but more that now they get the
Method Invocation interface that we can use to find out
the sender of the message. Changed various APIs as a
result of this, and moved the DBus functions to be
- internal.
+ internal. (6e51efb)
-2009-04-01 15:54:55 -0500 Ted Gould (58403a8f)
+2009-04-01 Ted Gould
- * Adding new functions show_interest and remove_interest into the
- API. Now to fill in the backend.
-
-2009-04-01 15:27:42 -0500 Ted Gould (966a1e53)
-
- * Adding a remove and show interest
-
-2009-04-01 15:23:31 -0500 Ted Gould (bae37d98)
-
- * Change the API so it's more like we're keeping a list of what, and
+ * Adding new functions show_interest and remove_interest into the
+ API. Now to fill in the backend. (58403a8)
+ * Adding a remove and show interest (966a1e5)
+ * Change the API so it's more like we're keeping a list of what, and
who are interested in. This'll make it easier for us to
- manage all the DBus nastyness.
-
-2009-04-01 14:56:31 -0500 Ted Gould (e6287abd)
-
- * Adding stuff to ignore, much better
-
-2009-04-01 14:50:13 -0500 Ted Gould (7fea958d)
-
- * Misspelling
-
-2009-04-01 14:49:02 -0500 Ted Gould (b76642fa)
-
- * Getting some interests in the game.
-
-2009-04-01 13:21:55 -0500 Ted Gould (589454c1)
-
- * Switch to searching on the connection, which is really what we care
- about and the proxy is a poor sustitute for.
-
-2009-04-01 12:37:24 -0500 Ted Gould (f7bf54ac)
-
- * First pass at the pretty meag-change to make it so that we can
- detect people on the system vs. the session bus.
- Basically reworking a bunch of structures. Fun.
-
-2009-03-30 09:31:49 +0200 Martin Pitt (4134dd03)
-
- * releasing version 0.1.4-0ubuntu1
-
-2009-03-30 09:31:21 +0200 Martin Pitt (1b7e4541)
-
- * * New upstream version * Changing the text in the license box to
+ manage all the DBus nastyness. (bae37d9)
+ * Adding stuff to ignore, much better (e6287ab)
+ * Misspelling (7fea958)
+ * Getting some interests in the game. (b76642f)
+ * Switch to searching on the connection, which is really what we care
+ about and the proxy is a poor sustitute for. (589454c)
+ * First pass at the pretty meag-change to make it so that we can
+ detect people on the system vs. the session bus.
+ Basically reworking a bunch of structures. Fun. (f7bf54a)
+
+2009-03-30 Martin Pitt
+
+ * releasing version 0.1.4-0ubuntu1 (4134dd0)
+ * New upstream version * Changing the text in the license box to
make sense. (LP: #346215) * Call GNOME Program Init to
initialize all of the ATK and gettext stuff that needs
- to be initialized for it all to work. Patch from
+ to be initialized for it all to work. Patch from
Eitan Isaacson. (LP: #349031) * Give the indicator
- applet an ATK name so it can be found by the
- accessibility frameworks. Patch from Eitan Isaacson.
+ applet an ATK name so it can be found by the
+ accessibility frameworks. Patch from Eitan Isaacson.
(LP: #349031) * Making it so the 'No Indicators'
situation uses a label instead of a desensitized menu
item to allow right click through. (LP: #346359) *
@@ -6865,27 +4022,21 @@
translatable. (LP: #349540) * Make sure translations
get loaded and make the 'No Indicators' error and the
license translatable. Patch from Gabor Kelemen. (LP:
- #349998) * debian/control: Adding libgnomeui-dev as a
- dependency as it was added upstream.
+ #349998); debian/control: Adding libgnomeui-dev as a
+ dependency as it was added upstream. (1b7e454)
-2009-03-27 23:42:04 -0500 Ted Gould (9a1d9351)
+2009-03-27 Ted Gould
- * Now in jaunty
-
-2009-03-27 23:39:31 -0500 Ted Gould (3e8de8a4)
-
- * debian/control: Adding libgnomeui-dev as a dependency as it was
- added upstream.
-
-2009-03-27 23:38:21 -0500 Ted Gould (ef07f368)
-
- * * New upstream version * Changing the text in the license box to
+ * Now in jaunty (9a1d935)
+ * debian/control: Adding libgnomeui-dev as a dependency as it was
+ added upstream. (3e8de8a)
+ * New upstream version * Changing the text in the license box to
make sense. (LP: #346215) * Call GNOME Program Init to
initialize all of the ATK and gettext stuff that needs
- to be initialized for it all to work. Patch from
+ to be initialized for it all to work. Patch from
Eitan Isaacson. (LP: #349031) * Give the indicator
- applet an ATK name so it can be found by the
- accessibility frameworks. Patch from Eitan Isaacson.
+ applet an ATK name so it can be found by the
+ accessibility frameworks. Patch from Eitan Isaacson.
(LP: #349031) * Making it so the 'No Indicators'
situation uses a label instead of a desensitized menu
item to allow right click through. (LP: #346359) *
@@ -6893,1595 +4044,758 @@
translatable. (LP: #349540) * Make sure translations
get loaded and make the 'No Indicators' error and the
license translatable. Patch from Gabor Kelemen. (LP:
- #349998)
-
-2009-03-27 23:35:44 -0500 Ted Gould (f4b6ce14)
-
- * debian/control: Add dependency to indicator-messages; the applet is
+ #349998) (ef07f36)
+ * debian/control: Add dependency to indicator-messages; the applet is
currently fairly useless without it. (LP: #346359)
-
-2009-03-27 23:34:45 -0500 Ted Gould (3151d531)
-
- * Merging in upstream version 0.1.4
-
-2009-03-27 23:17:22 -0500 Ted Gould (02501d7e)
-
- * Patch from Gabor Kelemen to make the license and 'No Indicators'
- message translatable. (tag: 0.1.4)
-
-2009-03-27 14:41:02 -0500 Ted Gould (31ea8d2d)
-
- * Removing the translatable marking for 'Indicator Applet Factory'
-
-2009-03-27 14:18:38 -0500 Ted Gould (497702ed)
-
- * Bad truth in the hide function.
-
-2009-03-26 16:23:54 -0500 Ted Gould (b02adf39)
-
- * Adding another bug that gets fixed with Eitan's merge.
-
-2009-03-26 16:10:58 -0500 Ted Gould (d917e8b6)
-
- * Comment for label
-
-2009-03-26 16:06:23 -0500 Ted Gould (045b2579)
-
- * Switching the case for 'No Indicators' to make it a label to still
- support right click through.
-
-2009-03-26 16:01:46 -0500 Ted Gould (1f7ae08c)
-
- * Changing license in about box to make sense.
-
-2009-03-26 13:24:38 -0500 Ted Gould (f6bd9e6f)
-
- * ATK name for Eitan
-
-2009-03-26 11:27:16 -0500 Ted Gould (37af771e)
-
- * Getting gtkdoc stuff to be a little happier
-
-2009-03-26 10:13:11 -0500 Ted Gould (0d983764)
-
- * Bumping version
-
-2009-03-26 10:12:24 -0500 Ted Gould (8fd2e251)
-
- * Merging in Eitan's changes to make the applet a GNOME Program
-
-2009-03-26 13:51:06 +0200 Eitan Isaacson (acc7f891)
-
- * Add gnome_program_init with LIBGNOMEUI_MODULE.
-
-2009-03-25 11:25:37 +0100 Martin Pitt (9e0aabb8)
-
- * releasing version 0.1.3-0ubuntu2 (tag: 0.1.3-0ubuntu2)
-
-2009-03-25 11:25:19 +0100 Martin Pitt (ec4b835d)
-
- * debian/control: Add dependency to indicator-messages; the applet is
+ (f4b6ce1)
+ * Merging in upstream version 0.1.4 (3151d53)
+ * Patch from Gabor Kelemen to make the license and 'No Indicators'
+ message translatable. (02501d7) (tag: 0.1.4)
+ * Removing the translatable marking for 'Indicator Applet Factory'
+ (31ea8d2)
+ * Bad truth in the hide function. (497702e)
+
+2009-03-26 Ted Gould
+
+ * Adding another bug that gets fixed with Eitan's merge. (b02adf3)
+ * Comment for label (d917e8b)
+ * Switching the case for 'No Indicators' to make it a label to still
+ support right click through. (045b257)
+ * Changing license in about box to make sense. (1f7ae08)
+ * ATK name for Eitan (f6bd9e6)
+ * Getting gtkdoc stuff to be a little happier (37af771)
+ * Bumping version (0d98376)
+ * Merging in Eitan's changes to make the applet a GNOME Program
+ (8fd2e25)
+
+2009-03-26 Eitan Isaacson
+
+ * Add gnome_program_init with LIBGNOMEUI_MODULE. (acc7f89)
+
+2009-03-25 Martin Pitt
+
+ * releasing version 0.1.3-0ubuntu2 (9e0aabb) (tag: 0.1.3-0ubuntu2)
+ * debian/control: Add dependency to indicator-messages; the applet is
currently fairly useless without it. (LP: #346359)
+ (ec4b835)
-2009-03-18 00:17:00 -0500 Ted Gould (345e246f)
-
- * Cleaning up Changelog
-
-2009-03-18 00:12:25 -0500 Ted Gould (7c4a7a52)
-
- * Merging in upsream 0.1.3
-
-2009-03-18 00:05:05 -0500 Ted Gould (1ec78fcf)
-
- * Changing version number (tag: 0.1.3)
+2009-03-18 Ted Gould
-2009-03-17 19:45:03 -0500 Ted Gould (6c97fee7)
+ * Cleaning up Changelog (345e246)
+ * Merging in upsream 0.1.3 (7c4a7a5)
+ * Changing version number (1ec78fc) (tag: 0.1.3)
- * releasing version 0.1.2-0ubuntu3~ted4
+2009-03-17 Ted Gould
-2009-03-17 13:40:36 -0500 Ted Gould (3cb0dc3d)
-
- * releasing version 0.1.2-0ubuntu3~ted3
-
-2009-03-17 13:39:45 -0500 Ted Gould (321d1da2)
-
- * Removing all the gobject stuff from the debian build files
-
-2009-03-17 13:38:36 -0500 Ted Gould (d4d1a0e6)
-
- * Getting explicit disable
-
-2009-03-17 13:38:20 -0500 Ted Gould (ec341241)
-
- * Seems that we still get errors without it being there, I'm not sure
+ * releasing version 0.1.2-0ubuntu3~ted4 (6c97fee)
+ * releasing version 0.1.2-0ubuntu3~ted3 (3cb0dc3)
+ * Removing all the gobject stuff from the debian build files
+ (321d1da)
+ * Getting explicit disable (d4d1a0e)
+ * Seems that we still get errors without it being there, I'm not sure
why, but making it so that we can explicitly disable the
gobject-introspection. That should work for now.
-
-2009-03-17 11:29:15 -0500 Ted Gould (bbf57e6b)
-
- * releasing version 0.1.2-0ubuntu3~ted2
-
-2009-03-17 11:28:51 -0500 Ted Gould (95e61d10)
-
- * releasing version 0.1.2-0ubuntu3~ted1ubuntu1
-
-2009-03-17 11:05:36 -0500 Ted Gould (b2791c3e)
-
- * releasing version 0.1.2-0ubuntu3~ted1
-
-2009-03-17 11:03:51 -0500 Ted Gould (4086f8b4)
-
- * Removing GObject introspection from the build deps
-
-2009-03-17 11:03:08 -0500 Ted Gould (fe24c751)
-
- * Changes to make GIR optional from the applet branch
-
-2009-03-17 11:02:30 -0500 Ted Gould (148a7df7)
-
- * Merging in the Ubuntu packaging versions
-
-2009-03-17 11:00:01 -0500 Ted Gould (fdc47f8e)
-
- * Making it so that the GIR stuff autodetects and only builds if
- available.
-
-2009-03-17 10:55:22 +0100 Martin Pitt (78eda239)
-
- * debian/copyright: Fix download location.
-
-2009-03-17 10:54:24 +0100 Martin Pitt (f5f204aa)
-
- * Add bzr-builddeb configuration (merge mode). Fortunately this
+ (ec34124)
+ * releasing version 0.1.2-0ubuntu3~ted2 (bbf57e6)
+ * releasing version 0.1.2-0ubuntu3~ted1ubuntu1 (95e61d1)
+ * releasing version 0.1.2-0ubuntu3~ted1 (b2791c3)
+ * Removing GObject introspection from the build deps (4086f8b)
+ * Changes to make GIR optional from the applet branch (fe24c75)
+ * Merging in the Ubuntu packaging versions (148a7df)
+ * Making it so that the GIR stuff autodetects and only builds if
+ available. (fdc47f8)
+
+2009-03-17 Martin Pitt
+
+ * debian/copyright: Fix download location. (78eda23)
+ * Add bzr-builddeb configuration (merge mode). Fortunately this
doesn't insist on having *only* debian/ in bzr. This gives
us the best of both worlds, bzd-bd auto-downloading
orig.tar.gz and merging in the pre-generated autoconf
stuff, and retaining the possibility of merging directly
from trunk, since we keep the full upstream source in this
- branch.
-
-2009-03-17 10:51:56 +0100 Martin Pitt (2a0f3ae6)
-
- * Add debian/watch.
-
-2009-03-17 10:50:47 +0100 Martin Pitt (0bbf4909)
-
- * retroactively mark 0.1.1-0ubuntu2 as uploaded
-
-2009-03-16 23:23:33 +0100 seb128 (a74264a9)
-
- * updated shlibs version
-
-2009-03-16 23:22:15 +0100 seb128 (deccbbbc)
-
- * indicator-applet (0.1.2-0ubuntu1) jaunty; urgency=low
-
-2009-03-15 09:11:20 -0500 Ted Gould (dab5af7f)
-
- * Cleaning up the changelog
-
-2009-03-13 09:27:09 +0200 Ted Gould (a015eb53)
-
- * releasing version 0.1.2-0ubuntu1~ppa2
-
-2009-03-12 19:25:27 +0200 Ted Gould (7ddf215e)
-
- * releasing version 0.1.2-0ubuntu1~ppa1
-
-2009-03-12 19:24:47 +0200 Ted Gould (8a4010a6)
-
- * Merging in 0.1.2
-
-2009-03-12 19:21:22 +0200 Ted Gould (cad75161)
-
- * Fixes for distcheck (tag: 0.1.2)
-
-2009-03-12 18:55:36 +0200 Ted Gould (34d085bf)
-
- * Changing version number
-
-2009-03-12 14:22:31 +0200 Ted Gould (ad92d558)
-
- * Stealing the 'fast-user-switch-applet' name to get better theming
+ branch. (f5f204a)
+ * Add debian/watch. (2a0f3ae)
+ * retroactively mark 0.1.1-0ubuntu2 as uploaded (0bbf490)
-2009-03-12 14:03:01 +0200 Ted Gould (5299a2cf)
+2009-03-16 seb128
- * Fixing the popup to have the about
+ * updated shlibs version (a74264a)
+ * indicator-applet (0.1.2-0ubuntu1) jaunty; urgency=low (deccbbb)
-2009-03-12 13:51:59 +0200 Ted Gould (2d63bb53)
+2009-03-15 Ted Gould
- * Right click menu is working, but without an about
+ * Cleaning up the changelog (dab5af7)
-2009-03-09 17:02:47 +0200 Ted Gould (c1663bcf)
+2009-03-13 Ted Gould
- * Fix doubling of prototypes, patch from Eitan
+ * releasing version 0.1.2-0ubuntu1~ppa2 (a015eb5)
-2009-03-09 15:12:10 +0200 Ted Gould (a2af5af1)
+2009-03-12 Ted Gould
- * Putting the example executables in libexec and the source code in
- doc/examples
+ * releasing version 0.1.2-0ubuntu1~ppa1 (7ddf215)
+ * Merging in 0.1.2 (8a4010a)
+ * Fixes for distcheck (cad7516) (tag: 0.1.2)
+ * Changing version number (34d085b)
+ * Stealing the 'fast-user-switch-applet' name to get better theming
+ (ad92d55)
+ * Fixing the popup to have the about (5299a2c)
+ * Right click menu is working, but without an about (2d63bb5)
-2009-02-25 15:48:02 -0600 Ted Gould (ef381a02)
+2009-03-09 Ted Gould
- * releasing version 0.1.1-0ubuntu3~ppa3
+ * Fix doubling of prototypes, patch from Eitan (c1663bc)
+ * Putting the example executables in libexec and the source code in
+ doc/examples (a2af5af)
-2009-02-25 15:33:32 -0600 Ted Gould (d5ba977e)
+2009-02-25 Ted Gould
- * Linking in the build interfaces, needed a temporary function to get
- linking right
+ * releasing version 0.1.1-0ubuntu3~ppa3 (ef381a0)
+ * Linking in the build interfaces, needed a temporary function to get
+ linking right (d5ba977)
+ * Forgot to put these in built sources (cb288de)
+ * true is TRUE (e792f8a)
+ * Adding build instructions for the listener interface (87a9458)
+ * Merging from core-dev branch (9d3143b)
+ * Merging in changes to put back in the GObject introspection and to
+ have better build characteristics. (2a8dfa8)
+ * Adding in the listeners interface (22ccedb)
+ * Typo (cf43323)
+ * releasing version 0.1.1-0ubuntu3~ppa2 (e835fb9)
+ * Adding back in the GIR files and some distclean improvements to get
+ back to NULL. (903ce09)
+ * releasing version 0.1.1-0ubuntu3~ppa1 (97133c8)
-2009-02-25 15:33:12 -0600 Ted Gould (cb288de5)
+2009-02-22 Ted Gould
- * Forgot to put these in built sources
-
-2009-02-25 15:14:26 -0600 Ted Gould (e792f8a0)
-
- * true is TRUE
-
-2009-02-25 15:14:07 -0600 Ted Gould (87a94585)
-
- * Adding build instructions for the listener interface
-
-2009-02-25 15:04:37 -0600 Ted Gould (9d3143b6)
-
- * Merging from core-dev branch
-
-2009-02-25 15:00:50 -0600 Ted Gould (2a8dfa88)
-
- * Merging in changes to put back in the GObject introspection and to
- have better build characteristics.
-
-2009-02-25 14:58:19 -0600 Ted Gould (22ccedb4)
-
- * Adding in the listeners interface
-
-2009-02-25 14:37:49 -0600 Ted Gould (cf43323a)
-
- * Typo
-
-2009-02-25 14:36:14 -0600 Ted Gould (e835fb90)
-
- * releasing version 0.1.1-0ubuntu3~ppa2
-
-2009-02-25 14:35:56 -0600 Ted Gould (903ce099)
-
- * Adding back in the GIR files and some distclean improvements to get
- back to NULL.
-
-2009-02-25 11:16:51 -0600 Ted Gould (97133c82)
-
- * releasing version 0.1.1-0ubuntu3~ppa1
-
-2009-02-22 22:59:44 -0600 Ted Gould (13881cb6)
-
- * An interface to get the list of servers from another listener
-
-2009-02-22 22:52:55 -0600 Ted Gould (84c1b5e7)
-
- * Adding information on how the server was added, but not really
+ * An interface to get the list of servers from another listener
+ (13881cb)
+ * Adding information on how the server was added, but not really
using it for anything yet. I'm not sure that we can --
- bother.
+ bother. (84c1b5e)
-2009-02-19 17:25:15 +0100 Martin Pitt (3bc5b8e8)
+2009-02-19 Martin Pitt
- * src/applet-main.c, applet_fill_cb(): Do not show anything if we are
+ * src/applet-main.c, applet_fill_cb(): Do not show anything if we are
running under a stracciatella GNOME session (i. e. without
Ubuntu components). See UbuntuSpec:stracciatella-session.
+ (3bc5b8e)
+ * releasing version 0.1.1-0ubuntu1 (477eb61) (tag: 0.1.1-0ubuntu1)
+ * new upstream release 0.1.1 (fac33da)
-2009-02-19 16:21:42 +0100 Martin Pitt (477eb614)
-
- * releasing version 0.1.1-0ubuntu1 (tag: 0.1.1-0ubuntu1)
+2009-02-18 Ted Gould
-2009-02-19 16:11:40 +0100 Martin Pitt (fac33da7)
+ * Releasing 0.1.1 with build fixes and icons. (b645beb) (tag: 0.1.1)
+ * releasing version 0.1-0ubuntu3~ppa1 (7554f5e)
+ * Merging in icon changes (7aeff8e)
+ * Changing the icon to be our fancy new one. (78a8495)
+ * Adding in the autotools stuff for installing an icon. (971633d)
+ * Ken's very cool Indicator Applet plugin. (fba553c)
- * new upstream release 0.1.1
+2009-02-17 Ted Gould
-2009-02-18 14:14:01 -0600 Ted Gould (b645beb9)
-
- * Releasing 0.1.1 with build fixes and icons. (tag: 0.1.1)
-
-2009-02-18 14:06:19 -0600 Ted Gould (7554f5ef)
-
- * releasing version 0.1-0ubuntu3~ppa1
-
-2009-02-18 14:05:02 -0600 Ted Gould (7aeff8ef)
-
- * Merging in icon changes
-
-2009-02-18 14:03:42 -0600 Ted Gould (78a8495a)
-
- * Changing the icon to be our fancy new one.
-
-2009-02-18 14:03:11 -0600 Ted Gould (971633d8)
-
- * Adding in the autotools stuff for installing an icon.
-
-2009-02-18 13:45:06 -0600 Ted Gould (fba553cd)
-
- * Ken's very cool Indicator Applet plugin.
-
-2009-02-17 10:28:17 -0600 Ted Gould (19665b44)
-
- * Cherry picking r137 from the ubuntu-core-dev packaging branch that
- has licensing fixes
-
-2009-02-17 10:26:55 -0600 Ted Gould (3fe3f9fe)
-
- * Cherry picking r136 from the ubuntu-core-dev packaging branch that
+ * Cherry picking r137 from the ubuntu-core-dev packaging branch that
+ has licensing fixes (19665b4)
+ * Cherry picking r136 from the ubuntu-core-dev packaging branch that
cleans up the licensing, descriptions, and adds additional
- info
-
-2009-02-17 10:06:09 -0600 Ted Gould (4c82f21c)
-
- * Cherry picking r130 from the ubuntu-core-dev packaging branch that
+ info (3fe3f9f)
+ * Cherry picking r130 from the ubuntu-core-dev packaging branch that
cleans up the changelog, adds better descriptions and
- updates the entries in the control file.
-
-2009-02-17 10:01:13 -0600 Ted Gould (8fbbd8ac)
-
- * Configure changes to include gio
-
-2009-02-17 09:59:27 -0600 Ted Gould (af72d156)
-
- * Mostly build related changes coming from the upstream branch.
-
-2009-02-17 09:43:09 -0600 Ted Gould (177afdda)
-
- * This is a generated file. Shouldn't be in VCS.
-
-2009-02-17 09:43:04 -0600 Ted Gould (e86d48d8)
-
- * Adding the license info
-
-2009-02-17 09:10:00 -0600 Ted Gould (711265cd)
-
- * Adding the LGPL licenses and making sure they get into the tarball.
-
-2009-02-17 11:27:00 +0100 Martin Pitt (e072deed)
-
- * debian/copyright: Fix leftover word "either" from the license
- description.
-
-2009-02-17 11:23:18 +0100 Martin Pitt (23d66233)
-
- * debian/control: Update package descriptions; the messaging part is
- provided by indicator-messages.
-
-2009-02-17 11:17:59 +0100 Martin Pitt (7009e0c4)
-
- * debian/control: Fix Vcs-Bzr.
-
-2009-02-17 11:04:52 +0100 Martin Pitt (f0eb6e32)
-
- * releasing version 0.1-0ubuntu1 (tag: 0.1-0ubuntu1)
-
-2009-02-17 10:28:12 +0100 Martin Pitt (5dc54bde)
-
- * configure.ac: Add missing gio-2.0 pkgconfig check (from DX team PPA
+ updates the entries in the control file. (4c82f21)
+ * Configure changes to include gio (8fbbd8a)
+ * Mostly build related changes coming from the upstream branch.
+ (af72d15)
+ * This is a generated file. Shouldn't be in VCS. (177afdd)
+ * Adding the license info (e86d48d)
+ * Adding the LGPL licenses and making sure they get into the tarball.
+ (711265c)
+
+2009-02-17 Martin Pitt
+
+ * debian/copyright: Fix leftover word "either" from the license
+ description. (e072dee)
+ * debian/control: Update package descriptions; the messaging part is
+ provided by indicator-messages. (23d6623)
+ * debian/control: Fix Vcs-Bzr. (7009e0c)
+ * releasing version 0.1-0ubuntu1 (f0eb6e3) (tag: 0.1-0ubuntu1)
+ * configure.ac: Add missing gio-2.0 pkgconfig check (from DX team PPA
packaging branch), and autoreconf to pick up the change.
-
-2009-02-17 09:41:02 +0100 Martin Pitt (93794c85)
-
- * Repack orig.tar.gz with a copy of the LGPL 3, libindicate/* is
- under that license.
-
-2009-02-17 09:40:55 +0100 Martin Pitt (b3c78cf4)
-
- * debian/copyright: Properly describe licenses.
-
-2009-02-17 09:40:45 +0100 Martin Pitt (b41bed63)
-
- * debian/control: Add Homepage:, Vcs-Bzr:, and proper package
- descriptions.
-
-2009-02-17 09:40:22 +0100 Martin Pitt (174ce19a)
-
- * flush changelog for ubuntu packaging branch
-
-2009-02-16 13:29:50 -0600 Ted Gould (d4ebcf17)
-
- * Trying to add in some extra files that seem useful for building,
- gtk-doc still fails.
-
-2009-02-16 13:04:54 -0600 Ted Gould (25bb9e34)
-
- * Oops, should get the screw up right...
-
-2009-02-16 13:01:55 -0600 Ted Gould (b57c4ff4)
-
- * Adding a couple of files to the distribution to pass distcheck
-
-2009-02-15 23:00:05 -0600 Ted Gould (3cea98de)
-
- * releasing version 0.1~ppa41
-
-2009-02-15 22:59:20 -0600 Ted Gould (3e126a2c)
-
- * * Putting on a handle * Adding in a background function from
- panel-lib
-
-2009-02-15 22:56:27 -0600 Ted Gould (8336b570)
-
- * This function seems to set up the widget correctly with the
+ (5dc54bd)
+ * Repack orig.tar.gz with a copy of the LGPL 3, libindicate/* is
+ under that license. (93794c8)
+ * debian/copyright: Properly describe licenses. (b3c78cf)
+ * debian/control: Add Homepage:, Vcs-Bzr:, and proper package
+ descriptions. (b41bed6)
+ * flush changelog for ubuntu packaging branch (174ce19)
+
+2009-02-16 Ted Gould
+
+ * Trying to add in some extra files that seem useful for building,
+ gtk-doc still fails. (d4ebcf1)
+ * Oops, should get the screw up right... (25bb9e3)
+ * Adding a couple of files to the distribution to pass distcheck
+ (b57c4ff)
+
+2009-02-15 Ted Gould
+
+ * releasing version 0.1~ppa41 (3cea98d)
+ * Putting on a handle; Adding in a background function from
+ panel-lib (3e126a2)
+ * This function seems to set up the widget correctly with the
background. It's undocumented, but most other applets
- seem to do it.
-
-2009-02-15 22:48:08 -0600 Ted Gould (6012d337)
-
- * Putting a little handle on the indicators. Works for GNOME Panel.
-
-2009-02-15 22:07:29 -0600 Ted Gould (e424f778)
-
- * releasing version 0.1~ppa40
-
-2009-02-15 22:04:29 -0600 Ted Gould (55b93430)
-
- * Merging in from the 'upstream' branch. Changes include the
+ seem to do it. (8336b57)
+ * Putting a little handle on the indicators. Works for GNOME Panel.
+ (6012d33)
+ * releasing version 0.1~ppa40 (e424f77)
+ * Merging in from the 'upstream' branch. Changes include the
addition of a server signal for the NULL indicator. And a
- warning fix for icons.
-
-2009-02-15 21:58:56 -0600 Ted Gould (975000d7)
-
- * Removing the debian directory. Going to start using this as my
+ warning fix for icons. (55b9343)
+ * Removing the debian directory. Going to start using this as my
upstream branch and the other as the packaging branch.
-
-2009-02-15 21:58:08 -0600 Ted Gould (524e5b98)
-
- * Adding a handler for the new server display signal, and then make
- the messages more clear between the two.
-
-2009-02-15 21:53:55 -0600 Ted Gould (3a3a6e58)
-
- * Adding a new signal in that handles the ID of zero, or null,
+ (975000d)
+ * Adding a handler for the new server display signal, and then make
+ the messages more clear between the two. (524e5b9)
+ * Adding a new signal in that handles the ID of zero, or null,
comming back from a listener and uses that to show the
server. Or atleast signal it to figure out how to do
that. Also cleaning up the signals a little to use
- defines.
-
-2009-02-15 21:40:46 -0600 Ted Gould (0e0780f5)
-
- * Adding a check for NULL string in the icon parsing code. This will
+ defines. (3a3a6e5)
+ * Adding a check for NULL string in the icon parsing code. This will
stop a bunch of warnings coming from everything else.
-
-2009-02-13 15:14:25 -0600 Ted Gould (50a37ef3)
-
- * releasing version 0.1~ppa39
-
-2009-02-13 15:13:26 -0600 Ted Gould (f079d672)
-
- * Fixing a bug in the listener where properties weren't available on
- running servers.
-
-2009-02-13 15:11:32 -0600 Ted Gould (ebe1c53d)
-
- * Ah, declared a variable in an if so that it didn't get out of
- scope. Like it should have. Bah.
-
-2009-02-13 14:55:10 -0600 Ted Gould (17d0da71)
-
- * Adding in a set of functions to get the properties off of a server
-
-2009-02-12 20:23:11 -0600 Ted Gould (9919392b)
-
- * releasing version 0.1~ppa38
-
-2009-02-12 20:18:07 -0600 Ted Gould (f298782e)
-
- * Adding in GIO to the list of linked modules.
-
-2009-02-12 16:49:53 -0600 Ted Gould (33dc1d7d)
-
- * releasing version 0.1~ppa37
-
-2009-02-12 16:46:31 -0600 Ted Gould (a7d062cc)
-
- * Making time and icons happy and work well. Also adding lots of fun
- tests for them.
-
-2009-02-12 16:44:59 -0600 Ted Gould (2c157aa6)
-
- * Forgot to set the timer back to something reasonable!
-
-2009-02-12 16:43:32 -0600 Ted Gould (3eb4043f)
-
- * Adding in support for icons, specifically passing them back and
- forth on the bus
-
-2009-02-12 16:43:00 -0600 Ted Gould (6b3a32c4)
-
- * Changing from using a memory stream to using a buffer, the memory
- stream one seems to be broken.
-
-2009-02-12 14:17:18 -0600 Ted Gould (a2e77d68)
-
- * Adding in the function to take a pixbuf, turn it into a png, base64
- encode it and then send it across the wire.
-
-2009-02-12 14:03:52 -0600 Ted Gould (1a8b895c)
-
- * Changing the icon data to be base64 encoded, should have done that
- originally, how silly.
-
-2009-02-12 13:47:24 -0600 Ted Gould (52cd2530)
-
- * Seems like a better name
-
-2009-02-12 13:44:45 -0600 Ted Gould (e921d552)
-
- * Fixing some prototypes to fix warnings and errors we haven't yet
+ (0e0780f)
+
+2009-02-13 Ted Gould
+
+ * releasing version 0.1~ppa39 (50a37ef)
+ * Fixing a bug in the listener where properties weren't available on
+ running servers. (f079d67)
+ * Ah, declared a variable in an if so that it didn't get out of
+ scope. Like it should have. Bah. (ebe1c53)
+ * Adding in a set of functions to get the properties off of a server
+ (17d0da7)
+
+2009-02-12 Ted Gould
+
+ * releasing version 0.1~ppa38 (9919392)
+ * Adding in GIO to the list of linked modules. (f298782)
+ * releasing version 0.1~ppa37 (33dc1d7)
+ * Making time and icons happy and work well. Also adding lots of fun
+ tests for them. (a7d062c)
+ * Forgot to set the timer back to something reasonable! (2c157aa)
+ * Adding in support for icons, specifically passing them back and
+ forth on the bus (3eb4043)
+ * Changing from using a memory stream to using a buffer, the memory
+ stream one seems to be broken. (6b3a32c)
+ * Adding in the function to take a pixbuf, turn it into a png, base64
+ encode it and then send it across the wire. (a2e77d6)
+ * Changing the icon data to be base64 encoded, should have done that
+ originally, how silly. (1a8b895)
+ * Seems like a better name (52cd253)
+ * Fixing some prototypes to fix warnings and errors we haven't yet
encountered. Also setting the type so that our switch
- statement actually works.
-
-2009-02-12 13:34:24 -0600 Ted Gould (8b91e1dd)
-
- * Adding in some debug messages and making the signal use the
- original key to broadcast itself.
-
-2009-02-12 13:10:19 -0600 Ted Gould (1a5e21eb)
-
- * Added in a way to print the values of properties while they change.
- More later, but a start.
-
-2009-02-12 12:31:08 -0600 Ted Gould (b94d3a70)
-
- * Seeing what happens if I turn on "sign always" in Bazaar.
-
-2009-02-12 12:15:09 -0600 Ted Gould (c3964b3b)
-
- * Adding in the code for handling icons and time
-
-2009-02-12 10:47:54 -0600 Ted Gould (ee274741)
-
- * Rebuilding the way that priorities get done so that we can handle a
+ statement actually works. (e921d55)
+ * Adding in some debug messages and making the signal use the
+ original key to broadcast itself. (8b91e1d)
+ * Added in a way to print the values of properties while they change.
+ More later, but a start. (1a5e21e)
+ * Seeing what happens if I turn on "sign always" in Bazaar. (b94d3a7)
+ * Adding in the code for handling icons and time (c3964b3)
+ * Rebuilding the way that priorities get done so that we can handle a
time and icon version of the functions so that apps don't
- have to worry about those details.
-
-2009-02-12 08:31:14 -0600 Ted Gould (8a2cf349)
-
- * Setting the properties property and picking up Empathy's desktop
- file
-
-2009-02-12 08:24:36 -0600 Ted Gould (e1c5a988)
-
- * Adding in a timer function to change the time every three minutes
- or so in order to test modifying times.
-
-2009-02-12 08:20:29 -0600 Ted Gould (31d107e2)
-
- * Using the time property function
-
-2009-02-12 08:17:37 -0600 Ted Gould (184a04a0)
-
- * Adding in a time property function
-
-2009-02-11 20:37:01 -0600 Ted Gould (2717850d)
-
- * Merging from trunk
-
-2009-02-11 20:35:39 -0600 Ted Gould (24fd755f)
-
- * releasing version 0.1~ppa36
-
-2009-02-11 20:32:31 -0600 Ted Gould (fe7b7c48)
-
- * Merging in the changes to make it so that properties work right,
+ have to worry about those details. (ee27474)
+ * Setting the properties property and picking up Empathy's desktop
+ file (8a2cf34)
+ * Adding in a timer function to change the time every three minutes
+ or so in order to test modifying times. (e1c5a98)
+ * Using the time property function (31d107e)
+ * Adding in a time property function (184a04a)
+
+2009-02-11 Ted Gould
+
+ * Merging from trunk (2717850)
+ * releasing version 0.1~ppa36 (24fd755)
+ * Merging in the changes to make it so that properties work right,
get handled properly by the listener and have convience
functions. Also lots of little important cleanups.
-
-2009-02-11 20:31:43 -0600 Ted Gould (2f2fdfe9)
-
- * Cleaning up some debug messages that aren't as useful anymore
-
-2009-02-11 20:30:21 -0600 Ted Gould (47decbd2)
-
- * Switching to ref_default
-
-2009-02-11 20:29:04 -0600 Ted Gould (734c7ea3)
-
- * Fixing the deallocation to check the right parameters.
-
-2009-02-11 20:25:44 -0600 Ted Gould (2c02884c)
-
- * Turning off some debugging, reformatting, and putting the
- connection into the proxy_t structure
-
-2009-02-11 20:22:25 -0600 Ted Gould (ef78255f)
-
- * Basically things are working as the proxyts are now findable.
-
-2009-02-11 20:10:33 -0600 Ted Gould (609f0c83)
-
- * Fixing the call, checking both lists of proxies, and adding some
- debug info.
-
-2009-02-11 17:14:02 -0600 Ted Gould (69bec2a8)
-
- * Removing an annoying warning
-
-2009-02-11 17:04:10 -0600 Ted Gould (5feca662)
-
- * Adding a check for type in the middle of the state machine for
- building a server.
-
-2009-02-11 16:30:59 -0600 Ted Gould (584e64c3)
-
- * Adding in a ref-default function so that we can keep one listener
- around for fun and profit.
-
-2009-02-11 16:10:23 -0600 Ted Gould (8c06d7e7)
-
- * Getting all the legal stuff in.
-
-2009-02-11 16:01:51 -0600 Ted Gould (7e01f3aa)
-
- * Putting license information everywhere.
-
-2009-02-11 15:59:42 -0600 Ted Gould (5b84e204)
-
- * Adding in an author
-
-2009-02-11 15:57:52 -0600 Ted Gould (468fb342)
-
- * Adding GPL to the tests
-
-2009-02-11 15:55:17 -0600 Ted Gould (25f9a814)
-
- * Adding the GPL to this file
-
-2009-02-11 15:51:31 -0600 Ted Gould (17a13dad)
-
- * Putting the debian copyright info in
-
-2009-02-11 15:32:56 -0600 Ted Gould (390c348d)
-
- * Adding a license to the top of all these files. LGPL 2/3
-
-2009-02-10 16:52:21 -0600 Ted Gould (3ca33fcc)
-
- * Adding to the convience functions for setting the desktop file and
- the type of the server.
-
-2009-02-10 16:49:33 -0600 Ted Gould (49220be1)
-
- * Building a way to get properties. Seems like this should be in the
+ (fe7b7c4)
+ * Cleaning up some debug messages that aren't as useful anymore
+ (2f2fdfe)
+ * Switching to ref_default (47decbd)
+ * Fixing the deallocation to check the right parameters. (734c7ea)
+ * Turning off some debugging, reformatting, and putting the
+ connection into the proxy_t structure (2c02884)
+ * Basically things are working as the proxyts are now findable.
+ (ef78255)
+ * Fixing the call, checking both lists of proxies, and adding some
+ debug info. (609f0c8)
+ * Removing an annoying warning (69bec2a)
+ * Adding a check for type in the middle of the state machine for
+ building a server. (5feca66)
+ * Adding in a ref-default function so that we can keep one listener
+ around for fun and profit. (584e64c)
+ * Getting all the legal stuff in. (8c06d7e)
+ * Putting license information everywhere. (7e01f3a)
+ * Adding in an author (5b84e20)
+ * Adding GPL to the tests (468fb34)
+ * Adding the GPL to this file (25f9a81)
+ * Putting the debian copyright info in (17a13da)
+ * Adding a license to the top of all these files. LGPL 2/3 (390c348)
+
+2009-02-10 Ted Gould
+
+ * Adding to the convience functions for setting the desktop file and
+ the type of the server. (3ca33fc)
+ * Building a way to get properties. Seems like this should be in the
DBus libs, but anyway. Here is the code that compiles and
claims that it'll do it. More code than I would have
- liked.
-
-2009-02-10 15:30:45 -0600 Ted Gould (8bfb5a1b)
-
- * Avoiding a conflict with GObject's get_type function.
-
-2009-02-10 15:28:54 -0600 Ted Gould (0fcfc2be)
-
- * Adding in real functions to match the prototypes.
-
-2009-02-10 15:19:02 -0600 Ted Gould (5a03a064)
-
- * Adding in functions to match the prototypes.
-
-2009-02-10 15:16:31 -0600 Ted Gould (c6eab162)
-
- * Adding in a set_type function and fixing the prototype for
- set_desktop
-
-2009-02-10 15:14:57 -0600 Ted Gould (ee050d4a)
-
- * Changing type to message.im for testing, now it's different than
- the messages.
-
-2009-02-10 15:14:29 -0600 Ted Gould (01244bcd)
-
- * Adding an API for getting the type and desktop files
-
-2009-02-10 11:21:16 -0600 Ted Gould (a9e725a2)
-
- * Including type information in the creation and destruction of
- servers
-
-2009-02-09 11:33:03 -0600 Ted Gould (42e990fe)
-
- * Merge from trunk
-
-2009-02-09 11:02:01 -0600 Ted Gould (9d73c89b)
-
- * releasing version 0.1~ppa35
-
-2009-02-09 10:59:57 -0600 Ted Gould (50411f89)
-
- * Only emitting a changed signal on properties changed when the
- indicator is visible
-
-2009-02-09 10:58:05 -0600 Ted Gould (eb7ca97f)
-
- * Some formatting, reusing the private variable, making it so that
+ liked. (49220be)
+ * Avoiding a conflict with GObject's get_type function. (8bfb5a1)
+ * Adding in real functions to match the prototypes. (0fcfc2b)
+ * Adding in functions to match the prototypes. (5a03a06)
+ * Adding in a set_type function and fixing the prototype for
+ set_desktop (c6eab16)
+ * Changing type to message.im for testing, now it's different than
+ the messages. (ee050d4)
+ * Adding an API for getting the type and desktop files (01244bc)
+ * Including type information in the creation and destruction of
+ servers (a9e725a)
+
+2009-02-09 Ted Gould
+
+ * Merge from trunk (42e990f)
+ * releasing version 0.1~ppa35 (9d73c89)
+ * Only emitting a changed signal on properties changed when the
+ indicator is visible (50411f8)
+ * Some formatting, reusing the private variable, making it so that
hide sends the type and only sending a message of finalize
- if we're still visible.
-
-2009-02-09 10:32:56 -0600 Ted Gould (d7d70364)
-
- * Server hide function from Niel
-
-2009-02-09 15:25:13 +0000 Neil Jagdish Patel (d42c9b5e)
-
- * Add the indicate_server_hide function
-
-2009-02-07 12:41:40 -0600 Ted Gould (b9558054)
-
- * Sending the type with the signal in the listener, adding it into
- the tests.
-
-2009-02-07 12:37:47 -0600 Ted Gould (af602791)
-
- * Changing the signals for show/hide to send the type correctly.
-
-2009-02-07 12:21:32 -0600 Ted Gould (455dbe3c)
-
- * Setting the type of the server
-
-2009-02-06 15:03:38 +0100 Ted Gould (f308079a)
-
- * releasing version 0.1~ppa34
-
-2009-02-06 15:02:51 +0100 Ted Gould (4cf9eec0)
-
- * Making the listener handle the case where we're using the new
- show/hide structure.
-
-2009-02-06 14:59:29 +0100 Ted Gould (603808b8)
-
- * Ah, stupid little wrong function
-
-2009-02-06 14:36:21 +0100 Ted Gould (e5e968c2)
-
- * releasing version 0.1~ppa33
-
-2009-02-06 14:15:41 +0100 Ted Gould (37a09560)
-
- * releasing version 0.1~ppa32
-
-2009-02-06 12:49:04 +0100 Ted Gould (0b687ad8)
-
- * Tracking the type of the server in the proxyt structure
-
-2009-02-06 12:22:40 +0100 Ted Gould (aa624cda)
-
- * Changing the prototypes to start using the server added stuff
-
-2009-02-06 11:40:28 +0100 Ted Gould (720e2502)
-
- * releasing version 0.1~ppa31
-
-2009-02-06 10:41:06 +0100 Ted Gould (07f61bd9)
-
- * releasing version 0.1~ppa30
-
-2009-02-06 10:37:30 +0100 Ted Gould (e2fae3b7)
-
- * Removing GObject introspection for now
-
-2009-02-06 00:29:51 +0100 Ted Gould (18daf0a9)
-
- * releasing version 0.1~ppa29
-
-2009-02-05 18:23:06 +0100 Ted Gould (246b29b4)
-
- * releasing version 0.1~ppa28
-
-2009-02-05 17:58:57 +0100 Ted Gould (c18cbee8)
-
- * Merging in the trunk changes
-
-2009-02-05 17:58:22 +0100 Ted Gould (c4db8e8c)
-
- * Adding properties for doing type and desktop
-
-2009-02-05 15:27:42 +0100 Ted Gould (a14b6ddf)
-
- * Changing the DBUS API slightly. Now there is no 'get_desktop'
+ if we're still visible. (eb7ca97)
+ * Server hide function from Niel (d7d7036)
+
+2009-02-09 Neil Jagdish Patel
+
+ * Add the indicate_server_hide function (d42c9b5)
+
+2009-02-07 Ted Gould
+
+ * Sending the type with the signal in the listener, adding it into
+ the tests. (b955805)
+ * Changing the signals for show/hide to send the type correctly.
+ (af60279)
+ * Setting the type of the server (455dbe3)
+
+2009-02-06 Ted Gould
+
+ * releasing version 0.1~ppa34 (f308079)
+ * Making the listener handle the case where we're using the new
+ show/hide structure. (4cf9eec)
+ * Ah, stupid little wrong function (603808b)
+ * releasing version 0.1~ppa33 (e5e968c)
+ * releasing version 0.1~ppa32 (37a0956)
+ * Tracking the type of the server in the proxyt structure (0b687ad)
+ * Changing the prototypes to start using the server added stuff
+ (aa624cd)
+ * releasing version 0.1~ppa31 (720e250)
+ * releasing version 0.1~ppa30 (07f61bd)
+ * Removing GObject introspection for now (e2fae3b)
+ * releasing version 0.1~ppa29 (18daf0a)
+
+2009-02-05 Ted Gould
+
+ * releasing version 0.1~ppa28 (246b29b)
+ * Merging in the trunk changes (c18cbee)
+ * Adding properties for doing type and desktop (c4db8e8)
+ * Changing the DBUS API slightly. Now there is no 'get_desktop'
function as desktop is a property. Added a property for
type so that we can understand what kind of application
this is. And finally adding show/hide signals on the
- server as they were already on the listener.
-
-2009-02-05 14:47:40 +0100 Ted Gould (e6ff0d48)
-
- * releasing version 0.1~ppa27
-
-2009-02-05 14:43:21 +0100 Ted Gould (d52c59bb)
-
- * releasing version 0.1~ppa23
-
-2009-02-05 14:42:38 +0100 Ted Gould (5cf3a795)
-
- * Adding in the API function to take and icon and display it. Just
- the prototype.
-
-2009-02-04 19:08:18 +0100 Ted Gould (d95b1701)
-
- * typo
-
-2009-02-04 19:00:11 +0100 Ted Gould (206b4073)
-
- * releasing version 0.1~ppa26
-
-2009-02-04 18:58:00 +0100 Ted Gould (cf719f1f)
-
- * Merge in documentation and icons
-
-2009-02-04 14:54:56 +0100 Neil Jagdish Patel (eae7dfc0)
-
- * Set the widget name on the applet rather than the menubar, to make
- sure it's picked up globally.
+ server as they were already on the listener. (a14b6dd)
+ * releasing version 0.1~ppa27 (e6ff0d4)
+ * releasing version 0.1~ppa23 (d52c59b)
+ * Adding in the API function to take and icon and display it. Just
+ the prototype. (5cf3a79)
-2009-02-04 14:27:20 +0100 Ted Gould (7ef6658a)
+2009-02-04 Ted Gould
- * Removing the icons from the larger applet
+ * typo (d95b170)
+ * releasing version 0.1~ppa26 (206b407)
+ * Merge in documentation and icons (cf719f1)
-2009-02-04 14:16:06 +0100 Ted Gould (663d9266)
+2009-02-04 Neil Jagdish Patel
- * Adding a conflicts and a replaces to get rid of errors.
+ * Set the widget name on the applet rather than the menubar, to make
+ sure it's picked up globally. (eae7dfc)
-2009-02-04 14:14:15 +0100 Ted Gould (212b1753)
+2009-02-04 Ted Gould
- * ppa23
+ * Removing the icons from the larger applet (7ef6658)
+ * Adding a conflicts and a replaces to get rid of errors. (663d926)
+ * ppa23 (212b175)
+ * Polish it up (9ff950e)
+ * Making it so that there is no more boarder on the menu bar
+ (b5314b8)
-2009-02-04 13:55:42 +0100 Ted Gould (9ff950e4)
+2009-02-04 Neil Jagdish Patel
- * Polish it up
+ * indicator-applet (0.1~ppa22) intrepid; urgency=low (124eadc)
+ * Fix coding style (3002304)
-2009-02-04 13:55:18 +0100 Ted Gould (b5314b86)
+2009-02-03 Neil Jagdish Patel
- * Making it so that there is no more boarder on the menu bar
+ * Enable support for a "transparent" panel applet, which reacts to
+ the gnome- panel theme changes (e886446)
-2009-02-04 12:45:50 +0100 Neil Jagdish Patel (124eadcc)
+2009-02-03 Ted Gould
- * indicator-applet (0.1~ppa22) intrepid; urgency=low
-
-2009-02-04 12:44:34 +0100 Neil Jagdish Patel (3002304e)
-
- * Fix coding style
-
-2009-02-03 21:29:52 +0100 Neil Jagdish Patel (e886446f)
-
- * Enable support for a "transparent" panel applet, which reacts to
- the gnome- panel theme changes
-
-2009-02-03 16:53:37 +0100 Ted Gould (c074cf6c)
-
- * Getting gtk-doc working
-
-2009-02-03 15:09:50 +0100 Ted Gould (47aedec5)
-
- * Getting everything together to try and build docs
-
-2009-02-03 14:56:35 +0100 Ted Gould (bccae5a5)
-
- * Getting the dirs right
-
-2009-02-03 14:30:24 +0100 Ted Gould (aa26429a)
-
- * Getting SUBDIRS right
-
-2009-02-03 14:25:53 +0100 Ted Gould (2f6177e8)
-
- * I think this will add gtk docs
-
-2009-02-03 14:05:40 +0100 Ted Gould (7a916031)
-
- * Putting in the makefiles for the docs and the reference docs
-
-2009-02-03 12:50:40 +0100 Ted Gould (5d714e6f)
-
- * Adding in checks for GTK Doc
-
-2009-02-03 11:57:57 +0100 Ted Gould (0223011f)
-
- * Merge from trunk
-
-2009-02-03 11:53:19 +0100 Ted Gould (3c879bc2)
-
- * * Adding in package fixes from seb128 * Removing scrollkeeper *
+ * Getting gtk-doc working (c074cf6)
+ * Getting everything together to try and build docs (47aedec)
+ * Getting the dirs right (bccae5a)
+ * Getting SUBDIRS right (aa26429)
+ * I think this will add gtk docs (2f6177e)
+ * Putting in the makefiles for the docs and the reference docs
+ (7a91603)
+ * Adding in checks for GTK Doc (5d714e6)
+ * Merge from trunk (0223011)
+ * Adding in package fixes from seb128 * Removing scrollkeeper *
Changing libindicate to libindicate0 * Removing .la file
- * Removing targets for files in libindcate-dev.install
- * Removing pkg-create-dbgsym * Adding a build depend on
- pkg-create-dbgsym
-
-2009-02-03 10:36:09 +0100 Neil Jagdish Patel (67d29673)
-
- * Allow sub-classes of server to emit signals using three new public
- functions
-
-2009-02-02 10:44:23 +0100 Ted Gould (a0440fa8)
-
- * Bump for PPA
-
-2009-02-02 10:13:42 +0100 Ted Gould (935d457c)
-
- * Should have been for Intrepid
-
-2009-01-30 15:07:18 -0600 Ted Gould (f1c8ad76)
-
- * Adding interface for listener sending back a display request.
-
-2009-01-30 12:11:32 -0600 Ted Gould (722c621b)
-
- * Listener interface for signalling an indicator
-
-2009-01-30 12:10:50 -0600 Ted Gould (21a212b2)
-
- * Adding a print message for when the indicator is signaled
-
-2009-01-30 11:27:48 -0600 Ted Gould (2adf8958)
-
- * Adding an interface to call back to an indicator and display it.
-
-2009-01-29 13:50:32 -0600 Ted Gould (d9e7ed9c)
-
- * Guess I should merge trunk back in at some point.
-
-2009-01-29 13:39:31 -0600 Ted Gould (17bc0dab)
-
- * * Fixing the handling of named DBus connections * Moving most of
- the data in the objects to private sections * Making the
- signal names defines for easier usage * Having property
- changes actually work now.
-
-2009-01-29 13:05:14 -0600 Ted Gould (de80300e)
-
- * Changing the include directory from 1.0 to 0.1 which gives us more
- room to screw up
-
-2009-01-29 13:03:47 -0600 Ted Gould (fab825e1)
-
- * Wow, I didn't realize we weren't handling properties at all
- correctly. Fixed now. Whew.
-
-2009-01-29 12:51:48 -0600 Ted Gould (054c9ba7)
-
- * Adding a set property after the show to cause a signal
-
-2009-01-29 12:49:43 -0600 Ted Gould (f5e7d6dc)
-
- * Have the server pass along the property modified signal
-
-2009-01-29 12:44:17 -0600 Ted Gould (dd60c623)
-
- * Adding a property modified signal to the indicator object
-
-2009-01-29 11:17:11 -0600 Ted Gould (759d62b0)
-
- * Making all of the server values move into a private section like
+ * Removing targets for files in libindcate-dev.install
+ * Removing pkg-create-dbgsym; Adding a build depend on
+ pkg-create-dbgsym (3c879bc)
+
+2009-02-03 Neil Jagdish Patel
+
+ * Allow sub-classes of server to emit signals using three new public
+ functions (67d2967)
+
+2009-02-02 Ted Gould
+
+ * Bump for PPA (a0440fa)
+ * Should have been for Intrepid (935d457)
+
+2009-01-30 Ted Gould
+
+ * Adding interface for listener sending back a display request.
+ (f1c8ad7)
+ * Listener interface for signalling an indicator (722c621)
+ * Adding a print message for when the indicator is signaled (21a212b)
+ * Adding an interface to call back to an indicator and display it.
+ (2adf895)
+
+2009-01-29 Ted Gould
+
+ * Guess I should merge trunk back in at some point. (d9e7ed9)
+ * Fixing the handling of named DBus connections; Moving most of
+ the data in the objects to private sections; Making the
+ signal names defines for easier usage; Having property
+ changes actually work now. (17bc0da)
+ * Changing the include directory from 1.0 to 0.1 which gives us more
+ room to screw up (de80300)
+ * Wow, I didn't realize we weren't handling properties at all
+ correctly. Fixed now. Whew. (fab825e)
+ * Adding a set property after the show to cause a signal (054c9ba)
+ * Have the server pass along the property modified signal (f5e7d6d)
+ * Adding a property modified signal to the indicator object (dd60c62)
+ * Making all of the server values move into a private section like
all the others. Generally a good thing and good clean up
-
-2009-01-29 09:59:19 -0600 Ted Gould (c0a32384)
-
- * Making the indicator properties private, they should be. Also
- cleans up some deps.
-
-2009-01-29 09:40:29 -0600 Ted Gould (d898b213)
-
- * Removing the gobject-introspection-repository from the list of
+ (759d62b)
+ * Making the indicator properties private, they should be. Also
+ cleans up some deps. (c0a3238)
+ * Removing the gobject-introspection-repository from the list of
build depends as we needed it for the dbus stuff, that
- we're no longer using.
-
-2009-01-29 09:40:01 -0600 Ted Gould (d2f37fb1)
-
- * Removing DBus from the gobject introspection
-
-2009-01-29 09:31:59 -0600 Ted Gould (116ff8e5)
-
- * Oops, forgot the header there
-
-2009-01-29 09:31:00 -0600 Ted Gould (82c65bf3)
-
- * Okay, moving all of the variables from the listener class into a
+ we're no longer using. (d898b21)
+ * Removing DBus from the gobject introspection (d2f37fb)
+ * Oops, forgot the header there (116ff8e)
+ * Okay, moving all of the variables from the listener class into a
private object. This is to make the GObject introspection
not need dbus, and thus we can reduce our build deps
- significantly.
-
-2009-01-29 09:10:18 -0600 Ted Gould (ab78f477)
-
- * Use the new fangled defines to make things cleaner
-
-2009-01-29 09:07:14 -0600 Ted Gould (63630dcb)
-
- * Getting some helper defines for some of the hacks that'll probably
- change in the future
-
-2009-01-29 09:05:09 -0600 Ted Gould (5454aee4)
-
- * Using the defines for the signal names
-
-2009-01-29 09:01:15 -0600 Ted Gould (fea68aa7)
-
- * Making the signals use #defines to make everything a little more
+ significantly. (82c65bf)
+ * Use the new fangled defines to make things cleaner (ab78f47)
+ * Getting some helper defines for some of the hacks that'll probably
+ change in the future (63630dc)
+ * Using the defines for the signal names (5454aee)
+ * Making the signals use #defines to make everything a little more
predictable. I hate this part of GObject signals.
-
-2009-01-29 09:01:07 -0600 Ted Gould (492652a6)
-
- * Adding a variable to make the compiler happier
-
-2009-01-26 09:13:27 -0600 Ted Gould (b96eebb5)
-
- * Changed to only listen to reference names instead of descriptive
- ones. Hopefully this'll fix a crash.
-
-2009-01-22 15:39:54 -0600 Ted Gould (b6c14253)
-
- * Forgot to run autogen.sh before last package :(
-
-2009-01-21 19:43:54 -0600 Ted Gould (d1868048)
-
- * Update API slightly and some fixes.
-
-2009-01-21 17:15:34 -0600 Ted Gould (81997420)
-
- * Adding in a message indicator and a small test to use it.
-
-2009-01-21 16:10:21 -0600 Ted Gould (0fc106dd)
-
- * Adding in the im-client test and fixing a couple of bugs it found
-
-2009-01-21 16:02:04 -0600 Ted Gould (48697b95)
-
- * Adding in a type for indicators that are messages
-
-2009-01-21 15:44:19 -0600 Ted Gould (58a667b5)
-
- * Generated source files
-
-2009-01-21 15:13:43 -0600 Ted Gould (ea69948a)
-
- * Adding in listener_get_property
-
-2009-01-21 15:12:50 -0600 Ted Gould (2ed28019)
-
- * Adding in a get_property function
-
-2009-01-19 12:29:03 -0600 Ted Gould (e782c32b)
-
- * Wrong indicate include directory in package config files
-
-2009-01-19 12:22:21 -0600 Ted Gould (640fb32d)
-
- * Wrong indicate include directory in package config files
-
-2009-01-16 18:37:08 -0600 Ted Gould (dbe20805)
-
- * Moving the gir file to the right package
-
-2009-01-16 17:12:19 -0600 Ted Gould (7a5bf13f)
-
- * Removing the gir file from the applet so that it's only with the
- library so that we can install all of them.
-
-2009-01-16 16:34:04 -0600 Ted Gould (ba631e94)
-
- * Adding the GObject Introspection files into the build and the
- packaging.
-
-2009-01-16 16:22:27 -0600 Ted Gould (e3f1f4e3)
-
- * Shell script integrated into the autotools system
-
-2009-01-16 16:21:09 -0600 Ted Gould (ac140d50)
-
- * Bringing GObject Introspection into the build and making it so that
- it gets installed with the library.
-
-2009-01-16 13:51:27 -0600 Ted Gould (e83283e2)
-
- * Build fix
-
-2009-01-16 13:32:25 -0600 Ted Gould (09d01e60)
-
- * Adding in libtool to build deps
-
-2009-01-16 13:04:41 -0600 Ted Gould (0eb58996)
-
- * Getting the debian package built up so that it can have a seperate
- library binary package.
-
-2009-01-16 13:03:26 -0600 Ted Gould (872812ad)
-
- * Changing the build targets, now I understand the difference between
- 'any' and 'all'
-
-2009-01-16 12:58:34 -0600 Ted Gould (913c9d2d)
-
- * Making it so the lib only uses glib (which it does)
-
-2009-01-16 12:54:01 -0600 Ted Gould (28c26d84)
-
- * Adding in the libindicate lib.
-
-2009-01-16 12:47:51 -0600 Ted Gould (8f801277)
-
- * Moving the tests so that they can guarantee to build after the
+ (fea68aa)
+ * Adding a variable to make the compiler happier (492652a)
+
+2009-01-26 Ted Gould
+
+ * Changed to only listen to reference names instead of descriptive
+ ones. Hopefully this'll fix a crash. (b96eebb)
+
+2009-01-22 Ted Gould
+
+ * Forgot to run autogen.sh before last package :( (b6c1425)
+
+2009-01-21 Ted Gould
+
+ * Update API slightly and some fixes. (d186804)
+ * Adding in a message indicator and a small test to use it. (8199742)
+ * Adding in the im-client test and fixing a couple of bugs it found
+ (0fc106d)
+ * Adding in a type for indicators that are messages (48697b9)
+ * Generated source files (58a667b)
+ * Adding in listener_get_property (ea69948)
+ * Adding in a get_property function (2ed2801)
+
+2009-01-19 Ted Gould
+
+ * Wrong indicate include directory in package config files (e782c32)
+ * Wrong indicate include directory in package config files (640fb32)
+
+2009-01-16 Ted Gould
+
+ * Moving the gir file to the right package (dbe2080)
+ * Removing the gir file from the applet so that it's only with the
+ library so that we can install all of them. (7a5bf13)
+ * Adding the GObject Introspection files into the build and the
+ packaging. (ba631e9)
+ * Shell script integrated into the autotools system (e3f1f4e)
+ * Bringing GObject Introspection into the build and making it so that
+ it gets installed with the library. (ac140d5)
+ * Build fix (e83283e)
+ * Adding in libtool to build deps (09d01e6)
+ * Getting the debian package built up so that it can have a seperate
+ library binary package. (0eb5899)
+ * Changing the build targets, now I understand the difference between
+ 'any' and 'all' (872812a)
+ * Making it so the lib only uses glib (which it does) (913c9d2)
+ * Adding in the libindicate lib. (28c26d8)
+ * Moving the tests so that they can guarantee to build after the
library builds as otherwise they end up getting built
- first.
-
-2009-01-16 12:44:08 -0600 Ted Gould (487239d3)
-
- * Adding in a return that was missing (though it's useless)
-
-2009-01-16 00:04:05 -0600 Ted Gould (2b6ce306)
-
- * Building the listener object that listens to all of the folks on
+ first. (8f80127)
+ * Adding in a return that was missing (though it's useless) (487239d)
+ * Building the listener object that listens to all of the folks on
DBus and turns that into a usable interface for indicator
display folks. A lot of code to make things simple :)
-
-2009-01-16 00:01:50 -0600 Ted Gould (df1713a3)
-
- * Handling the case that we're destroying an entry because the bus
+ (2b6ce30)
+ * Handling the case that we're destroying an entry because the bus
told us to. Properly signalling all of the removals
+ (df1713a)
-2009-01-15 23:19:21 -0600 Ted Gould (ad1cc2dc)
-
- * Fixing the printing and the saving of indicators.
-
-2009-01-15 23:11:56 -0600 Ted Gould (fe3addbe)
-
- * Changing the test to do the printing by itself instead of using the
- debug messages in the class itself
-
-2009-01-15 23:01:16 -0600 Ted Gould (0d1e01e3)
-
- * Getting the signals in shape
-
-2009-01-15 21:49:28 -0600 Ted Gould (27220379)
+2009-01-15 Ted Gould
- * Okay, adding the other signals in and keeping track of the
+ * Fixing the printing and the saving of indicators. (ad1cc2d)
+ * Changing the test to do the printing by itself instead of using the
+ debug messages in the class itself (fe3addb)
+ * Getting the signals in shape (0d1e01e)
+ * Okay, adding the other signals in and keeping track of the
indicators that are hanging around. Now, to connect to
- things external.
-
-2009-01-15 20:34:39 -0600 Ted Gould (0ff11650)
-
- * Get the type of the list of indicators that we got, and then set
- the up to register
-
-2009-01-15 20:10:38 -0600 Ted Gould (fb5b3301)
-
- * Now correctly calling the get indicators function to get the
- indicators on already created objects.
-
-2009-01-15 19:49:23 -0600 Ted Gould (e50f228a)
-
- * Adding in a marshaller for the DBus signals that we need
-
-2009-01-15 17:10:36 -0600 Ted Gould (d1c2ed2c)
-
- * Now doing some DBus listening and getting some of the initial
- configuration built up.
-
-2009-01-15 17:10:14 -0600 Ted Gould (421cea27)
-
- * Changing to the dbus interface and changing to build teh client and
- server interfaces
-
-2009-01-15 15:52:40 -0600 Ted Gould (4c623e47)
-
- * Amazing how a little string can make such a huge difference.
-
-2009-01-15 15:48:38 -0600 Ted Gould (da2657ed)
-
- * Adding in a basic listening test
-
-2009-01-15 15:42:16 -0600 Ted Gould (6ba40259)
-
- * Adding a new function
-
-2009-01-15 15:33:00 -0600 Ted Gould (441032cd)
-
- * Starting to flesh out the listener a little bit, should get a list
- of names on teh bus at this point
-
-2009-01-15 10:39:51 -0600 Ted Gould (ccac9b84)
-
- * Adding in the base object for the listener.
-
-2009-01-15 10:39:32 -0600 Ted Gould (48277fb0)
-
- * Cut-and-paste error
-
-2009-01-14 17:12:26 -0600 Ted Gould (8a2369b4)
-
- * Okay, I think this is the end of server and indicator minus all the
- bugs that I expect to find :)
-
-2009-01-14 17:11:49 -0600 Ted Gould (284b3dd6)
-
- * Cleaning up prototypes and type warnings.
-
-2009-01-14 16:31:38 -0600 Ted Gould (bda3bbf9)
-
- * Who the hell would design an API that passes in arrays of strings
+ things external. (2722037)
+ * Get the type of the list of indicators that we got, and then set
+ the up to register (0ff1165)
+ * Now correctly calling the get indicators function to get the
+ indicators on already created objects. (fb5b330)
+ * Adding in a marshaller for the DBus signals that we need (e50f228)
+ * Now doing some DBus listening and getting some of the initial
+ configuration built up. (d1c2ed2)
+ * Changing to the dbus interface and changing to build teh client and
+ server interfaces (421cea2)
+ * Amazing how a little string can make such a huge difference.
+ (4c623e4)
+ * Adding in a basic listening test (da2657e)
+ * Adding a new function (6ba4025)
+ * Starting to flesh out the listener a little bit, should get a list
+ of names on teh bus at this point (441032c)
+ * Adding in the base object for the listener. (ccac9b8)
+ * Cut-and-paste error (48277fb)
+
+2009-01-14 Ted Gould
+
+ * Okay, I think this is the end of server and indicator minus all the
+ bugs that I expect to find :) (8a2369b)
+ * Cleaning up prototypes and type warnings. (284b3dd)
+ * Who the hell would design an API that passes in arrays of strings
differently than it passes them out. What an insane idea.
- Oh yeah, properties work.
-
-2009-01-14 10:26:09 -0600 Ted Gould (89bf87a3)
-
- * Merging in code from yesterday. Got many of the functions working
+ Oh yeah, properties work. (bda3bbf)
+ * Merging in code from yesterday. Got many of the functions working
with real IDs and making lists. The basis for all the
properties stuff is there but it still needs a touch of
- fleshing out. Also a new test for debugging.
-
-2009-01-14 10:11:17 -0600 Ted Gould (c1459227)
-
- * Chaning the property list parameters to be pointer arrays.
-
-2009-01-13 23:24:39 -0600 Ted Gould (a72a4cec)
-
- * Making the indicator lookup it's own function and trying it out in
- another function to get a property.
-
-2009-01-13 23:23:58 -0600 Ted Gould (cb3ce99f)
-
- * Adding in some properties to the mix
-
-2009-01-13 15:43:14 -0600 Ted Gould (4670fee8)
-
- * Adding in a display function and a list by type.
-
-2009-01-13 14:55:06 -0600 Ted Gould (1c7343c6)
-
- * Man, a lot of work for messing up one explaination point.
-
-2009-01-13 14:18:47 -0600 Ted Gould (82dee941)
-
- * Making it so that the indicators all have unique IDs
-
-2009-01-13 13:44:00 -0600 Ted Gould (f64b5d95)
-
- * Forgot to actually add the test
-
-2009-01-13 13:43:32 -0600 Ted Gould (0b4e54d7)
-
- * Ah, we weren't checking if we were visible. Now things are better.
-
-2009-01-13 13:38:29 -0600 Ted Gould (bba89ede)
-
- * Return to crashing beauty
-
-2009-01-13 13:38:12 -0600 Ted Gould (3dbe51dc)
-
- * Add a test to create a lot of indicators.
-
-2009-01-13 13:26:13 -0600 Ted Gould (5030c345)
-
- * Merging in Robert's changes.
-
-2009-01-13 06:47:42 -0500 Robert Carr (71820cb1)
-
- * Add script to build GObject-introspection GIR, and boilerplate
- JavaScript test.
-
-2009-01-13 06:43:38 -0500 Robert Carr (27a71bba)
-
- * Use G_BEGIN/END_DECLS, and put the GOBject *_get_type functions in
+ fleshing out. Also a new test for debugging. (89bf87a)
+ * Chaning the property list parameters to be pointer arrays.
+ (c145922)
+
+2009-01-13 Ted Gould
+
+ * Making the indicator lookup it's own function and trying it out in
+ another function to get a property. (a72a4ce)
+ * Adding in some properties to the mix (cb3ce99)
+ * Adding in a display function and a list by type. (4670fee)
+ * Man, a lot of work for messing up one explaination point. (1c7343c)
+ * Making it so that the indicators all have unique IDs (82dee94)
+ * Forgot to actually add the test (f64b5d9)
+ * Ah, we weren't checking if we were visible. Now things are better.
+ (0b4e54d)
+ * Return to crashing beauty (bba89ed)
+ * Add a test to create a lot of indicators. (3dbe51d)
+ * Merging in Robert's changes. (5030c34)
+
+2009-01-13 Robert Carr
+
+ * Add script to build GObject-introspection GIR, and boilerplate
+ JavaScript test. (71820cb)
+ * Use G_BEGIN/END_DECLS, and put the GOBject *_get_type functions in
the header file (needed by introspection, but also the
- normal GLib style).
-
-2009-01-13 06:32:44 -0500 Robert Carr (544dec8a)
-
- * Merge Ted's changes. I should have used bzr bind.
+ normal GLib style). (27a71bb)
+ * Merge Ted's changes. I should have used bzr bind. (544dec8)
+ * Add pkgconfig file. (35c5045)
-2009-01-13 06:31:48 -0500 Robert Carr (35c50459)
+2009-01-12 Ted Gould
- * Add pkgconfig file.
-
-2009-01-12 23:14:09 -0600 Ted Gould (55256284)
-
- * Fleshing out more functions, we can now return a list of ids. Need
- to test with more.
-
-2009-01-12 17:22:47 -0600 Ted Gould (cd4f548d)
-
- * Whoo Hoo, we can count
-
-2009-01-12 17:15:43 -0600 Ted Gould (514837a3)
-
- * Fleshing out the whole show and hide thing. We should also be
+ * Fleshing out more functions, we can now return a list of ids. Need
+ to test with more. (5525628)
+ * Whoo Hoo, we can count (cd4f548)
+ * Fleshing out the whole show and hide thing. We should also be
signalling when indicators are added or removed from the
- server.
-
-2009-01-12 16:38:46 -0600 Ted Gould (2dc2f266)
-
- * Clean up the signal handlers and fixing the call in the test
+ server. (514837a)
+ * Clean up the signal handlers and fixing the call in the test
function. Now we're to the point of showing the way I
- think things should be.
-
-2009-01-12 16:17:25 -0600 Ted Gould (3d55f906)
-
- * Basic show hide support in the indicator
-
-2009-01-12 16:07:22 -0600 Ted Gould (b687b3ae)
-
- * Changing to showing the inicator and make it so that we dont' crash
- right now.
-
-2009-01-12 10:45:34 -0600 Ted Gould (245fdda8)
-
- * Adding in the base functions with pointers and fun stuff like that
-
-2009-01-11 23:51:55 -0600 Ted Gould (bea741f5)
-
- * Adding in signals so that we can talk to the app over DBus. Nice.
-
-2009-01-09 16:44:07 -0600 Ted Gould (4d937802)
-
- * Adding in a show to help debugging
-
-2009-01-09 16:37:54 -0600 Ted Gould (55794df3)
-
- * Adding in an indicator to the test and fixing a typo
-
-2009-01-09 16:32:09 -0600 Ted Gould (791b5f80)
-
- * Connecting indicators and servers. They create themselves easily.
-
-2009-01-09 16:24:57 -0600 Ted Gould (57b3f581)
-
- * Setting up the singleton nature of the server, and allow setting
- it.
-
-2009-01-09 16:12:45 -0600 Ted Gould (f8ca5556)
-
- * Fleshing out the server some in adding function and prototypes.
-
-2009-01-08 16:53:43 -0600 Ted Gould (5ed10dfc)
-
- * Adding in build support for the indicate and crash test. Will make
- future ones easier.
-
-2009-01-08 16:42:05 -0600 Ted Gould (fc3c5b99)
-
- * Adding in a simple program to crash after 15 seconds. Now we can
- add indicators to it.
-
-2009-01-08 15:35:35 -0600 Ted Gould (7e75808f)
-
- * Building a pretty good set of virtual functions and getting them
- tied together, with errors too.
-
-2009-01-08 11:31:53 -0600 Ted Gould (e2a35577)
-
- * Basic GObject stuff
-
-2009-01-07 21:01:44 -0600 Ted Gould (d505beda)
-
- * Setting up version of the libraries.
-
-2009-01-07 20:36:35 -0600 Ted Gould (9389a6a6)
-
- * Fixing stuff so that everything links all together
-
-2009-01-07 20:24:47 -0600 Ted Gould (4381e65e)
-
- * Adding in a built sources tag to build the header file properly
-
-2009-01-07 20:18:12 -0600 Ted Gould (1068ff29)
-
- * Fixing linking and libraries and includes oh my
-
-2009-01-07 19:58:22 -0600 Ted Gould (20c59cd9)
-
- * Dummy starting file
-
-2009-01-07 19:26:31 -0600 Ted Gould (699c5754)
-
- * Adding libindicate to the build system
-
-2009-01-07 17:42:44 -0600 Ted Gould (32064347)
-
- * Make file starting out to build this thing
-
-2009-01-07 17:42:24 -0600 Ted Gould (cd42ea20)
-
- * Basic server stuff
-
-2009-01-07 15:28:02 -0600 Ted Gould (ff7715c7)
-
- * Fixing a bunch of typos, now it is a happy validating XML file.
-
-2009-01-07 15:20:57 -0600 Ted Gould (e9627482)
-
- * First version of XML DBus interface
-
-2009-01-07 14:22:21 -0600 Ted Gould (98bb1516)
-
- * Dropping in more code to make these real GObjects and such
-
-2008-12-20 00:02:36 -0600 Ted Gould (8e913de4)
-
- * Stopping point
-
-2008-12-04 23:08:47 -0800 Ted Gould (0d28e608)
-
- * Moving the indicator directory cross-packages.
-
-2008-12-04 22:41:45 -0800 Ted Gould (227bcb33)
-
- * Put in the kickarse loader code. Happy, happy.
-
-2008-12-04 20:23:23 -0800 Ted Gould (438133c2)
-
- * Building in a module loader
-
-2008-12-03 23:51:29 -0800 Ted Gould (2253177c)
-
- * Parse directories
-
-2008-12-03 23:23:38 -0800 Ted Gould (75f4a72e)
-
- * Making the applet very light.
-
-2008-12-03 19:57:47 -0800 Ted Gould (bbc53478)
-
- * Okay, we're all doing everything perfect
-
-2008-12-03 19:50:17 -0800 Ted Gould (854bab06)
-
- * Making the applet a lot more sparce. Now we're going to load
+ think things should be. (2dc2f26)
+ * Basic show hide support in the indicator (3d55f90)
+ * Changing to showing the inicator and make it so that we dont' crash
+ right now. (b687b3a)
+ * Adding in the base functions with pointers and fun stuff like that
+ (245fdda)
+
+2009-01-11 Ted Gould
+
+ * Adding in signals so that we can talk to the app over DBus. Nice.
+ (bea741f)
+
+2009-01-09 Ted Gould
+
+ * Adding in a show to help debugging (4d93780)
+ * Adding in an indicator to the test and fixing a typo (55794df)
+ * Connecting indicators and servers. They create themselves easily.
+ (791b5f8)
+ * Setting up the singleton nature of the server, and allow setting
+ it. (57b3f58)
+ * Fleshing out the server some in adding function and prototypes.
+ (f8ca555)
+
+2009-01-08 Ted Gould
+
+ * Adding in build support for the indicate and crash test. Will make
+ future ones easier. (5ed10df)
+ * Adding in a simple program to crash after 15 seconds. Now we can
+ add indicators to it. (fc3c5b9)
+ * Building a pretty good set of virtual functions and getting them
+ tied together, with errors too. (7e75808)
+ * Basic GObject stuff (e2a3557)
+
+2009-01-07 Ted Gould
+
+ * Setting up version of the libraries. (d505bed)
+ * Fixing stuff so that everything links all together (9389a6a)
+ * Adding in a built sources tag to build the header file properly
+ (4381e65)
+ * Fixing linking and libraries and includes oh my (1068ff2)
+ * Dummy starting file (20c59cd)
+ * Adding libindicate to the build system (699c575)
+ * Make file starting out to build this thing (3206434)
+ * Basic server stuff (cd42ea2)
+ * Fixing a bunch of typos, now it is a happy validating XML file.
+ (ff7715c)
+ * First version of XML DBus interface (e962748)
+ * Dropping in more code to make these real GObjects and such
+ (98bb151)
+
+2008-12-20 Ted Gould
+
+ * Stopping point (8e913de)
+
+2008-12-04 Ted Gould
+
+ * Moving the indicator directory cross-packages. (0d28e60)
+ * Put in the kickarse loader code. Happy, happy. (227bcb3)
+ * Building in a module loader (438133c)
+
+2008-12-03 Ted Gould
+
+ * Parse directories (2253177)
+ * Making the applet very light. (75f4a72)
+ * Okay, we're all doing everything perfect (bbc5347)
+ * Making the applet a lot more sparce. Now we're going to load
things dynamically. Let them have their own problems.
+ (854bab0)
+ * Removing everything except messaging. (e1092da)
-2008-12-03 19:26:50 -0800 Ted Gould (e1092dab)
-
- * Removing everything except messaging.
-
-2008-12-02 11:49:55 -0600 Ted Gould (a387d91c)
+2008-12-02 Ted Gould
- * Adding in all of the icons into the mockups.
+ * Adding in all of the icons into the mockups. (a387d91)
-2008-11-25 10:54:28 -0600 Ted Gould (52e48550)
+2008-11-25 Ted Gould
- * Adding in icons from Ken.
+ * Adding in icons from Ken. (52e4855)
-2008-11-24 22:49:50 -0600 Ted Gould (c8ae9fe0)
+2008-11-24 Ted Gould
- * Adding in some filler menus to get some depth.
-
-2008-11-24 22:32:57 -0600 Ted Gould (f4588331)
-
- * Adding in the infrastructure to have icons in the build. Only a
+ * Adding in some filler menus to get some depth. (c8ae9fe)
+ * Adding in the infrastructure to have icons in the build. Only a
dummy icon for now, but it's there and ready for some
- friends.
-
-2008-11-24 22:31:40 -0600 Ted Gould (e23753e3)
-
- * Adding in additional files to catch translations
-
-2008-11-24 21:34:09 -0600 Ted Gould (3f3e49b5)
-
- * Removing the test menu item.
-
-2008-11-24 21:31:53 -0600 Ted Gould (edb2f89c)
-
- * Adding in settings
-
-2008-11-24 17:30:01 -0600 Ted Gould (f9b7c242)
-
- * Blocking the prelight
-
-2008-11-24 17:26:48 -0600 Ted Gould (10629d44)
-
- * Making spacing and alignment better
-
-2008-11-24 17:18:30 -0600 Ted Gould (98c6e943)
-
- * Getting some batteries in there.
-
-2008-11-24 16:50:46 -0600 Ted Gould (c6c57ca7)
-
- * Basic power handler
-
-2008-11-20 22:48:00 -0600 Ted Gould (35cef87b)
-
- * First try at getting it not to hide on click. Fail.
-
-2008-11-20 22:40:11 -0600 Ted Gould (13ad9d43)
-
- * Whoa, getting that inherited type wrong really messes things up.
-
-2008-11-20 17:04:30 -0600 Ted Gould (a29584a8)
-
- * Clean compile, but something is broken in the _init function. Not
- sure what.
-
-2008-11-19 15:26:40 -0600 Ted Gould (712bddcd)
-
- * Okay, blocked the prelight on the item, now how do I get my buttons
- out of event prison.
-
-2008-11-19 14:48:34 -0600 Ted Gould (9d3a43ac)
-
- * Getting all the widgets in the menu item. Doesn't quite work
- right, but the widgets are there.
-
-2008-11-19 14:25:56 -0600 Ted Gould (04153d7d)
-
- * Adding in a menu item to start putting in a slider.
-
-2008-11-18 14:31:09 -0600 Ted Gould (46451828)
-
- * Adding a depend for dbus-glib
-
-2008-11-18 14:10:30 -0600 Ted Gould (9073e40f)
-
- * Version one of debian packaging.
-
-2008-11-12 22:01:39 -0600 Ted Gould (947bc3f3)
-
- * Working on ideas for the prototype of the individual item stuff
-
-2008-11-12 21:49:27 -0600 Ted Gould (b63286e2)
-
- * Starting to build functions to handle the menu spec over DBus
-
-2008-11-12 17:06:56 -0600 Ted Gould (b4b7ab38)
-
- * Okay, audio is an icon now.
-
-2008-11-12 16:46:46 -0600 Ted Gould (b61274ad)
-
- * Connecting in all the different applets, now they can do their own
- thing.
-
-2008-11-12 16:41:12 -0600 Ted Gould (6a2c99b7)
-
- * Adding the basis for all the different indicators that we want to
- include
-
-2008-11-12 16:23:42 -0600 Ted Gould (99a07ef5)
-
- * Switching from a label and an hbox to a menubar
-
-2008-11-12 16:14:24 -0600 Ted Gould (dd64e6ad)
-
- * Ah, forgot to show the applet itself.
-
-2008-11-12 16:06:07 -0600 Ted Gould (9d5abe0b)
-
- * Putting a label in the widget
-
-2008-11-12 11:15:40 -0600 Ted Gould (5781046b)
-
- * Adding in more documentation on the seperation between user
- interaction and the system services.
-
-2008-11-10 15:27:56 -0600 Ted Gould (62605c27)
-
- * A diagram about how intermediate daemons are going to provide
- status to the panel.
-
-2008-11-10 13:16:32 -0600 Ted Gould (75e2280f)
-
- * Getting some text that I'd written on the target API in the repo.
-
-2008-11-10 11:14:51 -0600 Ted Gould (0fdb6ccc)
-
- * Indicator prototypes
-
-2008-10-30 12:32:04 -0500 Ted Gould (236c9a24)
-
- * Ignoring some stuff
-
-2008-10-30 12:31:31 -0500 Ted Gould (237fca7a)
-
- * Setting up the data directories and getting everything to translate
- nicely
-
-2008-10-29 21:36:40 -0500 Ted Gould (9b4a5fb6)
-
- * Adding in the linking and some basic prototypes.
-
-2008-10-29 21:30:35 -0500 Ted Gould (435437a7)
-
- * Getting the build things together so that it starts building.
- Yeah.
-
-2008-10-29 17:16:49 -0500 Ted Gould (9c2e7b60)
-
- * Basic build system, not quite working though
-
+ friends. (f458833)
+ * Adding in additional files to catch translations (e23753e)
+ * Removing the test menu item. (3f3e49b)
+ * Adding in settings (edb2f89)
+ * Blocking the prelight (f9b7c24)
+ * Making spacing and alignment better (10629d4)
+ * Getting some batteries in there. (98c6e94)
+ * Basic power handler (c6c57ca)
+
+2008-11-20 Ted Gould
+
+ * First try at getting it not to hide on click. Fail. (35cef87)
+ * Whoa, getting that inherited type wrong really messes things up.
+ (13ad9d4)
+ * Clean compile, but something is broken in the _init function. Not
+ sure what. (a29584a)
+
+2008-11-19 Ted Gould
+
+ * Okay, blocked the prelight on the item, now how do I get my buttons
+ out of event prison. (712bddc)
+ * Getting all the widgets in the menu item. Doesn't quite work
+ right, but the widgets are there. (9d3a43a)
+ * Adding in a menu item to start putting in a slider. (04153d7)
+
+2008-11-18 Ted Gould
+
+ * Adding a depend for dbus-glib (4645182)
+ * Version one of debian packaging. (9073e40)
+
+2008-11-12 Ted Gould
+
+ * Working on ideas for the prototype of the individual item stuff
+ (947bc3f)
+ * Starting to build functions to handle the menu spec over DBus
+ (b63286e)
+ * Okay, audio is an icon now. (b4b7ab3)
+ * Connecting in all the different applets, now they can do their own
+ thing. (b61274a)
+ * Adding the basis for all the different indicators that we want to
+ include (6a2c99b)
+ * Switching from a label and an hbox to a menubar (99a07ef)
+ * Ah, forgot to show the applet itself. (dd64e6a)
+ * Putting a label in the widget (9d5abe0)
+ * Adding in more documentation on the seperation between user
+ interaction and the system services. (5781046)
+
+2008-11-10 Ted Gould
+
+ * A diagram about how intermediate daemons are going to provide
+ status to the panel. (62605c2)
+ * Getting some text that I'd written on the target API in the repo.
+ (75e2280)
+ * Indicator prototypes (0fdb6cc)
+
+2008-10-30 Ted Gould
+
+ * Ignoring some stuff (236c9a2)
+ * Setting up the data directories and getting everything to translate
+ nicely (237fca7)
+
+2008-10-29 Ted Gould
+
+ * Adding in the linking and some basic prototypes. (9b4a5fb)
+ * Getting the build things together so that it starts building.
+ Yeah. (435437a)
+ * Basic build system, not quite working though (9c2e7b6)
diff --git a/NEWS b/NEWS
index 958219f..92cf446 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,39 @@
+Overview of changes in libayatana-indicator 0.9.4
+
+ - src/indicator-service.c: Fix Robert's lastname in license header.
+ - cmake: Install library as library.
+
+Overview of changes in libayatana-indicator 0.9.3
+
+ - src/indicator-ng.c: Do not show tooltip on labels while the menu is
+ open.
+
+Overview of changes in libayatana-indicator 0.9.2
+
+ - Add tooltip support.
+ - src/indicator-service.c: Make failure to connect to the session DBus
+ fatal.
+
+Overview of changes in libayatana-indicator 0.9.1
+
+ - Clean up compilation flags.
+ - src/{CMakeLists.txt,indicator.symbols}: Don't export private symbols.
+ Immitate symbol exports as previously done with libtool.
+
+Overview of changes in libayatana-indicator 0.9.0
+
+ - src/indicator-ng.c: Make sure old menu item name is not NULL before
+ comparison. (Thanks to Andrej Shadura).
+ - Scale icons when loading from filename. (Thanks to Dani Llewellyn).
+ - data/: Drop ayatana-indicators.target (moved to libayatana-common).
+ - Update/add documentation.
+ - Rename library source folder to src/.
+ - tools/indicator-loader.c: Silence unused parameter warnings/errors
+ for various functions.
+ - Fix compiler warnings.
+ - Add Travis CI configuration.
+ - CMake port. Bye bye autotools.
+
Overview of changes in libayatana-indicator 0.8.4
- libayatana-indicator/indicator-ng.c: Only run gtk_box_set_spacing()
diff --git a/debian/changelog b/debian/changelog
index 79a5842..ecfb6ff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,38 @@
+libayatana-indicator (0.9.4-0) unstable; urgency=medium
+
+ * Upstream-provided Debian package for libayatana-indicator.
+ See upstream ChangeLog for recent changes.
+
+ -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Fri, 13 Oct 2023 08:39:58 +0200
+
+libayatana-indicator (0.9.3-0) unstable; urgency=medium
+
+ * Upstream-provided Debian package for libayatana-indicator.
+ See upstream ChangeLog for recent changes.
+
+ -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Wed, 26 Oct 2022 00:06:50 +0200
+
+libayatana-indicator (0.9.2-0) unstable; urgency=medium
+
+ * Upstream-provided Debian package for libayatana-indicator.
+ See upstream ChangeLog for recent changes.
+
+ -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Thu, 15 Sep 2022 08:34:46 +0200
+
+libayatana-indicator (0.9.1-0) unstable; urgency=medium
+
+ * Upstream-provided Debian package for libayatana-indicator.
+ See upstream ChangeLog for recent changes.
+
+ -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Thu, 17 Feb 2022 21:36:58 +0100
+
+libayatana-indicator (0.9.0-0) unstable; urgency=medium
+
+ * Upstream-provided Debian package for libayatana-indicator.
+ See upstream ChangeLog for recent changes.
+
+ -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Wed, 17 Nov 2021 14:06:42 +0100
+
libayatana-indicator (0.8.4-0) unstable; urgency=medium
* Upstream-provided Debian package for libayatana-indicator.
diff --git a/debian/libayatana-indicator-dev.install b/debian/libayatana-indicator-dev.install
index 8d167db..e4d125f 100644
--- a/debian/libayatana-indicator-dev.install
+++ b/debian/libayatana-indicator-dev.install
@@ -1,3 +1,3 @@
-usr/include
+usr/include/libayatana-indicator-0.4/
usr/lib/*/pkgconfig/ayatana-indicator-0.4.pc
usr/lib/*/libayatana-indicator.so
diff --git a/debian/libayatana-indicator3-7.symbols b/debian/libayatana-indicator3-7.symbols
index 7973468..a0bc0c3 100644
--- a/debian/libayatana-indicator3-7.symbols
+++ b/debian/libayatana-indicator3-7.symbols
@@ -2,11 +2,6 @@ libayatana-indicator3.so.7 libayatana-indicator3-7 #MINVER#
*Build-Depends-Package: libayatana-indicator3-dev
ICON_SIZE@Base 0.6.0
INDICATOR_NAMES_DATA@Base 0.6.0
- _indicator_object_marshal_VOID__POINTER_BOOLEAN@Base 0.8.5
- _indicator_object_marshal_VOID__POINTER_UINT@Base 0.8.5
- _indicator_object_marshal_VOID__POINTER_UINT_ENUM@Base 0.8.5
- _indicator_object_marshal_VOID__POINTER_UINT_UINT@Base 0.8.5
- _indicator_service@Base 0.8.5
#MISSING: 0.8.0# ayatana_menu_item_factory_create_menu_item@Base 0.7.0
#MISSING: 0.8.0# ayatana_menu_item_factory_get_all@Base 0.7.0
#MISSING: 0.8.0# ayatana_menu_item_factory_get_type@Base 0.7.0
diff --git a/debian/libayatana-indicator3-dev.install b/debian/libayatana-indicator3-dev.install
index 73dc715..1998935 100644
--- a/debian/libayatana-indicator3-dev.install
+++ b/debian/libayatana-indicator3-dev.install
@@ -1,3 +1,3 @@
-usr/include
+usr/include/libayatana-indicator3-0.4/
usr/lib/*/pkgconfig/ayatana-indicator3-0.4.pc
usr/lib/*/libayatana-indicator3.so
diff --git a/debian/libayatana-indicator7.symbols b/debian/libayatana-indicator7.symbols
index 7489c2b..66393ab 100644
--- a/debian/libayatana-indicator7.symbols
+++ b/debian/libayatana-indicator7.symbols
@@ -2,11 +2,6 @@ libayatana-indicator.so.7 libayatana-indicator7 #MINVER#
*Build-Depends-Package: libayatana-indicator-dev
ICON_SIZE@Base 0.6.0
INDICATOR_NAMES_DATA@Base 0.6.0
- _indicator_object_marshal_VOID__POINTER_BOOLEAN@Base 0.8.5
- _indicator_object_marshal_VOID__POINTER_UINT@Base 0.8.5
- _indicator_object_marshal_VOID__POINTER_UINT_ENUM@Base 0.8.5
- _indicator_object_marshal_VOID__POINTER_UINT_UINT@Base 0.8.5
- _indicator_service@Base 0.8.5
indicator_desktop_shortcuts_get_nicks@Base 0.6.0
indicator_desktop_shortcuts_get_type@Base 0.6.0
indicator_desktop_shortcuts_new@Base 0.6.0
diff --git a/debian/rules b/debian/rules
index fd5a956..2fce74b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,6 +1,6 @@
#!/usr/bin/make -f
-FLAVORS = gtk2 gtk3
+FLAVOURS = gtk2 gtk3
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
@@ -19,12 +19,12 @@ export DPKG_GENSYMBOLS_CHECK_LEVEL = 4
%:
dh $@
-override_dh_auto_configure: $(FLAVORS:%=doconfigure-%)
+override_dh_auto_configure: $(FLAVOURS:%=doconfigure-%)
doconfigure-%:
DH_VERBOSE=1 dh_auto_configure --builddirectory=builddir/$* -- $(COMMON_CONFIGURE_FLAGS) $(CONFIGURE_FLAGS_$*)
-override_dh_auto_build: $(FLAVORS:%=dobuild-%)
+override_dh_auto_build: $(FLAVOURS:%=dobuild-%)
dobuild-%:
dh_auto_build --builddirectory=builddir/$*
@@ -33,7 +33,7 @@ override_dh_auto_test:
xvfb-run -a dh_auto_test --no-parallel --builddirectory=builddir/gtk2
xvfb-run -a dh_auto_test --no-parallel --builddirectory=builddir/gtk3
-override_dh_auto_install: $(FLAVORS:%=doinstall-%)
+override_dh_auto_install: $(FLAVOURS:%=doinstall-%)
doinstall-%:
dh_auto_install --builddirectory=builddir/$* --destdir=debian/tmp/$*
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 9a63eb8..aa6b9a2 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -6,13 +6,21 @@
# indicator-service.h
# indicator.h
-install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator-desktop-shortcuts.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/libayatana-indicator3-0.4/libayatana-indicator")
-install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator-image-helper.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/libayatana-indicator3-0.4/libayatana-indicator")
-install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator-ng.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/libayatana-indicator3-0.4/libayatana-indicator")
-install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator-object.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/libayatana-indicator3-0.4/libayatana-indicator")
-install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator-service-manager.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/libayatana-indicator3-0.4/libayatana-indicator")
-install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator-service.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/libayatana-indicator3-0.4/libayatana-indicator")
-install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/libayatana-indicator3-0.4/libayatana-indicator")
+if (FLAVOUR_GTK3)
+ # libayatana-indicator3.so
+ set (ayatana_indicator_gtkver "ayatana-indicator3")
+else()
+ # libayatana-indicator.so
+ set (ayatana_indicator_gtkver "ayatana-indicator")
+endif()
+
+install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator-desktop-shortcuts.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/lib${ayatana_indicator_gtkver}-0.${API_VERSION}/libayatana-indicator")
+install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator-image-helper.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/lib${ayatana_indicator_gtkver}-0.${API_VERSION}/libayatana-indicator")
+install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator-ng.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/lib${ayatana_indicator_gtkver}-0.${API_VERSION}/libayatana-indicator")
+install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator-object.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/lib${ayatana_indicator_gtkver}-0.${API_VERSION}/libayatana-indicator")
+install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator-service-manager.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/lib${ayatana_indicator_gtkver}-0.${API_VERSION}/libayatana-indicator")
+install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator-service.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/lib${ayatana_indicator_gtkver}-0.${API_VERSION}/libayatana-indicator")
+install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/indicator.h" DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/lib${ayatana_indicator_gtkver}-0.${API_VERSION}/libayatana-indicator")
set(HEADERS
indicator.h
@@ -123,25 +131,15 @@ string(APPEND GEN_INDICATOR_SERVICE_XML_C "\;")
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/gen-indicator-service.xml.c" ${GEN_INDICATOR_SERVICE_XML_C})
-if (FLAVOUR_GTK3)
- # libayatana-indicator3.so
- set (ayatana_indicator_gtkver "ayatana-indicator3")
-else()
- # libayatana-indicator.so
- set (ayatana_indicator_gtkver "ayatana-indicator")
-endif()
-
# libayatana-indicator{,3}.so
-set_source_files_properties(${SOURCES} PROPERTIES COMPILE_FLAGS ${COMPILE_FLAGS})
add_library("${ayatana_indicator_gtkver}" SHARED ${SOURCES})
set_target_properties("${ayatana_indicator_gtkver}" PROPERTIES VERSION ${ABI_VERSION}.0.0 SOVERSION ${ABI_VERSION})
target_compile_definitions("${ayatana_indicator_gtkver}" PUBLIC DG_LOG_DOMAIN="libayatana-indicator")
target_include_directories("${ayatana_indicator_gtkver}" PUBLIC ${PROJECT_DEPS_INCLUDE_DIRS})
target_include_directories("${ayatana_indicator_gtkver}" PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
target_include_directories("${ayatana_indicator_gtkver}" PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
+target_link_options("${ayatana_indicator_gtkver}" PRIVATE "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/indicator.symbols")
target_link_libraries("${ayatana_indicator_gtkver}" ${PROJECT_DEPS_LIBRARIES} ${EXTRA_LIBS})
add_dependencies("${ayatana_indicator_gtkver}" "src-generated")
-install(FILES "${CMAKE_CURRENT_BINARY_DIR}/lib${ayatana_indicator_gtkver}.so" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}")
-install(FILES "${CMAKE_CURRENT_BINARY_DIR}/lib${ayatana_indicator_gtkver}.so.${ABI_VERSION}" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}")
-install(FILES "${CMAKE_CURRENT_BINARY_DIR}/lib${ayatana_indicator_gtkver}.so.${ABI_VERSION}.0.0" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}")
+install(TARGETS "${ayatana_indicator_gtkver}" LIBRARY DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}")
diff --git a/src/indicator-image-helper.c b/src/indicator-image-helper.c
index 2c0e244..4a22539 100644
--- a/src/indicator-image-helper.c
+++ b/src/indicator-image-helper.c
@@ -79,13 +79,15 @@ refresh_image (GtkImage * image)
}
g_object_unref (pixbuf);
} else if (icon_filename != NULL) {
- gtk_image_set_from_file(image, icon_filename);
-
- gint height;
- gdk_pixbuf_get_file_info(icon_filename, NULL, &height);
-
- if (height > ICON_SIZE) {
- gtk_image_set_pixel_size(image, ICON_SIZE);
+ GError* error = NULL;
+ GdkPixbuf* pixbuf = gdk_pixbuf_new_from_file_at_scale(icon_filename, ICON_SIZE, ICON_SIZE, TRUE, &error);
+ if (pixbuf != NULL) {
+ /* Put the pixbuf on the image */
+ gtk_image_set_from_pixbuf(image, pixbuf);
+ g_object_unref(G_OBJECT(pixbuf));
+ } else {
+ g_error_free(error);
+ gtk_image_set_from_icon_name(image, "image-missing", ICON_SIZE);
}
} else if (G_IS_LOADABLE_ICON(icon_names)) {
/* Build a pixbuf if needed */
diff --git a/src/indicator-ng.c b/src/indicator-ng.c
index f057600..a94f57e 100644
--- a/src/indicator-ng.c
+++ b/src/indicator-ng.c
@@ -1,5 +1,6 @@
/*
* Copyright 2013 Canonical Ltd.
+ * Copyright 2021-2022 Robert Tari
*
* 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
@@ -15,6 +16,7 @@
*
* Authors:
* Lars Uebernickel <lars.uebernickel@canonical.com>
+ * Robert Tari <robert@tari.in>
*/
#include "indicator-ng.h"
@@ -39,9 +41,9 @@ struct _IndicatorNg
gchar *secondary_action;
gchar *submenu_action;
gint position;
-
+ gchar *sTooltip;
guint name_watch_id;
-
+ gboolean bMenuShown;
GDBusConnection *session_bus;
GActionGroup *actions;
GMenuModel *menu;
@@ -244,7 +246,7 @@ static gboolean indicator_ng_menu_insert_idos(IndicatorNg *self, GMenuModel *pSe
GtkWidget *pMenuItemOld = GTK_WIDGET(g_list_nth_data(lMenuItems, nMenuItem));
const gchar *sName = gtk_widget_get_name(pMenuItemOld);
- if (!g_str_equal(sName, sType))
+ if (sName != NULL && !g_str_equal(sName, sType))
{
GActionGroup *pActionGroup = (GActionGroup*)g_object_get_qdata(G_OBJECT(self->entry.menu), m_pActionMuxer);
GMenuItem *pMenuModelItem = g_menu_item_new_from_model(pSection, nModelItem);
@@ -421,10 +423,26 @@ static void indicator_ng_menu_section_changed(__attribute__((unused)) GMenuModel
}
}
+static void indicator_ng_set_tooltip(IndicatorNg *self, gchar *sTooltip)
+{
+ if (self->entry.label != NULL)
+ {
+ gtk_widget_set_tooltip_text(GTK_WIDGET(self->entry.label), sTooltip);
+ }
+
+ if (self->entry.image != NULL)
+ {
+ gtk_widget_set_tooltip_text(GTK_WIDGET(self->entry.image), sTooltip);
+ }
+}
+
static void indicator_ng_menu_shown(__attribute__((unused)) GtkWidget *pWidget, gpointer pUserData)
{
IndicatorNg *self = pUserData;
guint nSectionCount = 0;
+ self->bMenuShown = TRUE;
+
+ indicator_ng_set_tooltip(self, NULL);
if (!self->lMenuSections[0])
{
@@ -472,10 +490,13 @@ indicator_ng_menu_hidden (__attribute__((unused)) GtkWidget *widget,
gpointer user_data)
{
IndicatorNg *self = user_data;
+ self->bMenuShown = FALSE;
if (self->submenu_action)
g_action_group_change_action_state (self->actions, self->submenu_action,
g_variant_new_boolean (FALSE));
+
+ indicator_ng_set_tooltip(self, self->sTooltip);
}
static void
@@ -594,6 +615,7 @@ indicator_ng_update_entry (IndicatorNg *self)
g_variant_lookup (state, "icon", "*", &icon);
g_variant_lookup (state, "accessible-desc", "&s", &accessible_desc);
g_variant_lookup (state, "visible", "b", &visible);
+ g_variant_lookup (state, "tooltip", "&s", &self->sTooltip);
}
else
g_warning ("the action of the indicator menu item must have state with type (sssb) or a{sv}");
@@ -601,6 +623,7 @@ indicator_ng_update_entry (IndicatorNg *self)
indicator_ng_set_label (self, label);
indicator_ng_set_icon_from_variant (self, icon);
indicator_ng_set_accessible_desc (self, accessible_desc);
+ indicator_ng_set_tooltip (self, self->bMenuShown ? NULL : self->sTooltip);
indicator_object_set_visible (INDICATOR_OBJECT (self), visible);
if (icon)
@@ -954,6 +977,8 @@ indicator_ng_initable_iface_init (GInitableIface *initable)
static void
indicator_ng_init (IndicatorNg *self)
{
+ self->sTooltip = NULL;
+ self->bMenuShown = FALSE;
m_pActionMuxer = g_quark_from_static_string ("gtk-widget-action-muxer");
for (guint nMenuSection = 0; nMenuSection < MENU_SECTIONS; nMenuSection++)
diff --git a/src/indicator-service.c b/src/indicator-service.c
index de3a0cf..c10d67f 100644
--- a/src/indicator-service.c
+++ b/src/indicator-service.c
@@ -3,9 +3,11 @@ An object used to provide a simple interface for a service
to query version and manage whether it's running.
Copyright 2009 Canonical Ltd.
+Copyright 2022 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
+ Robert Tari <robert@tari.in>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@@ -25,8 +27,6 @@ License along with this library. If not, see
#include "config.h"
#endif
-#include <stdlib.h> /* exit() */
-
#include <gio/gio.h>
#include "indicator-service.h"
@@ -40,32 +40,32 @@ static GVariant * bus_watch (IndicatorService * service, const gchar * sender);
/* Private Stuff */
/**
- IndicatorSevicePrivate:
- @name: The DBus well known name for the service.
- @timeout: The source ID for the timeout event.
- @watcher: A list of processes on dbus that are watching us.
- @this_service_version: The version to hand out that we're
- implementing. May not be set, so we'll send zero (default).
- @dbus_registration: The handle for this object being registered
- on dbus.
+ IndicatorSevicePrivate:
+ @name: The DBus well known name for the service.
+ @timeout: The source ID for the timeout event.
+ @watcher: A list of processes on dbus that are watching us.
+ @this_service_version: The version to hand out that we're
+ implementing. May not be set, so we'll send zero (default).
+ @dbus_registration: The handle for this object being registered
+ on dbus.
*/
typedef struct _IndicatorServicePrivate IndicatorServicePrivate;
struct _IndicatorServicePrivate {
- gchar * name;
- GDBusConnection * bus;
- GCancellable * bus_cancel;
- guint timeout;
- guint timeout_length;
- GHashTable * watchers;
- guint this_service_version;
- guint dbus_registration;
- gboolean replace_mode;
+ gchar * name;
+ GDBusConnection * bus;
+ GCancellable * bus_cancel;
+ guint timeout;
+ guint timeout_length;
+ GHashTable * watchers;
+ guint this_service_version;
+ guint dbus_registration;
+ gboolean replace_mode;
};
/* Signals Stuff */
enum {
- SHUTDOWN,
- LAST_SIGNAL
+ SHUTDOWN,
+ LAST_SIGNAL
};
static guint signals[LAST_SIGNAL] = { 0 };
@@ -74,9 +74,9 @@ static guint signals[LAST_SIGNAL] = { 0 };
/* Enum for the properties so that they can be quickly
found and looked up. */
enum {
- PROP_0,
- PROP_NAME,
- PROP_VERSION
+ PROP_0,
+ PROP_NAME,
+ PROP_VERSION
};
/* The strings so that they can be slowly looked up. */
@@ -85,7 +85,7 @@ enum {
/* GObject Stuff */
#define INDICATOR_SERVICE_GET_PRIVATE(o) \
- (G_TYPE_INSTANCE_GET_PRIVATE ((o), INDICATOR_SERVICE_TYPE, IndicatorServicePrivate))
+ (G_TYPE_INSTANCE_GET_PRIVATE ((o), INDICATOR_SERVICE_TYPE, IndicatorServicePrivate))
static void indicator_service_class_init (IndicatorServiceClass *klass);
static void indicator_service_init (IndicatorService *self);
@@ -96,15 +96,15 @@ static void indicator_service_finalize (GObject *object);
static void set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec);
static void get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec);
static void try_and_get_name (IndicatorService * service);
-static void bus_method_call (GDBusConnection * connection, const gchar * sender, const gchar * path, const gchar * interface, const gchar * method, GVariant * params, GDBusMethodInvocation * invocation, gpointer user_data);
+static void bus_method_call (GDBusConnection * connection, const gchar * sender, const gchar * path, const gchar * interface, const gchar * method, GVariant * params, GDBusMethodInvocation * invocation, gpointer user_data);
/* GDBus Stuff */
static GDBusNodeInfo * node_info = NULL;
static GDBusInterfaceInfo * interface_info = NULL;
static GDBusInterfaceVTable interface_table = {
- .method_call = bus_method_call,
- .get_property = NULL, /* No properties */
- .set_property = NULL /* No properties */
+ .method_call = bus_method_call,
+ .get_property = NULL, /* No properties */
+ .set_property = NULL /* No properties */
};
/* THE define */
@@ -113,66 +113,66 @@ G_DEFINE_TYPE_WITH_PRIVATE (IndicatorService, indicator_service, G_TYPE_OBJECT);
static void
indicator_service_class_init (IndicatorServiceClass *klass)
{
- GObjectClass *object_class = G_OBJECT_CLASS (klass);
-
- object_class->dispose = indicator_service_dispose;
- object_class->finalize = indicator_service_finalize;
-
- /* Property funcs */
- object_class->set_property = set_property;
- object_class->get_property = get_property;
-
- /* Properties */
- g_object_class_install_property(object_class, PROP_NAME,
- g_param_spec_string(PROP_NAME_S,
- "The DBus name for this service",
- "This is the name that should be used on DBus for this service.",
- NULL,
- G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
- g_object_class_install_property(object_class, PROP_VERSION,
- g_param_spec_uint(PROP_VERSION_S,
- "The version of the service that we're implementing.",
- "A number to represent the version of the other APIs the service provides. This should match across the manager and the service",
- 0, G_MAXUINT, 0,
- G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
-
- /* Signals */
-
- /**
- IndicatorService::shutdown:
- @arg0: The #IndicatorService object
-
- Signaled when the service should shutdown as no one
- is listening anymore.
- */
- signals[SHUTDOWN] = g_signal_new (INDICATOR_SERVICE_SIGNAL_SHUTDOWN,
- G_TYPE_FROM_CLASS(klass),
- G_SIGNAL_RUN_LAST,
- G_STRUCT_OFFSET (IndicatorServiceClass, shutdown),
- NULL, NULL,
- g_cclosure_marshal_VOID__VOID,
- G_TYPE_NONE, 0, G_TYPE_NONE);
-
- /* Setting up the DBus interfaces */
- if (node_info == NULL) {
- GError * error = NULL;
-
- node_info = g_dbus_node_info_new_for_xml(_indicator_service, &error);
- if (error != NULL) {
- g_error("Unable to parse Indicator Service Interface description: %s", error->message);
- g_error_free(error);
- }
- }
-
- if (interface_info == NULL) {
- interface_info = g_dbus_node_info_lookup_interface(node_info, INDICATOR_SERVICE_INTERFACE);
-
- if (interface_info == NULL) {
- g_error("Unable to find interface '" INDICATOR_SERVICE_INTERFACE "'");
- }
- }
-
- return;
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ object_class->dispose = indicator_service_dispose;
+ object_class->finalize = indicator_service_finalize;
+
+ /* Property funcs */
+ object_class->set_property = set_property;
+ object_class->get_property = get_property;
+
+ /* Properties */
+ g_object_class_install_property(object_class, PROP_NAME,
+ g_param_spec_string(PROP_NAME_S,
+ "The DBus name for this service",
+ "This is the name that should be used on DBus for this service.",
+ NULL,
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+ g_object_class_install_property(object_class, PROP_VERSION,
+ g_param_spec_uint(PROP_VERSION_S,
+ "The version of the service that we're implementing.",
+ "A number to represent the version of the other APIs the service provides. This should match across the manager and the service",
+ 0, G_MAXUINT, 0,
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+
+ /* Signals */
+
+ /**
+ IndicatorService::shutdown:
+ @arg0: The #IndicatorService object
+
+ Signaled when the service should shutdown as no one
+ is listening anymore.
+ */
+ signals[SHUTDOWN] = g_signal_new (INDICATOR_SERVICE_SIGNAL_SHUTDOWN,
+ G_TYPE_FROM_CLASS(klass),
+ G_SIGNAL_RUN_LAST,
+ G_STRUCT_OFFSET (IndicatorServiceClass, shutdown),
+ NULL, NULL,
+ g_cclosure_marshal_VOID__VOID,
+ G_TYPE_NONE, 0, G_TYPE_NONE);
+
+ /* Setting up the DBus interfaces */
+ if (node_info == NULL) {
+ GError * error = NULL;
+
+ node_info = g_dbus_node_info_new_for_xml(_indicator_service, &error);
+ if (error != NULL) {
+ g_error("Unable to parse Indicator Service Interface description: %s", error->message);
+ g_error_free(error);
+ }
+ }
+
+ if (interface_info == NULL) {
+ interface_info = g_dbus_node_info_lookup_interface(node_info, INDICATOR_SERVICE_INTERFACE);
+
+ if (interface_info == NULL) {
+ g_error("Unable to find interface '" INDICATOR_SERVICE_INTERFACE "'");
+ }
+ }
+
+ return;
}
/* This function builds the variables, sets up the dbus
@@ -182,46 +182,46 @@ indicator_service_class_init (IndicatorServiceClass *klass)
static void
indicator_service_init (IndicatorService *self)
{
- IndicatorServicePrivate * priv = indicator_service_get_instance_private(self);
-
- /* Get the private variables in a decent state */
- priv->name = NULL;
- priv->timeout = 0;
- priv->watchers = NULL;
- priv->bus = NULL;
- priv->bus_cancel = NULL;
- priv->this_service_version = 0;
- priv->timeout_length = 500;
- priv->dbus_registration = 0;
- priv->replace_mode = FALSE;
-
- const gchar * timeoutenv = g_getenv("INDICATOR_SERVICE_SHUTDOWN_TIMEOUT");
- if (timeoutenv != NULL) {
- gdouble newtimeout = g_strtod(timeoutenv, NULL);
- if (newtimeout >= 1.0f) {
- priv->timeout_length = newtimeout;
- g_debug("Setting shutdown timeout to: %u", priv->timeout_length);
- }
- }
-
- const gchar * replaceenv = g_getenv("INDICATOR_SERVICE_REPLACE_MODE");
- if (replaceenv != NULL) {
- priv->replace_mode = TRUE;
- g_debug("Putting into replace mode");
- }
-
- /* NOTE: We're using g_free here because that's what needs to
- happen and we're watchers_remove as well to clean up the dbus
- watches we've setup. */
- priv->watchers = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, watchers_remove);
-
- priv->bus_cancel = g_cancellable_new();
- g_bus_get(G_BUS_TYPE_SESSION,
- priv->bus_cancel,
- bus_get_cb,
- self);
-
- return;
+ IndicatorServicePrivate * priv = indicator_service_get_instance_private(self);
+
+ /* Get the private variables in a decent state */
+ priv->name = NULL;
+ priv->timeout = 0;
+ priv->watchers = NULL;
+ priv->bus = NULL;
+ priv->bus_cancel = NULL;
+ priv->this_service_version = 0;
+ priv->timeout_length = 500;
+ priv->dbus_registration = 0;
+ priv->replace_mode = FALSE;
+
+ const gchar * timeoutenv = g_getenv("INDICATOR_SERVICE_SHUTDOWN_TIMEOUT");
+ if (timeoutenv != NULL) {
+ gdouble newtimeout = g_strtod(timeoutenv, NULL);
+ if (newtimeout >= 1.0f) {
+ priv->timeout_length = newtimeout;
+ g_debug("Setting shutdown timeout to: %u", priv->timeout_length);
+ }
+ }
+
+ const gchar * replaceenv = g_getenv("INDICATOR_SERVICE_REPLACE_MODE");
+ if (replaceenv != NULL) {
+ priv->replace_mode = TRUE;
+ g_debug("Putting into replace mode");
+ }
+
+ /* NOTE: We're using g_free here because that's what needs to
+ happen and we're watchers_remove as well to clean up the dbus
+ watches we've setup. */
+ priv->watchers = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, watchers_remove);
+
+ priv->bus_cancel = g_cancellable_new();
+ g_bus_get(G_BUS_TYPE_SESSION,
+ priv->bus_cancel,
+ bus_get_cb,
+ self);
+
+ return;
}
/* Unrefcounting the proxies and making sure that our
@@ -229,32 +229,32 @@ indicator_service_init (IndicatorService *self)
static void
indicator_service_dispose (GObject *object)
{
- IndicatorService * service = INDICATOR_SERVICE(object);
- IndicatorServicePrivate * priv = indicator_service_get_instance_private(service);
+ IndicatorService * service = INDICATOR_SERVICE(object);
+ IndicatorServicePrivate * priv = indicator_service_get_instance_private(service);
- g_clear_pointer (&priv->watchers, g_hash_table_destroy);
+ g_clear_pointer (&priv->watchers, g_hash_table_destroy);
- if (priv->timeout != 0) {
- g_source_remove(priv->timeout);
- priv->timeout = 0;
- }
+ if (priv->timeout != 0) {
+ g_source_remove(priv->timeout);
+ priv->timeout = 0;
+ }
- if (priv->dbus_registration != 0) {
- g_dbus_connection_unregister_object(priv->bus, priv->dbus_registration);
- /* Don't care if it fails, there's nothing we can do */
- priv->dbus_registration = 0;
- }
+ if (priv->dbus_registration != 0) {
+ g_dbus_connection_unregister_object(priv->bus, priv->dbus_registration);
+ /* Don't care if it fails, there's nothing we can do */
+ priv->dbus_registration = 0;
+ }
- g_clear_object (&priv->bus);
+ g_clear_object (&priv->bus);
- if (priv->bus_cancel != NULL) {
- g_cancellable_cancel(priv->bus_cancel);
- g_object_unref(priv->bus_cancel);
- priv->bus_cancel = NULL;
- }
+ if (priv->bus_cancel != NULL) {
+ g_cancellable_cancel(priv->bus_cancel);
+ g_object_unref(priv->bus_cancel);
+ priv->bus_cancel = NULL;
+ }
- G_OBJECT_CLASS (indicator_service_parent_class)->dispose (object);
- return;
+ G_OBJECT_CLASS (indicator_service_parent_class)->dispose (object);
+ return;
}
/* Freeing the name we're looking for and all of the
@@ -262,14 +262,14 @@ indicator_service_dispose (GObject *object)
static void
indicator_service_finalize (GObject *object)
{
- IndicatorService * service = INDICATOR_SERVICE(object);
- IndicatorServicePrivate * priv = indicator_service_get_instance_private(service);
+ IndicatorService * service = INDICATOR_SERVICE(object);
+ IndicatorServicePrivate * priv = indicator_service_get_instance_private(service);
- g_free (priv->name);
- g_clear_pointer (&priv->watchers, g_hash_table_destroy);
+ g_free (priv->name);
+ g_clear_pointer (&priv->watchers, g_hash_table_destroy);
- G_OBJECT_CLASS (indicator_service_parent_class)->finalize (object);
- return;
+ G_OBJECT_CLASS (indicator_service_parent_class)->finalize (object);
+ return;
}
/* Either copies a string for the name or it just grabs
@@ -277,36 +277,36 @@ indicator_service_finalize (GObject *object)
static void
set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec)
{
- IndicatorService * self = INDICATOR_SERVICE(object);
- g_return_if_fail(self != NULL);
-
- IndicatorServicePrivate * priv = indicator_service_get_instance_private(self);
- g_return_if_fail(priv != NULL);
-
- switch (prop_id) {
- /* *********************** */
- case PROP_NAME:
- if (G_VALUE_HOLDS_STRING(value)) {
- if (priv->name != NULL) {
- g_error("Name can not be set twice!");
- }
- priv->name = g_value_dup_string(value);
- try_and_get_name(self);
- } else {
- g_warning("Name property requires a string value.");
- }
- break;
- /* *********************** */
- case PROP_VERSION:
- priv->this_service_version = g_value_get_uint(value);
- break;
- /* *********************** */
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
- break;
- }
-
- return;
+ IndicatorService * self = INDICATOR_SERVICE(object);
+ g_return_if_fail(self != NULL);
+
+ IndicatorServicePrivate * priv = indicator_service_get_instance_private(self);
+ g_return_if_fail(priv != NULL);
+
+ switch (prop_id) {
+ /* *********************** */
+ case PROP_NAME:
+ if (G_VALUE_HOLDS_STRING(value)) {
+ if (priv->name != NULL) {
+ g_error("Name can not be set twice!");
+ }
+ priv->name = g_value_dup_string(value);
+ try_and_get_name(self);
+ } else {
+ g_warning("Name property requires a string value.");
+ }
+ break;
+ /* *********************** */
+ case PROP_VERSION:
+ priv->this_service_version = g_value_get_uint(value);
+ break;
+ /* *********************** */
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+
+ return;
}
/* Copies out the name into a value or the version number.
@@ -314,70 +314,69 @@ set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec
static void
get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec)
{
- IndicatorService * self = INDICATOR_SERVICE(object);
- g_return_if_fail(self != NULL);
-
- IndicatorServicePrivate * priv = indicator_service_get_instance_private(self);
- g_return_if_fail(priv != NULL);
-
- switch (prop_id) {
- /* *********************** */
- case PROP_NAME:
- if (G_VALUE_HOLDS_STRING(value)) {
- g_value_set_string(value, priv->name);
- } else {
- g_warning("Name property requires a string value.");
- }
- break;
- /* *********************** */
- case PROP_VERSION:
- g_value_set_uint(value, priv->this_service_version);
- break;
- /* *********************** */
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
- break;
- }
-
- return;
+ IndicatorService * self = INDICATOR_SERVICE(object);
+ g_return_if_fail(self != NULL);
+
+ IndicatorServicePrivate * priv = indicator_service_get_instance_private(self);
+ g_return_if_fail(priv != NULL);
+
+ switch (prop_id) {
+ /* *********************** */
+ case PROP_NAME:
+ if (G_VALUE_HOLDS_STRING(value)) {
+ g_value_set_string(value, priv->name);
+ } else {
+ g_warning("Name property requires a string value.");
+ }
+ break;
+ /* *********************** */
+ case PROP_VERSION:
+ g_value_set_uint(value, priv->this_service_version);
+ break;
+ /* *********************** */
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+
+ return;
}
/* Callback for getting our connection to DBus */
static void
bus_get_cb (__attribute__((unused)) GObject * object, GAsyncResult * res, gpointer user_data)
{
- GError * error = NULL;
- GDBusConnection * connection = g_bus_get_finish(res, &error);
-
- if (error != NULL) {
- g_warning("Unable to get a connection to the session DBus: %s", error->message);
- g_error_free(error);
- exit (0);
- }
-
- IndicatorServicePrivate * priv = indicator_service_get_instance_private(user_data);
-
- g_warn_if_fail(priv->bus == NULL);
- priv->bus = connection;
-
- if (priv->bus_cancel != NULL) {
- g_object_unref(priv->bus_cancel);
- priv->bus_cancel = NULL;
- }
-
- /* Now register our object on our new connection */
- priv->dbus_registration = g_dbus_connection_register_object(priv->bus,
- INDICATOR_SERVICE_OBJECT,
- interface_info,
- &interface_table,
- user_data,
- NULL,
- &error);
- if (error != NULL) {
- g_error("Unable to register the object to DBus: %s", error->message);
- }
-
- return;
+ GError * error = NULL;
+ GDBusConnection * connection = g_bus_get_finish(res, &error);
+
+ if (error != NULL)
+ {
+ g_error("Unable to get a connection to the session DBus: %s", error->message);
+ }
+
+ IndicatorServicePrivate * priv = indicator_service_get_instance_private(user_data);
+
+ g_warn_if_fail(priv->bus == NULL);
+ priv->bus = connection;
+
+ if (priv->bus_cancel != NULL) {
+ g_object_unref(priv->bus_cancel);
+ priv->bus_cancel = NULL;
+ }
+
+ /* Now register our object on our new connection */
+ priv->dbus_registration = g_dbus_connection_register_object(priv->bus,
+ INDICATOR_SERVICE_OBJECT,
+ interface_info,
+ &interface_table,
+ user_data,
+ NULL,
+ &error);
+ if (error != NULL) {
+ g_error("Unable to register the object to DBus: %s", error->message);
+ }
+
+ return;
}
/* A method has been called from our dbus inteface. Figure out what it
@@ -385,21 +384,21 @@ bus_get_cb (__attribute__((unused)) GObject * object, GAsyncResult * res, gpoint
static void
bus_method_call (__attribute__((unused)) GDBusConnection * connection, const gchar * sender, __attribute__((unused)) const gchar * path, __attribute__((unused)) const gchar * interface, const gchar * method, __attribute__((unused)) GVariant * params, GDBusMethodInvocation * invocation, gpointer user_data)
{
- IndicatorService * service = INDICATOR_SERVICE(user_data);
- GVariant * retval = NULL;
-
- if (g_strcmp0(method, "Watch") == 0) {
- retval = bus_watch(service, sender);
- } else if (g_strcmp0(method, "UnWatch") == 0) {
- unwatch_core(service, sender);
- } else if (g_strcmp0(method, "Shutdown") == 0) {
- g_signal_emit(G_OBJECT(service), signals[SHUTDOWN], 0, TRUE);
- } else {
- g_warning("Calling method '%s' on the indicator service and it's unknown", method);
- }
-
- g_dbus_method_invocation_return_value(invocation, retval);
- return;
+ IndicatorService * service = INDICATOR_SERVICE(user_data);
+ GVariant * retval = NULL;
+
+ if (g_strcmp0(method, "Watch") == 0) {
+ retval = bus_watch(service, sender);
+ } else if (g_strcmp0(method, "UnWatch") == 0) {
+ unwatch_core(service, sender);
+ } else if (g_strcmp0(method, "Shutdown") == 0) {
+ g_signal_emit(G_OBJECT(service), signals[SHUTDOWN], 0, TRUE);
+ } else {
+ g_warning("Calling method '%s' on the indicator service and it's unknown", method);
+ }
+
+ g_dbus_method_invocation_return_value(invocation, retval);
+ return;
}
/* A function to remove the signals on a proxy before we destroy
@@ -407,8 +406,8 @@ bus_method_call (__attribute__((unused)) GDBusConnection * connection, const gch
static void
watchers_remove (gpointer value)
{
- g_bus_unwatch_name(GPOINTER_TO_UINT(value));
- return;
+ g_bus_unwatch_name(GPOINTER_TO_UINT(value));
+ return;
}
/* This is the function that gets executed if we timeout
@@ -417,13 +416,13 @@ watchers_remove (gpointer value)
static gboolean
timeout_no_watchers (gpointer data)
{
- g_warning("No watchers, service timing out.");
- if (g_getenv("INDICATOR_ALLOW_NO_WATCHERS") == NULL) {
- g_signal_emit(G_OBJECT(data), signals[SHUTDOWN], 0, TRUE);
- } else {
- g_warning("\tblocked by environment variable.");
- }
- return FALSE;
+ g_warning("No watchers, service timing out.");
+ if (g_getenv("INDICATOR_ALLOW_NO_WATCHERS") == NULL) {
+ g_signal_emit(G_OBJECT(data), signals[SHUTDOWN], 0, TRUE);
+ } else {
+ g_warning("\tblocked by environment variable.");
+ }
+ return FALSE;
}
/* Callback saying that the name we were looking for has been
@@ -432,23 +431,23 @@ timeout_no_watchers (gpointer data)
static void
try_and_get_name_acquired_cb (GDBusConnection * connection, __attribute__((unused)) const gchar * name, gpointer user_data)
{
- g_return_if_fail(connection != NULL);
- g_return_if_fail(INDICATOR_IS_SERVICE(user_data));
+ g_return_if_fail(connection != NULL);
+ g_return_if_fail(INDICATOR_IS_SERVICE(user_data));
- IndicatorServicePrivate * priv = indicator_service_get_instance_private(user_data);
+ IndicatorServicePrivate * priv = indicator_service_get_instance_private(user_data);
- /* Check to see if we already had a timer, if so we want to
- extend it a bit. */
- if (priv->timeout != 0) {
- g_source_remove(priv->timeout);
- priv->timeout = 0;
- }
+ /* Check to see if we already had a timer, if so we want to
+ extend it a bit. */
+ if (priv->timeout != 0) {
+ g_source_remove(priv->timeout);
+ priv->timeout = 0;
+ }
- /* Allow some extra time at start up as things can be in high
- contention then. */
- priv->timeout = g_timeout_add(priv->timeout_length * 2, timeout_no_watchers, user_data);
+ /* Allow some extra time at start up as things can be in high
+ contention then. */
+ priv->timeout = g_timeout_add(priv->timeout_length * 2, timeout_no_watchers, user_data);
- return;
+ return;
}
/* Callback saying that we didn't get the name, so we need to
@@ -456,57 +455,57 @@ try_and_get_name_acquired_cb (GDBusConnection * connection, __attribute__((unuse
static void
try_and_get_name_lost_cb (GDBusConnection * connection, const gchar * name, gpointer user_data)
{
- g_return_if_fail(connection != NULL);
- g_return_if_fail(INDICATOR_IS_SERVICE(user_data));
-
- IndicatorServicePrivate * priv = indicator_service_get_instance_private(user_data);
-
- if (!priv->replace_mode) {
- g_warning("Name request failed.");
- g_signal_emit(G_OBJECT(user_data), signals[SHUTDOWN], 0, TRUE);
- } else {
- /* If we're in replace mode we can be a little more trickey
- here. We're going to tell the other guy to shutdown and hope
- that we get the name. */
- GDBusMessage * message = NULL;
- message = g_dbus_message_new_method_call(name,
- INDICATOR_SERVICE_OBJECT,
- INDICATOR_SERVICE_INTERFACE,
- "Shutdown");
-
- g_dbus_connection_send_message(connection, message, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
- g_object_unref(message);
-
- /* Check to see if we need to clean up a timeout */
- if (priv->timeout != 0) {
- g_source_remove(priv->timeout);
- priv->timeout = 0;
- }
-
- /* Set a timeout for no watchers if we can't get the name */
- priv->timeout = g_timeout_add(priv->timeout_length * 4, timeout_no_watchers, user_data);
- }
-
- return;
+ g_return_if_fail(connection != NULL);
+ g_return_if_fail(INDICATOR_IS_SERVICE(user_data));
+
+ IndicatorServicePrivate * priv = indicator_service_get_instance_private(user_data);
+
+ if (!priv->replace_mode) {
+ g_warning("Name request failed.");
+ g_signal_emit(G_OBJECT(user_data), signals[SHUTDOWN], 0, TRUE);
+ } else {
+ /* If we're in replace mode we can be a little more trickey
+ here. We're going to tell the other guy to shutdown and hope
+ that we get the name. */
+ GDBusMessage * message = NULL;
+ message = g_dbus_message_new_method_call(name,
+ INDICATOR_SERVICE_OBJECT,
+ INDICATOR_SERVICE_INTERFACE,
+ "Shutdown");
+
+ g_dbus_connection_send_message(connection, message, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL);
+ g_object_unref(message);
+
+ /* Check to see if we need to clean up a timeout */
+ if (priv->timeout != 0) {
+ g_source_remove(priv->timeout);
+ priv->timeout = 0;
+ }
+
+ /* Set a timeout for no watchers if we can't get the name */
+ priv->timeout = g_timeout_add(priv->timeout_length * 4, timeout_no_watchers, user_data);
+ }
+
+ return;
}
/* This function sets up the request for the name on dbus. */
static void
try_and_get_name (IndicatorService * service)
{
- IndicatorServicePrivate * priv = indicator_service_get_instance_private(service);
- g_return_if_fail(priv->name != NULL);
-
- g_bus_own_name(G_BUS_TYPE_SESSION,
- priv->name,
- G_BUS_NAME_OWNER_FLAGS_NONE,
- NULL, /* bus acquired */
- try_and_get_name_acquired_cb, /* name acquired */
- try_and_get_name_lost_cb, /* name lost */
- service,
- NULL); /* user data destroy */
-
- return;
+ IndicatorServicePrivate * priv = indicator_service_get_instance_private(service);
+ g_return_if_fail(priv->name != NULL);
+
+ g_bus_own_name(G_BUS_TYPE_SESSION,
+ priv->name,
+ G_BUS_NAME_OWNER_FLAGS_NONE,
+ NULL, /* bus acquired */
+ try_and_get_name_acquired_cb, /* name acquired */
+ try_and_get_name_lost_cb, /* name lost */
+ service,
+ NULL); /* user data destroy */
+
+ return;
}
/* When the watcher vanishes we don't really care about it
@@ -514,17 +513,17 @@ try_and_get_name (IndicatorService * service)
static void
watcher_vanished_cb (__attribute__((unused)) GDBusConnection * connection, const gchar * name, gpointer user_data)
{
- g_return_if_fail(INDICATOR_IS_SERVICE(user_data));
- IndicatorServicePrivate * priv = indicator_service_get_instance_private(user_data);
+ g_return_if_fail(INDICATOR_IS_SERVICE(user_data));
+ IndicatorServicePrivate * priv = indicator_service_get_instance_private(user_data);
- gpointer finddata = g_hash_table_lookup(priv->watchers, name);
- if (finddata != NULL) {
- unwatch_core(INDICATOR_SERVICE(user_data), name);
- } else {
- g_warning("Odd, we were watching for '%s' and it disappeard, but then it wasn't in the hashtable.", name);
- }
+ gpointer finddata = g_hash_table_lookup(priv->watchers, name);
+ if (finddata != NULL) {
+ unwatch_core(INDICATOR_SERVICE(user_data), name);
+ } else {
+ g_warning("Odd, we were watching for '%s' and it disappeard, but then it wasn't in the hashtable.", name);
+ }
- return;
+ return;
}
/* Here is the function that gets called by the dbus
@@ -534,31 +533,31 @@ watcher_vanished_cb (__attribute__((unused)) GDBusConnection * connection, const
static GVariant *
bus_watch (IndicatorService * service, const gchar * sender)
{
- g_return_val_if_fail(INDICATOR_IS_SERVICE(service), NULL);
- IndicatorServicePrivate * priv = indicator_service_get_instance_private(service);
-
- if (GPOINTER_TO_UINT(g_hash_table_lookup(priv->watchers, sender)) == 0) {
- guint watch = g_bus_watch_name_on_connection(priv->bus,
- sender,
- G_BUS_NAME_WATCHER_FLAGS_NONE,
- NULL, /* appeared, we dont' care, should have already happened. */
- watcher_vanished_cb,
- service,
- NULL);
-
- if (watch != 0) {
- g_hash_table_insert(priv->watchers, g_strdup(sender), GUINT_TO_POINTER(watch));
- } else {
- g_warning("Unable watch for '%s'", sender);
- }
- }
-
- if (priv->timeout != 0) {
- g_source_remove(priv->timeout);
- priv->timeout = 0;
- }
-
- return g_variant_new("(uu)", INDICATOR_SERVICE_VERSION, priv->this_service_version);
+ g_return_val_if_fail(INDICATOR_IS_SERVICE(service), NULL);
+ IndicatorServicePrivate * priv = indicator_service_get_instance_private(service);
+
+ if (GPOINTER_TO_UINT(g_hash_table_lookup(priv->watchers, sender)) == 0) {
+ guint watch = g_bus_watch_name_on_connection(priv->bus,
+ sender,
+ G_BUS_NAME_WATCHER_FLAGS_NONE,
+ NULL, /* appeared, we dont' care, should have already happened. */
+ watcher_vanished_cb,
+ service,
+ NULL);
+
+ if (watch != 0) {
+ g_hash_table_insert(priv->watchers, g_strdup(sender), GUINT_TO_POINTER(watch));
+ } else {
+ g_warning("Unable watch for '%s'", sender);
+ }
+ }
+
+ if (priv->timeout != 0) {
+ g_source_remove(priv->timeout);
+ priv->timeout = 0;
+ }
+
+ return g_variant_new("(uu)", INDICATOR_SERVICE_VERSION, priv->this_service_version);
}
/* Performs the core of loosing a watcher; it removes them
@@ -567,83 +566,83 @@ bus_watch (IndicatorService * service, const gchar * sender)
static void
unwatch_core (IndicatorService * service, const gchar * name)
{
- g_return_if_fail(name != NULL);
- g_return_if_fail(INDICATOR_IS_SERVICE(service));
-
- IndicatorServicePrivate * priv = indicator_service_get_instance_private(service);
-
- /* Remove us from the watcher list here */
- gpointer watcher_item = g_hash_table_lookup(priv->watchers, name);
- if (watcher_item != NULL) {
- gchar * safe_name = g_strdup(name);
- g_hash_table_remove(priv->watchers, safe_name);
- g_free(safe_name);
- } else {
- /* Odd that we couldn't find the person, but, eh */
- g_warning("Unable to find watcher who is unwatching: %s", name);
- }
-
- /* If we're out of watchers set the timeout for shutdown */
- if (g_hash_table_size(priv->watchers) == 0) {
- if (priv->timeout != 0) {
- /* This should never really happen, but let's ensure that
- bad things don't happen if it does. */
- g_warning("No watchers timeout set twice. Resolving, but odd.");
- g_source_remove(priv->timeout);
- priv->timeout = 0;
- }
- /* If we don't get a new watcher quickly, we'll shutdown. */
- priv->timeout = g_timeout_add(priv->timeout_length, timeout_no_watchers, service);
- }
-
- return;
+ g_return_if_fail(name != NULL);
+ g_return_if_fail(INDICATOR_IS_SERVICE(service));
+
+ IndicatorServicePrivate * priv = indicator_service_get_instance_private(service);
+
+ /* Remove us from the watcher list here */
+ gpointer watcher_item = g_hash_table_lookup(priv->watchers, name);
+ if (watcher_item != NULL) {
+ gchar * safe_name = g_strdup(name);
+ g_hash_table_remove(priv->watchers, safe_name);
+ g_free(safe_name);
+ } else {
+ /* Odd that we couldn't find the person, but, eh */
+ g_warning("Unable to find watcher who is unwatching: %s", name);
+ }
+
+ /* If we're out of watchers set the timeout for shutdown */
+ if (g_hash_table_size(priv->watchers) == 0) {
+ if (priv->timeout != 0) {
+ /* This should never really happen, but let's ensure that
+ bad things don't happen if it does. */
+ g_warning("No watchers timeout set twice. Resolving, but odd.");
+ g_source_remove(priv->timeout);
+ priv->timeout = 0;
+ }
+ /* If we don't get a new watcher quickly, we'll shutdown. */
+ priv->timeout = g_timeout_add(priv->timeout_length, timeout_no_watchers, service);
+ }
+
+ return;
}
/* API */
/**
- indicator_service_new:
- @name: The name for the service on dbus
+ indicator_service_new:
+ @name: The name for the service on dbus
- This function creates the service on DBus and tries to
- get a well-known name specified in @name. If the name
- can't be estabilished then the #IndicatorService::shutdown
- signal will be sent.
+ This function creates the service on DBus and tries to
+ get a well-known name specified in @name. If the name
+ can't be estabilished then the #IndicatorService::shutdown
+ signal will be sent.
- Return value: A brand new #IndicatorService object or #NULL
- if there is an error.
+ Return value: A brand new #IndicatorService object or #NULL
+ if there is an error.
*/
IndicatorService *
indicator_service_new (gchar * name)
{
- GObject * obj = g_object_new(INDICATOR_SERVICE_TYPE,
- PROP_NAME_S, name,
- NULL);
+ GObject * obj = g_object_new(INDICATOR_SERVICE_TYPE,
+ PROP_NAME_S, name,
+ NULL);
- return INDICATOR_SERVICE(obj);
+ return INDICATOR_SERVICE(obj);
}
/**
- indicator_service_new_version:
- @name: The name for the service on dbus
- @version: The version of the other interfaces provide
- by the service.
-
- This function creates the service on DBus and tries to
- get a well-known name specified in @name. If the name
- can't be estabilished then the #IndicatorService::shutdown
- signal will be sent.
-
- Return value: A brand new #IndicatorService object or #NULL
- if there is an error.
+ indicator_service_new_version:
+ @name: The name for the service on dbus
+ @version: The version of the other interfaces provide
+ by the service.
+
+ This function creates the service on DBus and tries to
+ get a well-known name specified in @name. If the name
+ can't be estabilished then the #IndicatorService::shutdown
+ signal will be sent.
+
+ Return value: A brand new #IndicatorService object or #NULL
+ if there is an error.
*/
IndicatorService *
indicator_service_new_version (gchar * name, guint version)
{
- GObject * obj = g_object_new(INDICATOR_SERVICE_TYPE,
- PROP_NAME_S, name,
- PROP_VERSION_S, version,
- NULL);
+ GObject * obj = g_object_new(INDICATOR_SERVICE_TYPE,
+ PROP_NAME_S, name,
+ PROP_VERSION_S, version,
+ NULL);
- return INDICATOR_SERVICE(obj);
+ return INDICATOR_SERVICE(obj);
}
diff --git a/src/indicator.symbols b/src/indicator.symbols
new file mode 100644
index 0000000..1cb68cd
--- /dev/null
+++ b/src/indicator.symbols
@@ -0,0 +1,6 @@
+{
+ global: indicator_*;
+ INDICATOR_*;
+ ICON_SIZE*;
+ local: _indicator_*;
+};
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index a299b65..cf84c55 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -10,7 +10,6 @@ find_program(DBUS_TEST_RUNNER dbus-test-runner)
function(add_test_library_by_name name)
set (TEST_LIBRARY_NAME ${name})
- set_source_files_properties(${TEST_LIBRARY_NAME}.c PROPERTIES COMPILE_FLAGS ${COMPILE_FLAGS})
add_library("${TEST_LIBRARY_NAME}" SHARED ${TEST_LIBRARY_NAME}.c)
target_include_directories("${TEST_LIBRARY_NAME}" PUBLIC ${PROJECT_DEPS_INCLUDE_DIRS})
target_include_directories("${TEST_LIBRARY_NAME}" PUBLIC "${CMAKE_SOURCE_DIR}/src")
@@ -21,7 +20,6 @@ endfunction()
function(add_test_executable_by_name name)
set (TEST_EXECUTABLE_NAME ${name})
- set_source_files_properties(${TEST_EXECUTABLE_NAME}.c PROPERTIES COMPILE_FLAGS ${COMPILE_FLAGS})
add_executable("${TEST_EXECUTABLE_NAME}" ${TEST_EXECUTABLE_NAME}.c)
target_compile_definitions("${TEST_EXECUTABLE_NAME}" PUBLIC BUILD_DIR="${CMAKE_CURRENT_BINARY_DIR}")
target_compile_definitions("${TEST_EXECUTABLE_NAME}" PUBLIC SRCDIR="${CMAKE_CURRENT_SOURCE_DIR}")
@@ -257,7 +255,6 @@ add_custom_command(
add_test("loader-tester" "loader-tester")
# indicator-test-service
-set_source_files_properties(indicator-test-service.c PROPERTIES COMPILE_FLAGS ${COMPILE_FLAGS})
add_executable("indicator-test-service" indicator-test-service.c)
target_include_directories("indicator-test-service" PUBLIC ${PROJECT_DEPS_INCLUDE_DIRS})
target_link_libraries("indicator-test-service" ${PROJECT_DEPS_LIBRARIES})
diff --git a/tests/dummy-indicator-blank.c b/tests/dummy-indicator-blank.c
index e447d6c..1f30f40 100644
--- a/tests/dummy-indicator-blank.c
+++ b/tests/dummy-indicator-blank.c
@@ -2,7 +2,7 @@
Test for libindicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/dummy-indicator-entry-func.h b/tests/dummy-indicator-entry-func.h
index 97b3a04..9d5e7a1 100644
--- a/tests/dummy-indicator-entry-func.h
+++ b/tests/dummy-indicator-entry-func.h
@@ -2,7 +2,7 @@
Test for libindicator
Copyright 2012 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/dummy-indicator-null.c b/tests/dummy-indicator-null.c
index adb05d3..addfd4c 100644
--- a/tests/dummy-indicator-null.c
+++ b/tests/dummy-indicator-null.c
@@ -2,7 +2,7 @@
Test for libindicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/dummy-indicator-signaler.c b/tests/dummy-indicator-signaler.c
index 2fa3a8b..ae7f121 100644
--- a/tests/dummy-indicator-signaler.c
+++ b/tests/dummy-indicator-signaler.c
@@ -2,7 +2,7 @@
Test for libindicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/dummy-indicator-simple.c b/tests/dummy-indicator-simple.c
index e42d1fe..bbe11b5 100644
--- a/tests/dummy-indicator-simple.c
+++ b/tests/dummy-indicator-simple.c
@@ -2,7 +2,7 @@
Test for libindicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/dummy-indicator-visible.c b/tests/dummy-indicator-visible.c
index 639f7c8..4e4d12f 100644
--- a/tests/dummy-indicator-visible.c
+++ b/tests/dummy-indicator-visible.c
@@ -2,7 +2,7 @@
Test for libindicator
Copyright 2012 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Charles Kerr <charles.kerr@canonical.com>
diff --git a/tests/service-manager-connect-service.c b/tests/service-manager-connect-service.c
index a17bada..7d8aa5a 100644
--- a/tests/service-manager-connect-service.c
+++ b/tests/service-manager-connect-service.c
@@ -2,7 +2,7 @@
Test for libayatana-indicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/service-manager-connect.c b/tests/service-manager-connect.c
index cf7cb6a..e655d8c 100644
--- a/tests/service-manager-connect.c
+++ b/tests/service-manager-connect.c
@@ -2,7 +2,7 @@
Test for libayatana-indicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/service-manager-no-connect.c b/tests/service-manager-no-connect.c
index 5b5d389..7f1e378 100644
--- a/tests/service-manager-no-connect.c
+++ b/tests/service-manager-no-connect.c
@@ -2,7 +2,7 @@
Test for libayatana-indicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/service-manager-nostart-connect.c b/tests/service-manager-nostart-connect.c
index 44a87a9..f596d1a 100644
--- a/tests/service-manager-nostart-connect.c
+++ b/tests/service-manager-nostart-connect.c
@@ -2,7 +2,7 @@
Test for libayatana-indicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/service-shutdown-timeout.c b/tests/service-shutdown-timeout.c
index 338ebb6..d8401a6 100644
--- a/tests/service-shutdown-timeout.c
+++ b/tests/service-shutdown-timeout.c
@@ -2,7 +2,7 @@
Test for libayatana-indicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/service-version-bad-service.c b/tests/service-version-bad-service.c
index 46574cb..28735be 100644
--- a/tests/service-version-bad-service.c
+++ b/tests/service-version-bad-service.c
@@ -2,7 +2,7 @@
Test for libayatana-indicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/service-version-good-service.c b/tests/service-version-good-service.c
index 3257ce2..c246c7b 100644
--- a/tests/service-version-good-service.c
+++ b/tests/service-version-good-service.c
@@ -2,7 +2,7 @@
Test for libayatana-indicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/service-version-manager.c b/tests/service-version-manager.c
index 07c6173..afb36f8 100644
--- a/tests/service-version-manager.c
+++ b/tests/service-version-manager.c
@@ -2,7 +2,7 @@
Test for libayatana-indicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/service-version-multiwatch-manager-impolite.c b/tests/service-version-multiwatch-manager-impolite.c
index 97678d3..dc5194a 100644
--- a/tests/service-version-multiwatch-manager-impolite.c
+++ b/tests/service-version-multiwatch-manager-impolite.c
@@ -2,7 +2,7 @@
Test for libayatana-indicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/service-version-multiwatch-manager.c b/tests/service-version-multiwatch-manager.c
index 7f82e82..d53de8d 100644
--- a/tests/service-version-multiwatch-manager.c
+++ b/tests/service-version-multiwatch-manager.c
@@ -2,7 +2,7 @@
Test for libayatana-indicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/service-version-multiwatch-service.c b/tests/service-version-multiwatch-service.c
index e1ca660..504f12a 100644
--- a/tests/service-version-multiwatch-service.c
+++ b/tests/service-version-multiwatch-service.c
@@ -2,7 +2,7 @@
Test for libayatana-indicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/test-desktop-shortcuts.c b/tests/test-desktop-shortcuts.c
index 48a668d..63917a2 100644
--- a/tests/test-desktop-shortcuts.c
+++ b/tests/test-desktop-shortcuts.c
@@ -2,7 +2,7 @@
Test for libayatana-indicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tests/test-loader.c b/tests/test-loader.c
index d6dabc5..fed3f40 100644
--- a/tests/test-loader.c
+++ b/tests/test-loader.c
@@ -2,7 +2,7 @@
Test for libindicator
Copyright 2009 Canonical Ltd.
-Copyright 2021 AyatanaIndicators
+Copyright 2021 Robert Tari
Authors:
Ted Gould <ted@canonical.com>
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt
index 9027490..14ce777 100644
--- a/tools/CMakeLists.txt
+++ b/tools/CMakeLists.txt
@@ -1,7 +1,6 @@
if (FLAVOUR_GTK3 AND ENABLE_IDO)
# ayatana-indicator-loader3
- set_source_files_properties(indicator-loader.c PROPERTIES COMPILE_FLAGS ${COMPILE_FLAGS})
add_executable("ayatana-indicator-loader3" indicator-loader.c)
target_include_directories("ayatana-indicator-loader3" PUBLIC ${PROJECT_DEPS_INCLUDE_DIRS})
target_include_directories("ayatana-indicator-loader3" PUBLIC "${CMAKE_SOURCE_DIR}/src")
diff --git a/tools/indicator-loader.c b/tools/indicator-loader.c
index 159b17b..8bd5f68 100644
--- a/tools/indicator-loader.c
+++ b/tools/indicator-loader.c
@@ -3,7 +3,7 @@
* and during development of them.
*
* Copyright 2009 Canonical Ltd.
- * Copyright 2021 AyatanaIndicators
+ * Copyright 2021 Robert Tari
*
* Authors:
* Ted Gould <ted@canonical.com>