summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* configure: bump to 3.17.923.18.03.17.92Ray Strode2015-09-161-1/+1
|
* NEWS: update for releaseRay Strode2015-09-161-0/+7
|
* gsm-util: save environment to $XDG_RUNTIME_DIR/gnome/environmentRay Strode2015-09-161-0/+35
| | | | | | | | | | | | | | | | | | | Environment variables are problematic because they require a parent child inheritance model, but they're often used in a per-session scope. gnome-session provides a mechanism for children to affect the environment of future siblings via the SetEnv dbus method call. Unfortunately that change does not affect existing siblings, or their offspring. This commit centralizes gnome-session's environment into a file, $XDG_RUNTIME_DIR/gnome/environment so other components in the session can ensure their children get the most up to date environment possible. https://bugzilla.gnome.org/show_bug.cgi?id=738205
* Updated Persian translationArash Mousavi2015-09-111-219/+176
|
* Updated Dutch translation Master 3.18Hannie Dumoleyn2015-08-241-289/+104
|
* Updated Polish translationPiotr Drąg2015-08-241-11/+11
|
* Updated Portuguese translationPedro Albuquerque2015-07-261-1/+1
|
* Updated Friulian translationFabio Tomat2015-07-051-9/+6
|
* Updated Portuguese translationPedro Albuquerque2015-06-291-210/+178
|
* Updated Romanian TranslationDaniel Șerbănescu2015-06-221-341/+438
|
* Updated Thai translationAkom Chotiphantawanon2015-05-211-324/+354
|
* Updated Occitan translationCédric Valmary2015-05-101-823/+534
|
* Updated Occitan translationlaurent Soleil2015-04-281-657/+823
|
* icon: provide a symbolic variant of the app iconJakub Steiner2015-04-274-1/+55
| | | | | | | | | | | Since 3.16 the high contrast accessible theme is covered by the recolorable symbolic variant of the app icon. The symbolic size has been introduced to hicolor to cope with the nominal size of 16x16 rather than the backward compatible 128x128. https://bugzilla.gnome.org/show_bug.cgi?id=746811
* l10n: Update Japanese translationHajime Taira2015-03-291-169/+134
|
* configure: bump to 3.16.03.16.0Ray Strode2015-03-231-1/+1
|
* NEWS: update for releaseRay Strode2015-03-231-0/+6
|
* configure: bump to 3.15.923.15.92Ray Strode2015-03-181-1/+1
|
* NEWS: update for releaseRay Strode2015-03-181-0/+8
|
* Updated Danish translationAsk Hjorth Larsen2015-03-151-180/+146
|
* Updated Vietnamese translationTrần Ngọc Quân2015-03-151-40/+46
| | | | Signed-off-by: Trần Ngọc Quân <vnwildman@gmail.com>
* Translation pa updated for GnomeA S Alam2015-03-131-7/+10
|
* Translation pa updated for GnomeA S Alam2015-03-131-188/+148
|
* Updated Bosnian translationSamir Ribic2015-03-131-411/+236
|
* Updated Latvian translationRūdolfs Mazurs2015-03-131-171/+133
|
* Finnish translation updateJiri Grönroos2015-03-111-170/+133
|
* Updated Italian translationMilo Casagrande2015-03-101-180/+57
|
* Updated Tajik translationVictor Ibragimov2015-03-101-172/+135
|
* fail-whale: use correct gspawn flagsTim Lunn2015-03-091-1/+1
| | | | | | without this the GChildWatchFunc callback never fires https://bugzilla.gnome.org/show_bug.cgi?id=745707
* Updated Bulgarian translationAlexander Shopov2015-03-091-30/+34
|
* manager: don't connect to systemd until exported on busMatthias Clasen2015-03-091-3/+3
| | | | | | | | | | | | We now properly resync our active state after being exported over the bus, but we still have a signal connection set up prematurely. If it did get called, it would lead to scary messages on the console. This commit moves the signal connection down to the same place we test our active state at startup. https://bugzilla.gnome.org/show_bug.cgi?id=745762
* Fix SessionIsActive propertyMatthias Clasen2015-03-091-0/+3
| | | | | | | | | | | | | GsmSystemd emits its cold-plug notify::active signal out of init(), giving GsmManager no chance to connect its signal handler in time to catch the initial emission. And even if we did, the GsmManager handler can only operate once the skeleton object exists. Therefore, do our own cold-plug after creating the skeleton. This is fallout from the GDBus port. https://bugzilla.gnome.org/show_bug.cgi?id=745762
* fail-whale: fail if the fail whale failsRay Strode2015-03-091-1/+17
| | | | | | | | If we don't have a wayland session then we don't have a way to show the fail whale. If we don't have a way to show the fail whale, then we should just die. https://bugzilla.gnome.org/show_bug.cgi?id=745707
* Update Catalan translationJordi Mas2015-03-071-178/+142
|
* Updated Serbian translationМирослав Николић2015-03-052-350/+276
|
* Updated Korean translationChangwoo Ryu2015-03-051-170/+50
|
* Updated Polish translationPiotr Drąg2015-03-041-172/+50
|
* Updated Czech translationMarek Černocký2015-03-041-170/+50
|
* Update simplified Chinese translationTong Hui2015-03-041-45/+48
|
* Updated Ukrainian translationDaniel Korostil2015-02-241-173/+136
|
* Updated Lithuanian translationAurimas Černius2015-02-231-170/+133
|
* Updated Chinese (Taiwan) translationChao-Hsiung Liao2015-02-211-171/+136
|
* Updated French translationAlexandre Franke2015-02-191-169/+133
|
* Updated Galician translationsFran Dieguez2015-02-191-171/+135
|
* configure: bump to 3.15.903.15.90Ray Strode2015-02-181-1/+1
|
* NEWS: update for releaseRay Strode2015-02-181-0/+9
|
* manager: handle autorestart app death before registrationRay Strode2015-02-181-2/+2
| | | | | | | | | | | | | | Right now we rely on autorestart apps to get their death handled when they disconnect from the bus. This only works if they've registered, though. This commit makes sure the restart_app codepath gets called for autorestart apps even if they haven't registered yet. (This commit makes gnome-session exit if the display server couldn't be started) https://bugzilla.gnome.org/show_bug.cgi?id=744752
* app: changed registered from signal to propertyRay Strode2015-02-183-24/+48
| | | | | | This will let us query it after the fact. https://bugzilla.gnome.org/show_bug.cgi?id=744752
* app: drop unused variable from state structRay Strode2015-02-181-1/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=744752
* Updated Swedish translationAnders Jonsson2015-02-181-49/+42
|