You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: NEWS.rst
+67-20
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,53 @@
2
2
Guake
3
3
=====
4
4
5
+
(unreleased yet)
6
+
================
7
+
8
+
Release Summary
9
+
---------------
10
+
11
+
This major release provides one of the most awaited feature to every Guake adicts: Split terminal. Split easily vertically and horizontally each terminal and have more than one terminal per tab.
12
+
There have been several shortcut changes to help navigate easily on your screen: Ctrl+Shift+Up/Down/Left/Right to switch from terminal to terminal.
13
+
Thanks for you hard work, @aichingm !
14
+
15
+
New Features
16
+
------------
17
+
18
+
- Split and resize terminals via mouse or keyboard shortcuts.
19
+
20
+
Bug Fixes
21
+
---------
22
+
23
+
- Fix multiline selection right click (#1413)
24
+
25
+
- Fix tab name (#1017)
26
+
27
+
- fixes jumping preference window (#1149)
28
+
29
+
- fix no focus after closing a split terminal (#1421)
30
+
31
+
- Add note about shell that does not support --login parameter (#469)
32
+
33
+
Translation Updates
34
+
-------------------
35
+
36
+
- pl (Piotr Drąg on weblate)
37
+
38
+
- nl (Heimen Stoffels on weblate)
39
+
40
+
- nb (Allan Nordhøy on weblate)
41
+
42
+
- ru (Igor on weblate)
43
+
44
+
- zh_CN (庄秋彬 on weblate)
45
+
46
+
- cs (Pavel Borecki on weblate)
47
+
48
+
- de (Robin Bauknecht on weblate)
49
+
50
+
- fr (Gaetan Semet)
51
+
5
52
3.3.3
6
53
=====
7
54
@@ -125,7 +172,7 @@ Bug Fixes
125
172
126
173
- Wayland is a bit more well supported. The X11 backend is now used by default for
127
174
GDK and it seems to make the shortcut works under most situation.
128
-
175
+
129
176
A more cleaner solution would be to develop a GAction
130
177
(`vote for this feature here <https://feathub.com/Guake/guake/+29>`_])
131
178
@@ -192,10 +239,10 @@ Bug Fixes
192
239
This may causes some issues with log and so that use parenthesis *around* hyperlinks,
193
240
but since parenthesis and quotes are valid characters inside a URL, like for instance
194
241
URL created by Kibana, they deserve the right to be shown as proper url in Guake.
195
-
242
+
196
243
User can still select the URL in the terminal if he wishes to capture the exact url, before
197
244
doing a Ctrl+click or a right click.
198
-
245
+
199
246
For developers, it is advised to end the URL with a character that cannot be used in URL, such
200
247
as space, tab, new line. Ending with a dot (``.``) or a comma (``,``) will not be seen as part
201
248
of the URL by Guake, so most logs and traces that adds a dot or a comma at the end of the URL
@@ -271,7 +318,7 @@ New Features
271
318
272
319
- Add great color palettes from
273
320
`Guake Color Scheme <https://github.com/ziyenano/Guake-Color-Schemes>`_, thanks for @ziyenano :
274
-
321
+
275
322
- `Aci`,
276
323
- `aco`,
277
324
- `Azu`,
@@ -314,17 +361,17 @@ Bug Fixes
314
361
- change scope of ``which_align`` variable in ``pref.py`` (#1225)
315
362
316
363
- Fix several issues on Quick Edit:
317
-
364
+
318
365
- quick open freezes guake
319
366
- support for systems with PCRE2 (regular expression in terminal) disabled for VTE, like
320
367
Ubuntu 17.10 and +.
321
-
368
+
322
369
This might disable quick open and open url on direct Ctrl+click.
323
370
User can still select the wanted url or text and Cltr+click or use contextual menu.
324
-
371
+
325
372
See this `discussion on Tilix <https://github.com/gnunn1/tilix/issues/916>`_, another
326
373
Terminal emulator that suffurs the same issue.
327
-
374
+
328
375
- quick open now appears in contextual menu (#1157)
329
376
- bad translation update on the contextual menu. This causes new strings that was hidden to
330
377
appear for translators.
@@ -356,28 +403,28 @@ Notes for Package Maintainers
356
403
- The setup mecanism has changed a little bit. Some maintainers used to patch the source code
357
404
of Guake to change the pixmap, Gtk schema or locale paths directly in the ``guake/globals.py``
358
405
file. This was due to a lack of flexibility of the installation target of the ``Makefile``.
359
-
406
+
360
407
The ``make install`` target looks now a little bit more familiar, allowing distribution
361
408
packager to set the various paths directly with make flags.
362
-
409
+
363
410
For example:
364
-
411
+
365
412
.. code-block:: bash
366
-
413
+
367
414
sudo make install \
368
415
prefix=/usr \
369
416
DESTDIR=/path/for/packager \
370
417
PYTHON_SITE_PACKAGE_NAME=site-package \
371
418
localedir=/usr/share/locale
372
-
419
+
373
420
The main overrides are:
374
-
421
+
375
422
- ``IMAGE_DIR``: where the pixmap should be installed. Default: ``/usr/local/share/guake/pixmaps``
376
423
- ``localedir``: where locales should be installed. Default: ``/usr/local/share/locale``
377
424
- ``GLADE_DIR``: where the Glade files should be installed. Default: ``/usr/local/share/guake``
378
425
- ``gsettingsschemadir``: where gsettings/dconf schema should be installed.
379
426
Default: ``/usr/local/share/glib-2.0/schemas/``
380
-
427
+
381
428
I invite package maintainers to open tickets on Github about any other difficulties
382
429
encountered when packaging Guake.
383
430
@@ -419,10 +466,10 @@ New Features
419
466
to virtually open any file path in your terminal (if they are on your local machine), but
420
467
requires the user to select the file path first, compared to the Quick Open feature that
421
468
finds file names using regular expression.
422
-
469
+
423
470
Also notes that is it able to look in the current folder if the selected file name exists,
424
471
allowing Ctrl+click on relative paths as well.
425
-
472
+
426
473
Line number syntax is also supported: ``filename.txt:5`` will directly on the 5th line if
427
474
your Quick Open is set for.
428
475
@@ -573,7 +620,7 @@ New Features
573
620
------------
574
621
575
622
- Ported to GTK3:
576
-
623
+
577
624
- cli arguments
578
625
- D-Bus
579
626
- context menu of the terminal, the tab bar and the tray icon
@@ -591,7 +638,7 @@ New Features
591
638
- ``Guake.accel*`` methods
592
639
593
640
- Guake now use a brand new build system:
594
-
641
+
595
642
- ``pipenv`` to manage dependencies in `Pipfile`
596
643
- enforced code styling and checks using Pylint, Flake8, Yapf, ISort.
0 commit comments