Skip to content

Commit

Permalink
create ~/.config/autostart if not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
gsemet committed Apr 11, 2018
1 parent 0ff272c commit 0d6bf21
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
18 changes: 13 additions & 5 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ New Features
- New "start at login" option in the settings (only for GNOME) #251
- Add ``--verbose``/``-v`` parameter to enable debug logging. Please note the existing ``-v`` (for
version number) has been renamed ``-V``.
- Support for hyperlink VTE extension (`described
here <https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda>`__ ) #945 (Untested, as
it requires VTE 0.50)
- Add great color palettes from `Guake Color
Scheme <https://github.com/ziyenano/Guake-Color-Schemes>`__, thanks for @ziyenano :

Expand Down Expand Up @@ -50,6 +53,8 @@ New Features
- Tin,
- Ura,
- Vag.
- Allow application to capture right click (ex: Midnight commander). #1096. It is still possible to
show the contextual menu with Shift+right click.

Bug Fixes
~~~~~~~~~
Expand All @@ -75,11 +80,6 @@ Bug Fixes
- bad translation update on the contextual menu. This causes new strings that was hidden to
appear for translators.
- Fix quick open on pattern "File:line" line that was not opening the wanted file.
- Support for vte 2.91 (0.52) #1222

Translation Updates
~~~~~~~~~~~~~~~~~~~

- Some systems such as Ubuntu did displayed Guake with a translated interface (#1209). The locale
system has been reworked to fix that.
- There might be broken translations, or not up-to-date language support by Guake. A global refresh
Expand All @@ -90,6 +90,14 @@ Translation Updates
translation to help guake being used world-wide.

- Help is always welcomed for updating translations !
- Support for vte 2.91 (0.52) #1222

Translation Updates
~~~~~~~~~~~~~~~~~~~

- fr\_FR
- pl
- de

Notes for Package Maintainers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 2 additions & 0 deletions guake/prefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,8 @@ def refresh_user_start(settings):
if not AUTOSTART_FOLDER or not LOGIN_DESTOP_PATH:
return
if settings.general.get_boolean('start-at-login'):
autostart_path = os.path.expanduser(AUTOSTART_FOLDER)
os.makedirs(autostart_path, exist_ok=True)
shutil.copyfile(
os.path.join(LOGIN_DESTOP_PATH, "autostart-guake.desktop"),
os.path.join(os.path.expanduser(AUTOSTART_FOLDER), "guake.desktop")
Expand Down
2 changes: 1 addition & 1 deletion releasenotes/notes/translation-ccde91d14559d6ab.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
translations:
fixes:
- Some systems such as Ubuntu did displayed Guake with a translated interface (#1209). The locale
system has been reworked to fix that.

Expand Down

0 comments on commit 0d6bf21

Please sign in to comment.