[Xfce4-commits] xfce4-power-manager:master Updates for release.

2012-04-28 Thread Nick Schermer
Updating branch refs/heads/master
 to cf627a64c1b3691e773bf03e5275be4adba9ac4a (commit)
   from e67b276afe470acbe50dd95b32f7c0e988b2d8cf (commit)

commit cf627a64c1b3691e773bf03e5275be4adba9ac4a
Author: Nick Schermer n...@xfce.org
Date:   Sat Apr 28 22:39:06 2012 +0200

Updates for release.

 NEWS|   23 +++
 configure.ac.in |   14 +++---
 2 files changed, 26 insertions(+), 11 deletions(-)

diff --git a/NEWS b/NEWS
index d75fb03..b4280f1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,18 @@
+1.2.0
+=
+- Fix compilation without dpms.
+- Fix incorrect dialog message and error.
+- Plug memory leak.
+- Use valid printf string.
+- Fix compilation with polkit in freebsd (bug #8712).
+- Translation updates: Czech, Danish, German, English (United
+  Kingdom), Spanish (Castilian), Basque, Finnish, French, Galician,
+  Croatian, Hungarian, Italian, Japanese, Kazakh, Korean, Lithuanian,
+  Dutch (Flemish), Norwegian Nynorsk, Portuguese, Portuguese
+  (Brazilian), Romanian, Russian, Slovak, Ukrainian, Chinese (China),
+  Chinese (Taiwan).
+
+
 1.1.0
 =
 - Show dialog in settings category.
@@ -5,7 +20,7 @@
 - Put traps around X functions (bug #7999).
 - Prevent idle being called on removed battery (bug #7851).
 - Fix brightness not working with numlock on (bug #6549).
-- Translation updates: Greek, French, Japanese, Korean, Dutch 
+- Translation updates: Greek, French, Japanese, Korean, Dutch
   (Flemish), Polish, Portuguese, Turkish.
 
 
@@ -36,7 +51,7 @@
 ===
 - Because on some systems we might not have the brightness keys mapped.
   LCD brightness change are not reflected to xfpm when keys are pressed, so
-  save the actual brightness before dimming the screen on idle to restore it 
+  save the actual brightness before dimming the screen on idle to restore it
   afterword. (bug #5811).
 - Check if DPMS is enabled before doing action on lid close event (bug #5805).
 - Allow 1% as a minimum critical charge level.
@@ -53,7 +68,7 @@
 ===
 - Missing signal handler for power button settings (bug #5656).
 - Allow 5% as a minimum critical charge instead of 10%.
-- Change some property names, specially for buttons to avoid 
+- Change some property names, specially for buttons to avoid
   problems with old 0.6 configuration.
 
 0.8.3
@@ -62,6 +77,6 @@
 - Make it possible to compile without network manager support.
 - Add never show icon to the system tray configuration (bug #5613).
 - Fix a typo that prevents from getting the correct critical configuration 
(bug #5619).
-- Use Gtk as a popup indicator to show the brightness level as the cairo seems 
to be 
+- Use Gtk as a popup indicator to show the brightness level as the cairo seems 
to be
   problematic on some hardware. (bug #5544 #5632).
 - Better alignement in the interface file, worked by Josef Havran.
diff --git a/configure.ac.in b/configure.ac.in
index 592eba2..17d4e21 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -1,9 +1,9 @@
 m4_define([intltool_minimum_version], [0.31])
-m4_define([xfpm_version_major],  [1])
-m4_define([xfpm_version_minor],  [1])
-m4_define([xfpm_version_micro],  [0])
-m4_define([xfpm_version_build],  [])
-m4_define([xfpm_version_tag],[git])
+m4_define([xfpm_version_major], [1])
+m4_define([xfpm_version_minor], [2])
+m4_define([xfpm_version_micro], [0])
+m4_define([xfpm_version_build], [])
+m4_define([xfpm_version_tag],   [])
 m4_define([xfpm_version], 
[xfpm_version_major().xfpm_version_minor().xfpm_version_micro()ifelse(xfpm_version_tag(),
 [git], [xfpm_version_tag().xfpm_version_build()], [xfpm_version_tag()])])
 
 AC_INIT([xfce4-power-manager], [xfpm_version], [http://bugzilla.xfce.org/])
@@ -28,8 +28,8 @@ AC_PROG_INTLTOOL([intltool_minimum_version], [no-xml])
 # = #
 #   Initialize libtool  #
 # = #
-AC_DISABLE_STATIC()
-AC_PROG_LIBTOOL()
+LT_PREREQ([2.2.6])
+LT_INIT([disable-static])
 
 #  #
 #   Check for headers needed for standard interfaces   #
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-power-manager:master Updates for release.

2012-04-13 Thread Nick Schermer
Updating branch refs/heads/master
 to 5112a0e454882c973765927724cb82bd9675bdb2 (commit)
   from 6c96bfaee886b278462efaed25c4899de096347b (commit)

commit 5112a0e454882c973765927724cb82bd9675bdb2
Author: Nick Schermer n...@xfce.org
Date:   Sat Apr 14 00:52:27 2012 +0200

Updates for release.

 NEWS |   11 +++
 configure.ac.in  |4 ++--
 module.xml   |   19 ---
 settings/xfce4-power-manager-settings.desktop.in |4 ++--
 4 files changed, 15 insertions(+), 23 deletions(-)

diff --git a/NEWS b/NEWS
index 6992888..d75fb03 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,14 @@
+1.1.0
+=
+- Show dialog in settings category.
+- Store brightness properties as uint (bug #7791).
+- Put traps around X functions (bug #7999).
+- Prevent idle being called on removed battery (bug #7851).
+- Fix brightness not working with numlock on (bug #6549).
+- Translation updates: Greek, French, Japanese, Korean, Dutch 
+  (Flemish), Polish, Portuguese, Turkish.
+
+
 1.0.11
 ==
 - Solaris-specific code for determining the start time of a process.
diff --git a/configure.ac.in b/configure.ac.in
index efd480a..7a55afa 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -1,7 +1,7 @@
 m4_define([intltool_minimum_version], [0.31])
 m4_define([xfpm_version_major],  [1])
-m4_define([xfpm_version_minor],  [0])
-m4_define([xfpm_version_micro],  [11])
+m4_define([xfpm_version_minor],  [1])
+m4_define([xfpm_version_micro],  [0])
 m4_define([xfpm_version_build],  [])
 m4_define([xfpm_version_tag],[])
 m4_define([xfpm_version], 
[xfpm_version_major().xfpm_version_minor().xfpm_version_micro()ifelse(xfpm_version_tag(),
 [git], [xfpm_version_tag().xfpm_version_build()], [xfpm_version_tag()])])
diff --git a/module.xml b/module.xml
deleted file mode 100644
index ff12eb9..000
--- a/module.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-?xml version='1.0' encoding='UTF-8'?
-Project xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
- xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#;
- xmlns:foaf=http://xmlns.com/foaf/0.1/;
- xmlns:gnome=http://api.gnome.org/doap-extensions#;
- xmlns=http://usefulinc.com/ns/doap#;
-
-  name xml:lang=enxfce4-power-manager/name
-  shortdesc xml:lang=enPower Manager for Xfce/shortdesc
-  homepage 
rdf:resource=http://goodies.xfce.org/projects/applications/xfce4-power-manager/
-
-  maintainer
-foaf:Person
-  foaf:nameAli Abdallah/foaf:name
-  foaf:mboxmailto:al...@xfce.org/foaf:mbox
-  gnome:useridaliov/gnome:userid
-/foaf:Person
-  /maintainer
-/Project
diff --git a/settings/xfce4-power-manager-settings.desktop.in 
b/settings/xfce4-power-manager-settings.desktop.in
index 7cbd09f..65d97e3 100644
--- a/settings/xfce4-power-manager-settings.desktop.in
+++ b/settings/xfce4-power-manager-settings.desktop.in
@@ -7,8 +7,8 @@ Exec=xfce4-power-manager-settings
 Icon=xfpm-ac-adapter
 Terminal=false
 Type=Application
-Categories=X-XFCE;Settings;DesktopSettings;X-XfceSettingsDialog;
+Categories=XFCE;GTK;Settings;DesktopSettings;X-XFCE-SettingsDialog;X-XFCE-HardwareSettings;
 OnlyShowIn=XFCE;
 StartupNotify=true
 X-XfcePluggable=true
-X-XfceHelpFile=xfce4-power-manager.html
+X-XfceHelpFile=xfce4-power-manager
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-power-manager:master Updates for release.

2012-03-28 Thread Nick Schermer
Updating branch refs/heads/master
 to d6ef3927cead0016731dcfe3427adbfa434dfb30 (commit)
   from 7f40240f7a1a2d3a7a62b4cb4e6311bc59e107b1 (commit)

commit d6ef3927cead0016731dcfe3427adbfa434dfb30
Author: Nick Schermer n...@xfce.org
Date:   Wed Mar 28 20:01:05 2012 +0200

Updates for release.

 NEWS|   23 +++
 configure.ac.in |2 +-
 2 files changed, 24 insertions(+), 1 deletions(-)

diff --git a/NEWS b/NEWS
index f5f8d58..6992888 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,26 @@
+1.0.11
+==
+- Solaris-specific code for determining the start time of a process.
+- Don't attach to the status icon if libnotify = 0.7.
+- Corrected check for Solaris macros
+- Fix default spin down toggle value.
+- Fix a bunch of set but unused variables.
+- Support NetworkManager 0.9
+- Fix configure.ac.in with openbsd.
+- Fix libnotify detection of notify_notification_attach_to_status_icon.
+- Fix Broken empty battery icon.
+- Change backlight property type to long.
+- Only dim brightness if the current level is brighter.
+- Refresh adaptor icon when battery device removed.
+- Optimize icons.
+- Translation updates (ar, bg, ca, cs, da, de, es, et, eu, fi, fr, hr,
+  hu, id, is, it, ja, kk, ko, lt, nl, nn, pl, pt, pt_BR, ru, sk, sv,
+  te, tr, uk, zh_CN, zh_TW).
+
+
+[...]
+
+
 0.8.4.1
 ===
 - Because on some systems we might not have the brightness keys mapped.
diff --git a/configure.ac.in b/configure.ac.in
index b925ec1..efd480a 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -1,7 +1,7 @@
 m4_define([intltool_minimum_version], [0.31])
 m4_define([xfpm_version_major],  [1])
 m4_define([xfpm_version_minor],  [0])
-m4_define([xfpm_version_micro],  [10])
+m4_define([xfpm_version_micro],  [11])
 m4_define([xfpm_version_build],  [])
 m4_define([xfpm_version_tag],[])
 m4_define([xfpm_version], 
[xfpm_version_major().xfpm_version_minor().xfpm_version_micro()ifelse(xfpm_version_tag(),
 [git], [xfpm_version_tag().xfpm_version_build()], [xfpm_version_tag()])])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits