platform/upstream/evolution-data-server.git
13 years agoBug #648844 - IMAP Error: LIST failed: wildcards not permitted in username
Milan Crha [Thu, 28 Apr 2011 08:49:24 +0000 (10:49 +0200)]
Bug #648844 - IMAP Error: LIST failed: wildcards not permitted in username

13 years agoBug 628142 - Fix handling of simultaneous get_message requests
David Woodhouse [Wed, 27 Apr 2011 23:35:56 +0000 (00:35 +0100)]
Bug 628142 - Fix handling of simultaneous get_message requests

Drop the hash table of EFlags completely. It's broken, because the UID
we use as the hash key isn't actually unique; the same UID can exist in
multiple folders. And the lifetime issues on the EFlag weren't cleanly
solvable (yeah, we can add a refcounting wrapper, but ick).

We were *already* using imapx_is_job_in_queue() to check *properly* if
there was an existing fetch. So just implement a simple 'fetch counter'
with a GCond and a corresponding GMutex, bump that count by one each
time any fetch completes, and use the GCond when waiting for a *specific*
fetch to complete, inside a while (imapx_is_job_in_queue()) loop.

13 years agoUpdated Slovenian translation
Andrej Žnidaršič [Wed, 27 Apr 2011 17:46:52 +0000 (19:46 +0200)]
Updated Slovenian translation

13 years agoReplace CamelSessionThreadMsg with a more modern API.
Matthew Barnes [Sat, 23 Apr 2011 13:45:35 +0000 (09:45 -0400)]
Replace CamelSessionThreadMsg with a more modern API.

This introduces camel_session_submit_job() to replace the older
CamelSessionThreadMsg API, providing a simpler mechanism for providers
to initiate low-priority background jobs.  Jobs can be submitted from
any thread, but execution of the job is always as follows:

1) A "job-started" signal is emitted from the thread in which the
   CamelSession was created.  This is typically the same thread that
   hosts the global default GMainContext, or "main" thread.

2) The callback function passed to camel_session_submit_job() is invoked
   from a different thread where it's safe to call synchronous functions.

3) Once the callback has returned, a "job-finished" signal is emitted
   from the same thread as "job-started" was emitted.

4) If a GDestroyNotify callback was passed to camel_session_submit_job(),
   it is invoked and passed the callback closure so it can be freed.

The signature of the callback function is easier to work with:

    void  (*CamelSessionCallback)  (CamelSession *session,
                                    GCancellable *cancellable,
                                    gpointer user_data,
                                    GError **error)

The cancellable is actually a CamelOperation, so status messages can be
pushed and popped and progress reported through the CamelOperation API.
The GError pointer is never NULL, so you can safely dereference it in
the callback function to check for errors.

13 years agoRemove unused camel_session_thread_wait().
Matthew Barnes [Sat, 23 Apr 2011 00:22:34 +0000 (20:22 -0400)]
Remove unused camel_session_thread_wait().

13 years agoRemove unused CamelTimeoutCallback typedef.
Matthew Barnes [Fri, 22 Apr 2011 21:10:23 +0000 (17:10 -0400)]
Remove unused CamelTimeoutCallback typedef.

13 years agoCamelStore: Remove a dead assignment.
Matthew Barnes [Fri, 22 Apr 2011 13:04:43 +0000 (09:04 -0400)]
CamelStore: Remove a dead assignment.

13 years agoCamelSession: Remove some leftover debug messages.
Matthew Barnes [Fri, 22 Apr 2011 12:49:51 +0000 (08:49 -0400)]
CamelSession: Remove some leftover debug messages.

13 years agoCamelStore: Chain up in the constructed() method
Matthew Barnes [Fri, 22 Apr 2011 12:48:51 +0000 (08:48 -0400)]
CamelStore: Chain up in the constructed() method

Forgot to add that part yesterday.  Nothing works without it.

13 years agoRework how CamelServices are added to CamelSession.
Matthew Barnes [Tue, 19 Apr 2011 19:32:47 +0000 (15:32 -0400)]
Rework how CamelServices are added to CamelSession.

* Give CamelServices a simple unique ID string.  That will be its
  identity from now on, not its URL.

* Split adding a CamelService and retrieving a CamelService into two
  separate operations.  Adding a CamelService requires both a UID and
  CamelURL (for now), retrieving a CamelService just requires the UID.

* CamelService now implements the GInitable interface, replacing its
  construct() method.

13 years agoDefine a boxed GType for CamelURL.
Matthew Barnes [Sun, 17 Apr 2011 23:59:15 +0000 (19:59 -0400)]
Define a boxed GType for CamelURL.

And clean up the header file.

13 years agoBug #645498 - [maildir] Fails to show already read messages again
Milan Crha [Wed, 20 Apr 2011 15:24:34 +0000 (17:24 +0200)]
Bug #645498 - [maildir] Fails to show already read messages again

13 years agoUpdate the translations now that bug #646619 is fixed
Wouter Bolsterlee [Tue, 19 Apr 2011 19:14:13 +0000 (21:14 +0200)]
Update the translations now that bug #646619 is fixed

13 years agoBug #645783 - Return safe paths from CamelService::get_path()
Milan Crha [Tue, 19 Apr 2011 10:13:57 +0000 (12:13 +0200)]
Bug #645783 - Return safe paths from CamelService::get_path()

13 years agoBug #645239 - Fix build error when enabling kerberos without specifying path
Niki Guldbrand [Tue, 19 Apr 2011 09:18:46 +0000 (11:18 +0200)]
Bug #645239 - Fix build error when enabling kerberos without specifying path

13 years agoFix few memory leaks
Milan Crha [Mon, 18 Apr 2011 17:14:03 +0000 (19:14 +0200)]
Fix few memory leaks

13 years agoBug #646619 - Typo in user-visible string: "defalut" should be "default"
Milan Crha [Mon, 18 Apr 2011 16:53:50 +0000 (18:53 +0200)]
Bug #646619 - Typo in user-visible string: "defalut" should be "default"

13 years agoBug #647429 - Hide port-entry for providers without port
Dan Vrátil [Mon, 18 Apr 2011 16:03:54 +0000 (18:03 +0200)]
Bug #647429 - Hide port-entry for providers without port

13 years agoFix Gtk-Doc notation in Camel.
Matthew Barnes [Sun, 17 Apr 2011 18:35:38 +0000 (14:35 -0400)]
Fix Gtk-Doc notation in Camel.

13 years agoSeal up CamelService.
Matthew Barnes [Sun, 17 Apr 2011 15:17:50 +0000 (11:17 -0400)]
Seal up CamelService.

And add accessor functions:

    camel_service_get_camel_url()
    camel_service_get_connection_status()

This change increments libcamel's soname.

13 years agoUpdated Swedish translation
Daniel Nylander [Sun, 17 Apr 2011 06:54:49 +0000 (08:54 +0200)]
Updated Swedish translation

13 years agoAdded UG translation
Abduxukur Abdurixit [Fri, 15 Apr 2011 22:51:36 +0000 (00:51 +0200)]
Added UG translation

13 years agoPull in translations from Evolution for "On This Computer"
David Woodhouse [Fri, 15 Apr 2011 19:34:47 +0000 (20:34 +0100)]
Pull in translations from Evolution for "On This Computer"

13 years agoBug 647873 [2/2] - e_cal_new_system_foo() should create source in GConf
David Woodhouse [Fri, 15 Apr 2011 11:19:00 +0000 (12:19 +0100)]
Bug 647873 [2/2] - e_cal_new_system_foo() should create source in GConf

13 years agoBug 647873 [1/2] - Fix comparison of URI in e_cal_new_from_uri().
David Woodhouse [Fri, 15 Apr 2011 11:20:04 +0000 (12:20 +0100)]
Bug 647873 [1/2] - Fix comparison of URI in e_cal_new_from_uri().

If the URI only had a relative_uri property, we should build the full URI
for comparison rather than just skipping it. Otherwise we get false
mismatches.

13 years agoUpdated Spanish translation
Daniel Mustieles [Tue, 12 Apr 2011 19:30:25 +0000 (21:30 +0200)]
Updated Spanish translation

13 years agoFix read off end of string in NTLM SSO support
David Woodhouse [Sat, 9 Apr 2011 20:39:25 +0000 (21:39 +0100)]
Fix read off end of string in NTLM SSO support

Didn't actually break things, since the base64 decode usually just gave us
an extra few bytes before hitting a character it didn't like and stopping
anyway, but naughty nonetheless. Valgrind told me off for it, and rightly so.

13 years agoBug 46117 - e-calendar-factory does not exit
Matthew Barnes [Thu, 7 Apr 2011 20:11:55 +0000 (16:11 -0400)]
Bug 46117 - e-calendar-factory does not exit

13 years agoAdd support for NTLM single-sign-on using /usr/bin/ntlm_auth
David Woodhouse [Sun, 3 Apr 2011 23:01:08 +0000 (00:01 +0100)]
Add support for NTLM single-sign-on using /usr/bin/ntlm_auth

There's a simple test version of ntlm_auth at
http://david.woodhou.se/ntlm_auth_v2.c

13 years agoAdd asynchronous camel_sasl_try_empty_password()
David Woodhouse [Sun, 3 Apr 2011 21:04:54 +0000 (22:04 +0100)]
Add asynchronous camel_sasl_try_empty_password()

13 years agoAdd camel_sasl_try_empty_password_sync() method.
David Woodhouse [Sun, 3 Apr 2011 20:38:31 +0000 (21:38 +0100)]
Add camel_sasl_try_empty_password_sync() method.

This indicates that a SASL method with the need_password flag can be tried
without providing a password, for single-sign-on using system credentials.

This will be used by NTLM.

13 years agoUpdated Basque language
Inaki Larranaga Murgoitio [Mon, 4 Apr 2011 12:48:54 +0000 (14:48 +0200)]
Updated Basque language

13 years agoUpdated Japanese translation.
Jiro Matsuzawa [Sun, 3 Apr 2011 16:14:44 +0000 (01:14 +0900)]
Updated Japanese translation.

13 years agoUpdated Dutch translation by Wouter Bolsterlee
Wouter Bolsterlee [Sun, 3 Apr 2011 15:06:40 +0000 (17:06 +0200)]
Updated Dutch translation by Wouter Bolsterlee

13 years agoUpdated Dutch translation by Hannie Dumoleyn
Hannie Dumoleyn [Sun, 3 Apr 2011 11:41:33 +0000 (13:41 +0200)]
Updated Dutch translation by Hannie Dumoleyn

13 years agoUpdated Lithuanian translation
Žygimantas Beručka [Sun, 3 Apr 2011 12:15:30 +0000 (15:15 +0300)]
Updated Lithuanian translation

13 years ago[l10n]Fixes on Catalan translation
Jordi Serratosa [Sat, 2 Apr 2011 19:11:29 +0000 (21:11 +0200)]
[l10n]Fixes on Catalan translation

13 years agoUpdated Japanese translation.
Takayuki KUSANO [Sat, 2 Apr 2011 14:30:42 +0000 (23:30 +0900)]
Updated Japanese translation.

13 years agoInfer NTLM domain from username; don't assume it matches the server's domain
David Woodhouse [Fri, 1 Apr 2011 20:53:04 +0000 (21:53 +0100)]
Infer NTLM domain from username; don't assume it matches the server's domain

13 years agoAdd Esperanto translation
Kristjan SCHMIDT [Fri, 1 Apr 2011 19:43:33 +0000 (21:43 +0200)]
Add Esperanto translation

13 years agoSupport NTLMv2 in camel-sasl-ntlm.c
David Woodhouse [Tue, 22 Mar 2011 10:11:09 +0000 (10:11 +0000)]
Support NTLMv2 in camel-sasl-ntlm.c

This still isn't good enough; we need to support calling out to
/usr/bin/ntlm_auth to handle the challenge/response *for* us, for
single-sign-on so that we don't need to know the password for ourselves.

13 years agoUpdated Danish translation
Kris Thomsen [Fri, 1 Apr 2011 10:14:31 +0000 (12:14 +0200)]
Updated Danish translation

13 years agoBug 646200 - Insufficient requirement on libsoup
Matthew Barnes [Wed, 30 Mar 2011 15:08:10 +0000 (11:08 -0400)]
Bug 646200 - Insufficient requirement on libsoup

Require libsoup >= 2.31.2 so we can use the get methods for SoupCookie,
SoupData and SoupURI.

13 years agoUpdated Bulgarian translation
Alexander Shopov [Tue, 29 Mar 2011 21:41:21 +0000 (00:41 +0300)]
Updated Bulgarian translation

13 years agoUpdated Brazilian Portuguese translation
Antonio Fernandes C. Neto [Tue, 29 Mar 2011 13:01:37 +0000 (10:01 -0300)]
Updated Brazilian Portuguese translation

13 years agoUpdated Bulgarian translation
Alexander Shopov [Mon, 28 Mar 2011 04:38:50 +0000 (07:38 +0300)]
Updated Bulgarian translation

13 years agoUpdated Bulgarian translation
Alexander Shopov [Mon, 28 Mar 2011 03:16:06 +0000 (06:16 +0300)]
Updated Bulgarian translation

13 years agoAdded UG translation
Abduxukur Abdurixit [Sun, 27 Mar 2011 17:22:30 +0000 (19:22 +0200)]
Added UG translation

13 years agoUpdated Italian translation
Luca Ferretti [Wed, 23 Mar 2011 20:48:46 +0000 (21:48 +0100)]
Updated Italian translation

13 years agoBug 418954 - Add a separate entry combo for port numbers
Dan Vráti [Fri, 18 Mar 2011 15:34:37 +0000 (11:34 -0400)]
Bug 418954 - Add a separate entry combo for port numbers

Adds a new field to CamelProvider for listing standard port numbers with
descriptions.  Evolution uses this information in its EPortEntry widget.

This breaks ABI in CamelProvider and requires a soname bump.

13 years agoCollect all test code into a top-level "tests" directory
Matthew Barnes [Tue, 22 Mar 2011 17:57:21 +0000 (13:57 -0400)]
Collect all test code into a top-level "tests" directory

This includes both automated unit tests and standalone demo programs.

Test code is partitioned by library.  So far we have:

    tests/libebook
    tests/libecal
    tests/libedata-cal
    tests/libedataserver
    tests/libedataserverui

This makes for a natural place to put additional E-D-S test code, but
still have it compartmentalized in one place (excluding Camel, which is
still tagging along with E-D-S but is not really part of E-D-S).

13 years agoUpdated Gujarati Translations
Sweta Kothari [Tue, 22 Mar 2011 09:13:35 +0000 (14:43 +0530)]
Updated Gujarati Translations

13 years agoBegin Evolution-Data-Server 3.1 development.
Matthew Barnes [Mon, 21 Mar 2011 19:00:04 +0000 (15:00 -0400)]
Begin Evolution-Data-Server 3.1 development.

13 years agoPost-release version bump.
Matthew Barnes [Mon, 21 Mar 2011 14:34:21 +0000 (10:34 -0400)]
Post-release version bump.

13 years agoNEWS update for 2.91.92 release.
Matthew Barnes [Mon, 21 Mar 2011 14:12:37 +0000 (10:12 -0400)]
NEWS update for 2.91.92 release.

13 years agoBug 629032 - GW count is not updated while downloading contacts.
Punit Jain [Mon, 21 Mar 2011 03:46:36 +0000 (09:16 +0530)]
Bug 629032 - GW count is not updated while downloading contacts.

Not displaying the contacts while fetching and the contacts count
on the left top is same as the number of contacts displayed in view.

13 years agoBug 634663 - e-calendar-factory crashes while retracting a meeting.
Punit Jain [Mon, 21 Mar 2011 03:44:16 +0000 (09:14 +0530)]
Bug 634663 - e-calendar-factory crashes while retracting a meeting.

We were sending wrong users list. The patch resolves the issue.

13 years agoRemove ESoapMessage and ESoapResponse
David Woodhouse [Sun, 20 Mar 2011 20:09:14 +0000 (20:09 +0000)]
Remove ESoapMessage and ESoapResponse

These are only used by the EWS back end so far, and I want to revamp them
before we include them in a stable release. We have *large* SOAP requests
and responses, containing the full base64-encoded content of entire MIME
messages... we really want zero-copy for that part, and at the moment the
implementation has about three copies — we have to create a base64 string
in memory, pass it to e_soap_message_write_string() which makes a second
copy in the xmlDoc, then it's converted into a flattened buffer which is
passed to libsoup to send...

Just rip it all out for now; we'll keep a local copy in EWS and can add it
back into EDS 3.1 when we have it looking how we want it.

Don't bother with bumping the libedataserver soname for this; nobody was
using these anyway and they've never been in a stable release. Bumping
the soname as this stage of the release would be too painful.

13 years agoUploaded Ukranian
Daniel Korostil [Sun, 20 Mar 2011 17:57:25 +0000 (19:57 +0200)]
Uploaded Ukranian

13 years agoUploaded Ukranian
Daniel Korostil [Sun, 20 Mar 2011 17:26:47 +0000 (19:26 +0200)]
Uploaded Ukranian

13 years agoUpdated Latvian translation.
Rudolfs Mazurs [Sun, 20 Mar 2011 14:49:53 +0000 (16:49 +0200)]
Updated Latvian translation.

13 years agoUpdated Korean translation
Changwoo Ryu [Sat, 19 Mar 2011 14:05:48 +0000 (23:05 +0900)]
Updated Korean translation

13 years agoCoding style and whitespace cleanup.
Matthew Barnes [Fri, 18 Mar 2011 16:57:02 +0000 (12:57 -0400)]
Coding style and whitespace cleanup.

13 years agoFix linking in calendar/libegdbus/Makefile.am
Matthew Barnes [Fri, 18 Mar 2011 16:01:48 +0000 (12:01 -0400)]
Fix linking in calendar/libegdbus/Makefile.am

GNOME_PLATFORM_LIBS is too broad.  It drags in gtk3, which causes
libecal to link against gtk3, which we definitely don't want.  Use
E_DATA_SERVER_LIBS instead.

Thanks to Benjamin Otte for spotting this.

13 years agoUpdate Simplified Chinese translation.
Lele Long [Fri, 18 Mar 2011 10:51:11 +0000 (10:51 +0000)]
Update Simplified Chinese translation.

13 years agoUpdated Traditional Chinese translation(Hong Kong and Taiwan)
Chao-Hsiung Liao [Fri, 18 Mar 2011 07:00:57 +0000 (15:00 +0800)]
Updated Traditional Chinese translation(Hong Kong and Taiwan)

13 years ago[l10n] Updated German translation
Mario Blättermann [Thu, 17 Mar 2011 09:59:21 +0000 (10:59 +0100)]
[l10n] Updated German translation

13 years agoUpdated Gujarati Translations
Sweta Kothari [Thu, 17 Mar 2011 09:52:45 +0000 (15:22 +0530)]
Updated Gujarati Translations

13 years agoUpdated Slovenian translation
Matej Urbančič [Tue, 15 Mar 2011 21:03:40 +0000 (22:03 +0100)]
Updated Slovenian translation

13 years agoUpdated Telugu Translations
krishnababu k [Tue, 15 Mar 2011 12:37:18 +0000 (18:07 +0530)]
Updated Telugu Translations

13 years agoUpdated Telugu Translations
krishnababu k [Tue, 15 Mar 2011 12:34:12 +0000 (18:04 +0530)]
Updated Telugu Translations

13 years agoUpdated Romanian translation
Lucian Adrian Grijincu [Mon, 14 Mar 2011 11:53:34 +0000 (12:53 +0100)]
Updated Romanian translation

13 years agoUpdated Romanian translation
crenguta bacaoanu [Mon, 14 Mar 2011 10:45:34 +0000 (11:45 +0100)]
Updated Romanian translation

13 years agoBug #644532 - Crash when opening ESource with local:/system URI
Milan Crha [Mon, 14 Mar 2011 10:21:14 +0000 (11:21 +0100)]
Bug #644532 - Crash when opening ESource with local:/system URI

13 years agoEnsure backend life-time during inner calls
Milan Crha [Mon, 14 Mar 2011 08:06:29 +0000 (09:06 +0100)]
Ensure backend life-time during inner calls

13 years agoImprove libedataserver API docs (not done yet).
Matthew Barnes [Sun, 13 Mar 2011 19:29:45 +0000 (15:29 -0400)]
Improve libedataserver API docs (not done yet).

13 years agol10n: Updated Greek translation
Michael Kotsarinis [Sun, 13 Mar 2011 17:23:09 +0000 (19:23 +0200)]
l10n: Updated Greek translation

13 years agoUpdated British English translation
Bruce Cowan [Sun, 13 Mar 2011 16:01:43 +0000 (16:01 +0000)]
Updated British English translation

13 years agoFinish documenting the libebackend API.
Matthew Barnes [Sat, 12 Mar 2011 19:19:09 +0000 (14:19 -0500)]
Finish documenting the libebackend API.

Starting small; trying to work bottom-up.

13 years agoBug #644367 - Check NNTP server capabilities before using OVER command
Milan Crha [Fri, 11 Mar 2011 15:58:40 +0000 (16:58 +0100)]
Bug #644367 - Check NNTP server capabilities before using OVER command

13 years agoBug #643748 - Slow message_location search rule with maildir accounts
Milan Crha [Fri, 11 Mar 2011 13:21:30 +0000 (14:21 +0100)]
Bug #643748 - Slow message_location search rule with maildir accounts

13 years agoAdd e-passwords-win32.c into POTFILES.in
Milan Crha [Thu, 10 Mar 2011 09:52:24 +0000 (10:52 +0100)]
Add e-passwords-win32.c into POTFILES.in

13 years agoAllow special CAMEL_DEBUG=pop3 to debug pop3 communication only
Milan Crha [Thu, 10 Mar 2011 08:44:37 +0000 (09:44 +0100)]
Allow special CAMEL_DEBUG=pop3 to debug pop3 communication only

13 years agoUpdated Hungarian translation
Gabor Kelemen [Thu, 10 Mar 2011 01:06:33 +0000 (02:06 +0100)]
Updated Hungarian translation

13 years agoUpdated Polish translation
Piotr Drąg [Wed, 9 Mar 2011 18:52:08 +0000 (19:52 +0100)]
Updated Polish translation

13 years agoBug 642783 - CamelLocalFolder: Let glibc's realpath() allocate for us
Emilio Pozuelo Monfort [Tue, 8 Mar 2011 17:45:25 +0000 (12:45 -0500)]
Bug 642783 - CamelLocalFolder: Let glibc's realpath() allocate for us

13 years agoBug 641838 - More compiler warning fixes
Kjartan Maraas [Tue, 8 Mar 2011 14:40:29 +0000 (09:40 -0500)]
Bug 641838 - More compiler warning fixes

13 years agoImprove camel_file_util_encode_fixed_string()
Matthew Barnes [Tue, 8 Mar 2011 14:30:15 +0000 (09:30 -0500)]
Improve camel_file_util_encode_fixed_string()

Allocate the buffer from the heap.  We can't statically declare the
buffer because it's not a fixed size, and allocating an arbitrarily
sized buffer on a stack frame is just asking for trouble.

13 years agoOOps: nothing to see
Fridrich Štrba [Mon, 7 Mar 2011 13:52:49 +0000 (14:52 +0100)]
OOps: nothing to see

13 years agoMiscellaneous build fixes for Windows
Fridrich Štrba [Mon, 7 Mar 2011 10:06:27 +0000 (11:06 +0100)]
Miscellaneous build fixes for Windows

Conflicts:

camel/providers/local/camel-maildir-store.c
camel/providers/local/camel-maildir-summary.c
camel/providers/local/camel-mh-store.c

13 years agoDon't use gnome-keyring to store credentials on Windows
Fridrich Štrba [Mon, 7 Mar 2011 09:48:14 +0000 (10:48 +0100)]
Don't use gnome-keyring to store credentials on Windows

13 years agoPost-release version bump.
Matthew Barnes [Sun, 6 Mar 2011 15:01:53 +0000 (10:01 -0500)]
Post-release version bump.

13 years agoFix distcheck errors.
Matthew Barnes [Sun, 6 Mar 2011 14:47:07 +0000 (09:47 -0500)]
Fix distcheck errors.

13 years agoRemove --disable-gtk3 from DISTCHECK_CONFIGURE_FLAGS.
Matthew Barnes [Sun, 6 Mar 2011 14:40:59 +0000 (09:40 -0500)]
Remove --disable-gtk3 from DISTCHECK_CONFIGURE_FLAGS.

13 years agoNEWS update for 2.91.91 release.
Matthew Barnes [Sun, 6 Mar 2011 14:38:22 +0000 (09:38 -0500)]
NEWS update for 2.91.91 release.

13 years agoUpdated Russian translation
Yuri Myasoedov [Sat, 5 Mar 2011 18:19:27 +0000 (21:19 +0300)]
Updated Russian translation

13 years agoBump BASE_VERSION to 3.0.
Matthew Barnes [Sat, 5 Mar 2011 17:43:40 +0000 (12:43 -0500)]
Bump BASE_VERSION to 3.0.

Looks like GNOME 3.0 might actually happen this cycle.

13 years agoCoding style cleanup.
Matthew Barnes [Sat, 5 Mar 2011 17:35:48 +0000 (12:35 -0500)]
Coding style cleanup.

13 years agoUpdated Latvian translation.
Rudolfs Mazurs [Sat, 5 Mar 2011 13:01:40 +0000 (15:01 +0200)]
Updated Latvian translation.

13 years agoUpdated Catalan translation
David Planella [Sat, 5 Mar 2011 08:08:09 +0000 (09:08 +0100)]
Updated Catalan translation