diff --git a/xfce4-terminal-0.8.7.4.tar.bz2 b/xfce4-terminal-0.8.7.4.tar.bz2 deleted file mode 100644 index bc07786..0000000 --- a/xfce4-terminal-0.8.7.4.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a88f98af4da72394f2cfbd7f14b0f053ec0a3b58a4f6a577836357c60a6c42ab -size 884272 diff --git a/xfce4-terminal-0.8.8.tar.bz2 b/xfce4-terminal-0.8.8.tar.bz2 new file mode 100644 index 0000000..31cf067 --- /dev/null +++ b/xfce4-terminal-0.8.8.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fba6a60d3a0fee07417ad7c36bf78cc45be1b27f0759e125051aa73f08487fd +size 938843 diff --git a/xfce4-terminal.changes b/xfce4-terminal.changes index eb7fb4f..50e1385 100644 --- a/xfce4-terminal.changes +++ b/xfce4-terminal.changes @@ -1,3 +1,64 @@ +------------------------------------------------------------------- +Wed Jul 3 05:58:21 UTC 2019 - Maurizio Galli + +- Update to version 0.8.8 + - Do not show "Rewrap on resize" option for vte>=0.58: it's been + deprecated, rewrapping on resize will always be enabled. (bxo#15562) + - Drop support of Unicode encodings other than UTF-8 (bxo#15377) + - Fix the size of drop-down window after it's been in fullscreen mode + (bxo#15240) + - Convert LF to CR when feeding text - this fixes pasting text to some + apps (see https://gitlab.gnome.org/GNOME/vte/issues/106) + - Save accelerators map on exit (bxo#15201) + - Add support for the Tab key in shortcuts (by default, GTK doesn't + allow that) + - Do not resize the window when it's vertically maximized (bxo#10551) + - Add action to switch to last active tab (bxo#15201) + - Respect Xfce monospace font setting (bxo#15202) + - Dropdown window was session saved and restored as a normal window if + it was the only one (bxo#11362) + - Preferences: Align controls on the General tab + - Implement "Unsafe Paste" dialog (bxo#13252) + - Enable Ctrl+(Shift)+Tab as Next/Prev Tab shortcuts (bxo#15092) + - Add an option to use system theme colors for text and background + (bxo#14808) + - Search dialog improvements: Enable "Wrap around" by default; Make + "Find Next"/"Find Previous" menu items respect search settings; Make + buttons use menu item accelerators; Allow to set opacity (min 10%) + (bxo#15124) + - Fix handling of OSC-10 escape sequence (bold text color) (bxo#15019) + - Refine the wording for "opacity not available" (bxo#14904) + - Add a space character after a dragged filename or URL (bxo#14849) + - Support monitoring of the terminalrc file even it's a symlink + (bxo#14698) + - Fix the "Close tab" button: When the "Close tab" button got clicked in + the "Confirm close" dialog, the entire window (instead of just the + current tab) got closed (bxo#14645) + - Preferences: remove dependency on libxfce4ui + - Fix typo in the .desktop file (bxo#14594) + - Improve .desktop files for GNOME (bxo#14575) + - Fix a small typo in the manpage + - JIT compile regexes (taken from gnome-terminal). This allows to + recognize longer and more complex URLs. + - Update terminal regexes from gnome-terminal (regex: Allow apostrophes + in URLs, except when enclosed between them) + - Allow to move tabs between windows by dragging them onto the terminal + area + - When detaching a tab from a drop-down window, resize the new window to + the default geometry + - Reset activity indicator for the active tab when focusing window + - Distinguish terminal settings from the actual terminal entry in the + menu (bxo#14456) + - When closing an active tab, switch to the previously active one + - Tab title color feature improvements: add action, restore the color + when unclosing a tab, fix the color picker dialog's name, add Reset + button + - Some parts of the --help output were not translated + - Restore terminal colors when unclosing a tab + - Translation updates +- Cleaned up spec file +- Added bcond to build with git master sources + ------------------------------------------------------------------- Tue Feb 12 15:05:10 UTC 2019 - Maurizio Galli diff --git a/xfce4-terminal.spec b/xfce4-terminal.spec index a6f9927..6c0c5f3 100644 --- a/xfce4-terminal.spec +++ b/xfce4-terminal.spec @@ -1,7 +1,7 @@ # # spec file for package xfce4-terminal # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2012 Guido Berhoerster. # # All modifications and additions to the file contributed by third parties @@ -13,26 +13,28 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # +%bcond_with git Name: xfce4-terminal -Version: 0.8.7.4 +Version: 0.8.8 Release: 0 Summary: Terminal Emulator for the Xfce Desktop Environment License: GPL-2.0-or-later Group: System/X11/Terminals -Url: http://docs.xfce.org/apps/terminal/start -Source0: http://archive.xfce.org/src/apps/xfce4-terminal/0.8/%{name}-%{version}.tar.bz2 +URL: https://docs.xfce.org/apps/terminal/start +Source0: https://archive.xfce.org/src/apps/xfce4-terminal/0.8/%{name}-%{version}.tar.bz2 BuildRequires: intltool BuildRequires: pkgconfig BuildRequires: update-desktop-files BuildRequires: utempter-devel BuildRequires: pkgconfig(dbus-glib-1) -BuildRequires: pkgconfig(exo-1) +BuildRequires: pkgconfig(gio-2.0) BuildRequires: pkgconfig(gtk+-3.0) >= 3.20.8 BuildRequires: pkgconfig(libxfce4ui-2) +BuildRequires: pkgconfig(libxfconf-0) BuildRequires: pkgconfig(vte-2.91) Recommends: %{name}-lang @@ -50,9 +52,16 @@ helps to save space on the desktop. %setup -q %build +%if %{with git} +NOCONFIGURE=1 ./autogen.sh +%configure \ + --enable-maintainer-mode \ + --with-utempter +%else %configure \ --with-utempter -make %{?_smp_mflags} V=1 +%endif +%make_build %install %make_install @@ -77,11 +86,8 @@ make %{?_smp_mflags} V=1 done ) >> %{name}.lang - # Fix name issue with xfce4-terminal-settings desktop file name entries boo#1125146 desktop-file-edit %{buildroot}%{_datadir}/applications/%{name}-settings.desktop --set-name='Xfce Terminal Settings' -desktop-file-edit %{buildroot}%{_datadir}/applications/%{name}-settings.desktop --set-comment='Terminal Emulator Settings' -desktop-file-edit %{buildroot}%{_datadir}/applications/%{name}-settings.desktop --set-generic-name='Terminal Emulator Settings' %find_lang %{name} --with-man %{?no_lang_C}