[Xfce4-commits] [apps/xfce4-terminal] 01/01: 0.6.91 ====== - Fix solarized light theme colors (bug #12800) - Fix huge size of Set Title dialog under wayland - Support wayland (resolve crashes and warnings) (bug #12785) - Improve handling negative x/y geometry positions (bug #12791) - Fix scrollbar/menubar/toolbar incorrectly shown in dropdown mode after window has been minimized/restored (bug #12790) - Add ability to save terminal contents to file (bug #6276) - Prepare for upcoming vte regex API change - Fix Vte-WARNING related to regex - Implement Read-Only mode (user input disabled) - Fix input focus lost issue after exiting a console app (e.g. nano) - Fix cursor not blinking when fg color = bg color (bug #11981) - Enable configuration of a new tab working directory: MiscDefaultWorkingDir option. If it is set (non-empty value), new tabs and windows will use the dir specified as their working dir. Otherwise, the behavior remains as is (current dir will be used). (bug #3891) - Do not un-close tab that was moved to another window - Properly enable/disable F1 shortcut - Fix Preferences window hidden in fullscreen mode - Do not un-close tab that was detached to create another window - Fix incorrect update of go-to-tab menu - Add Undo Close Tab functionality: stores closed tabs in chronological order; restores working directory, position in the tabbar, custom title - Add Close Other Tabs functionality - Make terminal always drop down from the top of the screen (bug #10713) - Create Alt+digit shortcuts if they haven't been loaded from config file (bug #10639) - Fix dropdown window animation; remove viewport widget - Code cleanup: Do not declare or define a reserved identifier - Add urgent bell functionality: MiscBellUrgent option (bug #9928) - When detaching a tab, make new window respect original geometry - Fix possible buffer overwrite issue found by Coverity - Keep rows number constant when adding/removing widgets such as toolbar or tabbar (bug #12734) - Make tab close button icon a bit smaller - Add ability to switch tabs with mouse scroll wheel (request from www.opennet.ru) - Fix selection characters override (bug #12735) - Fix resize logic with tab (bug #12660) - Translation updates: Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Dutch, English (Australia), German, Hebrew, Japanese, Korean, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish, Ukrainian

noreply at xfce.org noreply at xfce.org
Wed Aug 31 14:06:02 CEST 2016


This is an automated email from the git hooks/post-receive script.

f2404 pushed a commit to annotated tag xfce4-terminal-0.6.91
in repository apps/xfce4-terminal.

commit dc0079a281a9e9a29d34794626b9ab0b3bc31c81
Author: Igor <f2404 at yandex.ru>
Date:   Wed Aug 31 15:03:23 2016 +0300

    0.6.91
    ======
    - Fix solarized light theme colors (bug #12800)
    - Fix huge size of Set Title dialog under wayland
    - Support wayland (resolve crashes and warnings) (bug #12785)
    - Improve handling negative x/y geometry positions (bug #12791)
    - Fix scrollbar/menubar/toolbar incorrectly shown in dropdown mode after
      window has been minimized/restored (bug #12790)
    - Add ability to save terminal contents to file (bug #6276)
    - Prepare for upcoming vte regex API change
    - Fix Vte-WARNING related to regex
    - Implement Read-Only mode (user input disabled)
    - Fix input focus lost issue after exiting a console app (e.g. nano)
    - Fix cursor not blinking when fg color = bg color (bug #11981)
    - Enable configuration of a new tab working directory: MiscDefaultWorkingDir
      option. If it is set (non-empty value), new tabs and windows will use the dir
      specified as their working dir. Otherwise, the behavior remains as is
      (current dir will be used). (bug #3891)
    - Do not un-close tab that was moved to another window
    - Properly enable/disable F1 shortcut
    - Fix Preferences window hidden in fullscreen mode
    - Do not un-close tab that was detached to create another window
    - Fix incorrect update of go-to-tab menu
    - Add Undo Close Tab functionality: stores closed tabs in chronological order;
      restores working directory, position in the tabbar, custom title
    - Add Close Other Tabs functionality
    - Make terminal always drop down from the top of the screen (bug #10713)
    - Create Alt+digit shortcuts if they haven't been loaded from config file
      (bug #10639)
    - Fix dropdown window animation; remove viewport widget
    - Code cleanup: Do not declare or define a reserved identifier
    - Add urgent bell functionality: MiscBellUrgent option (bug #9928)
    - When detaching a tab, make new window respect original geometry
    - Fix possible buffer overwrite issue found by Coverity
    - Keep rows number constant when adding/removing widgets such as toolbar or
      tabbar (bug #12734)
    - Make tab close button icon a bit smaller
    - Add ability to switch tabs with mouse scroll wheel (request from
      www.opennet.ru)
    - Fix selection characters override (bug #12735)
    - Fix resize logic with tab (bug #12660)
    - Translation updates: Bulgarian, Catalan, Chinese (China), Chinese (Taiwan),
      Croatian, Czech, Dutch, English (Australia), German, Hebrew, Japanese, Korean,
      Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish, Ukrainian
---
 NEWS            | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac.in |  6 +++---
 2 files changed, 49 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index b0d8a06..6b2809e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,49 @@
+0.6.91
+======
+- Fix solarized light theme colors (bug #12800)
+- Fix huge size of Set Title dialog under wayland
+- Support wayland (resolve crashes and warnings) (bug #12785)
+- Improve handling negative x/y geometry positions (bug #12791)
+- Fix scrollbar/menubar/toolbar incorrectly shown in dropdown mode after
+  window has been minimized/restored (bug #12790)
+- Add ability to save terminal contents to file (bug #6276)
+- Prepare for upcoming vte regex API change
+- Fix Vte-WARNING related to regex
+- Implement Read-Only mode (user input disabled)
+- Fix input focus lost issue after exiting a console app (e.g. nano)
+- Fix cursor not blinking when fg color = bg color (bug #11981)
+- Enable configuration of a new tab working directory: MiscDefaultWorkingDir
+  option. If it is set (non-empty value), new tabs and windows will use the dir
+  specified as their working dir. Otherwise, the behavior remains as is
+  (current dir will be used). (bug #3891)
+- Do not un-close tab that was moved to another window
+- Properly enable/disable F1 shortcut
+- Fix Preferences window hidden in fullscreen mode
+- Do not un-close tab that was detached to create another window
+- Fix incorrect update of go-to-tab menu
+- Add Undo Close Tab functionality: stores closed tabs in chronological order;
+  restores working directory, position in the tabbar, custom title
+- Add Close Other Tabs functionality
+- Make terminal always drop down from the top of the screen (bug #10713)
+- Create Alt+digit shortcuts if they haven't been loaded from config file
+  (bug #10639)
+- Fix dropdown window animation; remove viewport widget
+- Code cleanup: Do not declare or define a reserved identifier
+- Add urgent bell functionality: MiscBellUrgent option (bug #9928)
+- When detaching a tab, make new window respect original geometry
+- Fix possible buffer overwrite issue found by Coverity
+- Keep rows number constant when adding/removing widgets such as toolbar or
+  tabbar (bug #12734)
+- Make tab close button icon a bit smaller
+- Add ability to switch tabs with mouse scroll wheel (request from
+  www.opennet.ru)
+- Fix selection characters override (bug #12735)
+- Fix resize logic with tab (bug #12660)
+- Translation updates: Bulgarian, Catalan, Chinese (China), Chinese (Taiwan),
+  Croatian, Czech, Dutch, English (Australia), German, Hebrew, Japanese, Korean,
+  Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish, Ukrainian
+
+
 0.6.90
 ======
 - Migrate to GTK+3/VTE3 (bugs #11207, #11909, #10602, #11828, #12405, #11119,
diff --git a/configure.ac.in b/configure.ac.in
index 073ce5a..89be548 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -9,11 +9,11 @@ dnl ***************************
 dnl *** Version information ***
 dnl ***************************
 m4_define([terminal_version_major], [0])
-m4_define([terminal_version_minor], [7])
-m4_define([terminal_version_micro], [0])
+m4_define([terminal_version_minor], [6])
+m4_define([terminal_version_micro], [91])
 m4_define([terminal_version_nano], [])
 m4_define([terminal_version_build], [@REVISION@])
-m4_define([terminal_version_tag], [git])
+m4_define([terminal_version_tag], [])
 m4_define([terminal_version_dbus], [5])
 m4_define([terminal_version], [terminal_version_major().terminal_version_minor().terminal_version_micro()ifelse(terminal_version_nano(), [], [], [.terminal_version_nano()])ifelse(terminal_version_tag(), [git], [terminal_version_tag()-terminal_version_build()], [terminal_version_tag()])])
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list