summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated French translationgnome-3-8Alexandre Franke2014-04-071-65/+79
|
* Updated Chinese (China) translationWylmer Wang2014-03-101-473/+363
|
* update string for gnome-3-8 branchA S Alam2014-03-051-4/+5
|
* updated kn.poShankar Prasad2014-02-051-612/+142
|
* update Punjabi translation for 3-8 branchA S Alam2014-02-011-94/+99
|
* Updated Telugu TranslationsKrishnababu Krothapalli2014-01-301-91/+100
|
* Updated Russian translationYuri Myasoedov2013-12-181-93/+103
|
* [l10n]Updated Turkish translationMuhammet Kara2013-12-021-34/+47
|
* Finnish translation updateLasse Liehu2013-11-051-94/+108
|
* l10n: Update Japanese translationvictory2013-10-301-7/+4
|
* Tamil Translations UpdatedShantha kumar2013-09-251-4/+22
|
* Updated Hungarian translationBalázs Úr2013-09-211-54/+69
|
* Updated Galician translationsFran Diéguez2013-09-101-2/+2
|
* Updated Indonesian translationAndika Triwidada2013-09-091-87/+99
|
* Tamil Translations UpdatedShantha kumar2013-08-301-68/+62
|
* worker: Fix memory corruption error/crasherMichel Dänzer2013-08-201-1/+0
| | | | | | | | | | | | | | | | gdm_session_worker_process_pam_message() contains this code: *response_text = strndup (user_answer, PAM_MAX_RESP_SIZE - 1); (*response_text)[PAM_MAX_RESP_SIZE - 1] = '\0'; If the string pointed to by user_answer is shorter than PAM_MAX_RESP_SIZE - 1 (which will generally be the case), the second line clobbers unrelated memory. On this powerpc laptop, that causes gdm-session-worker to crash while verifying the password, leaving me unable to log into any user session. strndup() already ensures that the resulting string is 0-terminated anyway, so this commit just removes the second line.
* Updated Greek translationDimitris Spingos2013-08-181-94/+105
|
* Updated Slovenian translationMatej Urbančič2013-08-171-86/+99
|
* Updated Serbian translationМирослав Николић2013-08-122-180/+200
|
* Updated Lithuanian translationAurimas Černius2013-08-111-136/+177
|
* Updated Spanish translationDaniel Mustieles2013-08-081-92/+100
|
* Updated translation for Afrikaans (af)Dawid Loubser2013-08-051-568/+630
|
* Updated Marathi TranslationsSandeep Sheshrao Shedmake2013-08-041-90/+100
|
* [l10n] Update Catalan translationGil Forcada2013-08-031-4682/+63
|
* Updated German translationChristian Kirbach2013-08-031-56/+66
|
* Updated Czech translationMarek Černocký2013-08-021-1/+1
|
* Updated Czech translationMarek Černocký2013-08-021-86/+98
|
* Updated Galician translationsFran Diéguez2013-08-021-86/+99
|
* Updated Gujarati TranslationsSweta Kothari2013-08-011-90/+99
|
* Updated Polish translationPiotr Drąg2013-07-311-2/+2
|
* Updated Polish translationPiotr Drąg2013-07-311-22/+35
|
* Assamese translation updatedNilamdyuti Goswami2013-07-311-96/+104
|
* Updated Brazilian Portuguese translationEnrico Nicoletto2013-07-311-64/+80
|
* configure: bump to 3.8.43.8.4Ray Strode2013-07-301-1/+1
|
* NEWS: update for releaseRay Strode2013-07-301-0/+10
|
* data: allow password-auth to be disabledRay Strode2013-07-301-0/+10
| | | | | it could be you want one of the other methods to be strictly required. This commit just adds the config key for checking that.
* session: clean up outside dbus server on finalizeRay Strode2013-07-301-0/+5
| | | | Just a small leak fix.
* display: actually set slave_name_id and unwatch bus name in unmanageJean-Benoit MARTIN2013-07-301-7/+12
| | | | | | | | | slave_name_id is supposed to track the bus name watch of the slave, but it was never getting set. This commit sets it, and makes sure the watch is removed in unmanage. https://bugzilla.gnome.org/show_bug.cgi?id=698370
* session: harden against server dbus outliving session objectRay Strode2013-07-301-16/+20
| | | | | | | | | | | Right now we do: g_signal_connect (dbus_server, "...", callback, self); in a few places. These signal connections should go away when the dbus server is unreffed in dispose, but to be on the safe side we should use g_signal_connect_object anyway. (See for instance the leak fix in the previous commit).
* data: update PAM configuration files for LFS distributionArmin K2013-07-304-9/+13
| | | | | | | Without this fix, GDM refuses to start up saying that pam_systemd.so isn't initialised. https://bugzilla.gnome.org/show_bug.cgi?id=696577
* data: enable g-s-d smartcard pluginRay Strode2013-07-301-1/+1
| | | | | | | Now that gnome-settings-daemon has a smartcard plugin, enable it at the login screen, so gnome-shell can leverage it. https://bugzilla.gnome.org/show_bug.cgi?id=704890
* data: drop Include/Exclude keys from schemaRay Strode2013-07-301-17/+0
| | | | | Support for these keys were dropped years ago, and keeping them around in the schemas is confusing.
* slave: don't assume autologin if there are no connectionsRay Strode2013-07-301-5/+6
| | | | | | | | | | | | | | | Because of a bug in gdm-session.c (which was dealt with in the previous commit) we ended up with a false impression of currently connected clients after a session reset happens. That bug meant the slave assumed autologin was enabled which stopped it from waiting for the greeter to finish the fade out before proceeding. Assuming "no connection" == "autologin" is a bit fragile, so this commit makes sure to check for gdm-autologin specifically. https://bugzilla.gnome.org/show_bug.cgi?id=703386
* session: don't close outside connections during session resetRay Strode2013-07-301-11/+16
| | | | | | | | | | | | | | | | | If a user clicks cancel in the login screen the underlying user verification session gets reset, which causes the greeter connection to get scrubbed from the record. Resetting is correct, but scrubbing the connection isn't. The bug manifests itself at login time, by the greeter not fading out if the user hit cancel once before logging in. Instead, the greeter gets kill right away and login proceeds abruptly. This commit makes gdm_session_reset not erreoneously do this connection scrubbing. https://bugzilla.gnome.org/show_bug.cgi?id=703386
* configure: bump to 3.8.3.13.8.3.1Ray Strode2013-07-101-1/+1
|
* NEWS: update for releaseRay Strode2013-07-101-0/+6
|
* Revert "Updated POTFILES.in"Piotr Drąg2013-06-171-0/+19
| | | | This reverts commit a8cf05f4143bf3a30bf15ca8a66ecebd7e750541.
* Revert "gui: drop fallback greeter"Ray Strode2013-06-1788-5/+21937
| | | | This reverts commit 8dbec8431d558b9d33adc987de2f7a58815589d4.
* configure: bump to 3.8.33.8.3Ray Strode2013-06-141-1/+1
|
* NEWS: update for releaseRay Strode2013-06-141-0/+12
|