commit 0b9837c4f2f9bf45e538837970872464ed1c9b01
Author: Christian Persch <
[email protected]>
Date: Mon Feb 6 20:02:52 2012 +0100
Dist the schema file
gucharmap/Makefile.am | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
commit 741f4eb53cfc4641b7e4b892d843b850a8b36bca
Author: Christian Persch <
[email protected]>
Date: Mon Feb 6 19:58:29 2012 +0100
Rename schema
Makefile.am | 2 --
gucharmap/Makefile.am | 4 ++--
gucharmap/gucharmap-settings.c | 2 +-
gucharmap/gucharmap-window.c | 2 +-
...p.gschema.xml => org.gnome.Charmap.gschema.xml} | 6 +++---
5 files changed, 7 insertions(+), 9 deletions(-)
commit f60baa0e0eecaf678fe29598d533d58707db9797
Author: Christian Persch <
[email protected]>
Date: Mon Feb 6 19:49:32 2012 +0100
Update NEWS
NEWS | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
commit 01cb129a9160e192aaeb146d20ff6fed97111992
Author: Daniel Mustieles <
[email protected]>
Date: Mon Feb 6 18:01:19 2012 +0100
Updated Spanish translation
po/es.po | 248 ++++++++++++++++++++++++++++++--------------------------------
1 files changed, 119 insertions(+), 129 deletions(-)
commit 1b2cd9c84ab09db5caad13db5bbff3086b16ac0b
Author: Christian Persch <
[email protected]>
Date: Mon Feb 6 16:59:15 2012 +0100
Update to Unicode 6.1.0 final
gucharmap/gucharmap-window.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
commit e927e358dbf77ea4ea50a34b4de544684e079cb3
Author: Ryan Lortie <
[email protected]>
Date: Tue Jan 31 12:53:07 2012 -0500
GSettings: ensure last-char is valid before using
In the case that the empty string got into the user's settings (or
overrides, or translations, etc.) we would end up selecting U+0000 as
the default character.
Instead, in the case that the setting is not a full single unicode
character, fall back to another more reasonable default.
gucharmap/gucharmap-window.c | 22 ++++++++++++++++++----
1 files changed, 18 insertions(+), 4 deletions(-)
commit d1212a5b5c08f4b71bfbca1a419f87488923d623
Author: Chao-Hsiung Liao <
[email protected]>
Date: Sun Jan 29 23:34:45 2012 +0800
Updated Traditional Chinese translation(Hong Kong and Taiwan)
po/zh_HK.po | 716 ++++++++++++++++++++++++++++++-----------------------------
po/zh_TW.po | 714 ++++++++++++++++++++++++++++++-----------------------------
2 files changed, 731 insertions(+), 699 deletions(-)
commit c6cefbb843c9fac8c12ca76bd41d073bb201e50a
Author: Kjartan Maraas <
[email protected]>
Date: Sat Jan 28 16:43:59 2012 +0100
Updated Norwegian bokmål translation
po/nb.po | 189 ++++++++++++++++++++++++++++++--------------------------------
1 files changed, 91 insertions(+), 98 deletions(-)
commit a3112d70de32a5ceec9cd672771373df6e7de8e2
Author: Ryan Lortie <
[email protected]>
Date: Fri Jan 27 10:38:55 2012 -0500
Keep with the modern Gtk widgetry times
Stop using boxes. GtkGrid is the new black.
https://bugzilla.gnome.org/show_bug.cgi?id=668852
gucharmap/gucharmap-charmap.c | 3 ++
gucharmap/gucharmap-search-dialog.c | 16 +++++++-----
gucharmap/gucharmap-window.c | 45 +++++++++++-----------------------
3 files changed, 27 insertions(+), 37 deletions(-)
commit 2a7f9d61a413b83aaf84b33bdacc8847120eb9a3
Author: Ryan Lortie <
[email protected]>
Date: Fri Jan 27 09:31:56 2012 -0500
Fix a sign-compare warning
We had
if (signed < unsigned - unsigned)
which had been 'fixed' to
if (signed < (int)unsigned - unsigned)
which didn't work because the subtraction between the two unsigned
values caused the signed value to be promoted back to unsigned again.
Change that to
if (signed < (int) (unsigned - unsigned))
which means that the signed math will be done on the unsigned ints, but
the result will properly be interpreted as being signed before doing the
compare.
https://bugzilla.gnome.org/show_bug.cgi?id=668843
gucharmap/gucharmap-block-codepoint-list.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit febc4392d34f2a23bb3048c9f8969c630bc292c4
Author: Piotr Drąg <
[email protected]>
Date: Fri Jan 27 20:58:36 2012 +0100
Updated POTFILES.in
po/POTFILES.in | 11 +++++------
1 files changed, 5 insertions(+), 6 deletions(-)
commit ff3c835b3d1ddea9df1326ff95dda77c44b6aa25
Author: Ryan Lortie <
[email protected]>
Date: Fri Jan 27 10:19:33 2012 -0500
Drop the search progress bar
It looks very silly and, at least on my computer, you can barely see a
flicker in it before the search is done. Would be better not to have it
at all.
https://bugzilla.gnome.org/show_bug.cgi?id=668852
gucharmap/gucharmap-window.c | 34 +---------------------------------
gucharmap/gucharmap-window.h | 4 ----
2 files changed, 1 insertions(+), 37 deletions(-)
commit 3bca4bf448e3a0ba2c22298c81da871457f8e06c
Author: Ryan Lortie <
[email protected]>
Date: Fri Jan 27 09:53:41 2012 -0500
Some trivial fixups
Stop using a couple of deprecated symbols and fix a couple other
warnings.
https://bugzilla.gnome.org/show_bug.cgi?id=668846
gucharmap/gucharmap-charmap.c | 8 ++------
gucharmap/gucharmap-chartable-accessible.c | 6 +++---
gucharmap/gucharmap-search-dialog.c | 2 +-
gucharmap/gucharmap-window.c | 4 +---
4 files changed, 7 insertions(+), 13 deletions(-)
commit 6eee95f6e150c4735790d3ec6aae50b805cd59fd
Author: Ryan Lortie <
[email protected]>
Date: Fri Jan 27 02:53:03 2012 -0500
port to GSettings
gucharmap-settings only exists now for the window geometry (until Gtk
grows support for this).
Translation of the schema is also currently disabled, pending proper
support in intltool.
https://bugzilla.gnome.org/show_bug.cgi?id=624892
Makefile.am | 20 +--
configure.ac | 27 +--
gucharmap.schemas.in | 100 ----------
gucharmap/Makefile.am | 8 +-
gucharmap/gucharmap-chapters-view.c | 7 -
gucharmap/gucharmap-chapters-view.h | 2 -
gucharmap/gucharmap-settings.c | 283 +----------------------------
gucharmap/gucharmap-settings.h | 10 -
gucharmap/gucharmap-unicode-info.c | 38 ----
gucharmap/gucharmap-unicode-info.h | 3 -
gucharmap/gucharmap-window.c | 65 +++++--
gucharmap/gucharmap-window.h | 1 +
gucharmap/main.c | 11 -
gucharmap/org.gnome.gucharmap.gschema.xml | 82 +++++++++
14 files changed, 154 insertions(+), 503 deletions(-)
commit 94230bc31ee3f394afae3cee3c9d359331a9f3e7
Author: Ivaylo Valkov <
[email protected]>
Date: Tue Jan 24 07:07:36 2012 +0200
Updated Bulgarian translation
po/bg.po | 615 +++++++++++++++++++++++++++++++++-----------------------------
1 files changed, 329 insertions(+), 286 deletions(-)
commit 1faab498592a645dcb16cb5b8ca0fda35bbd9747
Author: Matej Urbančič <
[email protected]>
Date: Sun Jan 15 13:46:14 2012 +0100
Updated Slovenian translation
po/sl.po | 87 ++++++++++++++++++++++++++++++--------------------------------
1 files changed, 42 insertions(+), 45 deletions(-)
commit 6a7f9a58ee0e6835ec24a39495543e2281c4fb59
Author: Jovan Naumovski <
[email protected]>
Date: Sat Jan 14 22:34:57 2012 +0100
Updated Macedonian translation.
po/mk.po | 1154 +++++++++++++++++++++++++++++++++++++++++---------------------
1 files changed, 768 insertions(+), 386 deletions(-)
commit a0694c4b5816e1c35c63c8ab99d72edb7e3270f6
Author: Yaron Shahrabani <
[email protected]>
Date: Fri Jan 13 09:56:22 2012 +0200
Updated Hebrew translation.
po/he.po | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
commit 167e515f5c3d06dea2eb2db700e5b44480e86bb3
Author: Gil Forcada <
[email protected]>
Date: Thu Jan 12 21:52:52 2012 +0100
[l10n]Fixed Catalan documentation
help/ca/ca.po | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
commit 472b6ffb7ce787fa016810d44f5fc38a54d560bc
Author: Ihar Hrachyshka <
[email protected]>
Date: Tue Jan 10 01:37:25 2012 +0300
Updated Belarusian translation.
po/be.po | 607 +++++++++++++++++++++++++++++++++-----------------------------
1 files changed, 325 insertions(+), 282 deletions(-)
commit aef0f9c107fcc54784e3d495ed2f524e6aeb37aa
Author: Matej Urbančič <
[email protected]>
Date: Wed Jan 4 20:52:22 2012 +0100
Updated Slovenian translation
po/sl.po | 767 +++++++++++++++++++++++++++++++++-----------------------------
1 files changed, 410 insertions(+), 357 deletions(-)
commit a07420acce4d9602dec4e1c562346cfc5791426c
Author: Yaron Shahrabani <
[email protected]>
Date: Fri Dec 30 11:47:08 2011 +0200
Updated Hebrew translation.
po/he.po | 765 +++++++++++++++++++++++++++++++++++---------------------------
1 files changed, 434 insertions(+), 331 deletions(-)
commit 898ce471e77a67026c2a2bbfe69483a849b50fca
Author: Christian Persch <
[email protected]>
Date: Tue Dec 20 14:23:57 2011 +0100
build: Go GPL3+
Everything else is GPL3+ too, so use the or-later option to make
this file so, too.
acinclude.m4 | 2 +-
configure.ac | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)