commit tilda for openSUSE:Factory

2020-08-20 Thread root
Hello community,

here is the log from the commit of package tilda for openSUSE:Factory checked 
in at 2020-08-20 22:32:05

Comparing /work/SRC/openSUSE:Factory/tilda (Old)
 and  /work/SRC/openSUSE:Factory/.tilda.new.3399 (New)


Package is "tilda"

Thu Aug 20 22:32:05 2020 rev:13 rq:828141 version:1.5.2

Changes:

--- /work/SRC/openSUSE:Factory/tilda/tilda.changes  2020-05-29 
21:37:30.370672930 +0200
+++ /work/SRC/openSUSE:Factory/.tilda.new.3399/tilda.changes2020-08-20 
22:32:40.724089362 +0200
@@ -1,0 +2,7 @@
+Wed Jul 29 09:52:39 UTC 2020 - Martin Rey 
+
+- Update to 1.5.2
+  * Fix reported version
+- update copyright notice in spec file
+
+---

Old:

  tilda-1.5.1.tar.gz

New:

  tilda-1.5.2.tar.gz



Other differences:
--
++ tilda.spec ++
--- /var/tmp/diff_new_pack.5qoGIt/_old  2020-08-20 22:32:41.688089812 +0200
+++ /var/tmp/diff_new_pack.5qoGIt/_new  2020-08-20 22:32:41.688089812 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package tilda
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,13 @@
 
 
 Name:   tilda
-Version:1.5.1
+Version:1.5.2
 Release:0
 Summary:A Gtk based drop down terminal for Linux and Unix
 License:GPL-2.0-or-later
 Group:  System/X11/Terminals
 URL:https://github.com/lanoxx/%{name}/
 Source0:%{url}/archive/%{name}-%{version}.tar.gz
-
 BuildRequires:  automake
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files

++ tilda-1.5.1.tar.gz -> tilda-1.5.2.tar.gz ++
 1835 lines of diff (skipped)




commit tilda for openSUSE:Factory

2020-05-29 Thread root
Hello community,

here is the log from the commit of package tilda for openSUSE:Factory checked 
in at 2020-05-29 21:23:19

Comparing /work/SRC/openSUSE:Factory/tilda (Old)
 and  /work/SRC/openSUSE:Factory/.tilda.new.3606 (New)


Package is "tilda"

Fri May 29 21:23:19 2020 rev:12 rq:809777 version:1.5.1

Changes:

--- /work/SRC/openSUSE:Factory/tilda/tilda.changes  2020-04-27 
23:40:08.179729158 +0200
+++ /work/SRC/openSUSE:Factory/.tilda.new.3606/tilda.changes2020-05-29 
21:37:30.370672930 +0200
@@ -1,0 +2,6 @@
+Thu May  7 08:39:23 UTC 2020 - Paolo Stivanin 
+
+- Update to 1.5.1
+* tilda_terminal: match '@' character in URLs
+
+---

Old:

  tilda-1.5.0.tar.gz

New:

  tilda-1.5.1.tar.gz



Other differences:
--
++ tilda.spec ++
--- /var/tmp/diff_new_pack.HFckjI/_old  2020-05-29 21:37:30.854674371 +0200
+++ /var/tmp/diff_new_pack.HFckjI/_new  2020-05-29 21:37:30.858674383 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   tilda
-Version:1.5.0
+Version:1.5.1
 Release:0
 Summary:A Gtk based drop down terminal for Linux and Unix
 License:GPL-2.0-or-later

++ tilda-1.5.0.tar.gz -> tilda-1.5.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tilda-tilda-1.5.0/src/tilda_terminal.c 
new/tilda-tilda-1.5.1/src/tilda_terminal.c
--- old/tilda-tilda-1.5.0/src/tilda_terminal.c  2020-02-08 23:46:29.0 
+0100
+++ new/tilda-tilda-1.5.1/src/tilda_terminal.c  2020-05-03 21:20:55.0 
+0200
@@ -21,6 +21,7 @@
 #include "tilda_terminal.h"
 #include "configsys.h"
 #include "wizard.h" /* wizard */
+#include "vte-util.h"
 
 #include 
 #include  /* malloc */
@@ -31,7 +32,10 @@
 #include 
 #include 
 
-#define HTTP_REGEXP "(ftp|http)s?://[\\[\\]-a-zA-Z0-9.?!$%&/=_~#.,:;+]*"
+#define PCRE2_CODE_UNIT_WIDTH 0
+#include 
+
+#define HTTP_REGEXP "(ftp|http)s?://[\\[\\]-a-zA-Z0-9.?@!$%&/=_~#.,:;+]*"
 
 static void start_shell (tilda_term *tt, gboolean ignore_custom_command);
 static void start_default_shell (tilda_term *tt);
@@ -67,39 +71,22 @@
 g_clear_object (>scrollbar);
 g_clear_object (>vte_term);
 
-g_regex_unref (term->http_regexp);
+if (term->http_regexp != NULL) {
+g_regex_unref (term->http_regexp);
+}
+
+if (term->vte_regexp != NULL) {
+vte_regex_unref (term->vte_regexp);
+}
 
 term->http_regexp = NULL;
+term->vte_regexp = NULL;
 
 g_free (term);
 
 return 0;
 }
 
-static void tilda_terminal_switch_page_cb (GtkNotebook *notebook,
-   GtkWidget   *page,
-   guintpage_num,
-   tilda_window *tw)
-{
-DEBUG_FUNCTION ("tilda_terminal_switch_page_cb");
-guint counter = 0;
-tilda_term *term = NULL;
-for(GList *item=tw->terms; item != NULL; item=item->next) {
-if(counter == page_num) {
-term = (tilda_term*) item->data;
-}
-counter++;
-}
-
-char * current_title = tilda_terminal_get_title (term);
-
-if (current_title != NULL) {
-gtk_window_set_title (GTK_WINDOW (tw->window), current_title);
-}
-
-g_free (current_title);
-}
-
 struct tilda_term_ *tilda_term_init (struct tilda_window_ *tw)
 {
 DEBUG_FUNCTION ("tilda_term_init");
@@ -185,12 +172,21 @@
   G_CALLBACK(refresh_window_cb), tw->window);
 g_signal_connect (G_OBJECT(term->vte_term), "move-window",
   G_CALLBACK(move_window_cb), tw->window);
-g_signal_connect (G_OBJECT (tw->notebook), "switch-page",
-  G_CALLBACK (tilda_terminal_switch_page_cb), tw);
 
 /* Match URL's, etc */
-term->http_regexp=g_regex_new(HTTP_REGEXP, G_REGEX_CASELESS, 
G_REGEX_MATCH_NOTEMPTY, );
-ret = vte_terminal_match_add_gregex(VTE_TERMINAL(term->vte_term), 
term->http_regexp,0);
+if (VTE_CHECK_VERSION_RUMTIME (0, 56, 1)) {
+term->vte_regexp = vte_regex_new_for_match (HTTP_REGEXP, -1,
+PCRE2_CASELESS, );
+
+ret = vte_terminal_match_add_regex (VTE_TERMINAL(term->vte_term), 
term->vte_regexp,
+PCRE2_NOTEMPTY);
+} else {
+term->http_regexp = g_regex_new (HTTP_REGEXP, G_REGEX_CASELESS,
+ G_REGEX_MATCH_NOTEMPTY, );
+ret = vte_terminal_match_add_gregex (VTE_TERMINAL(term->vte_term),
+ term->http_regexp, 0);
+}
+
 vte_terminal_match_set_cursor_type (VTE_TERMINAL(term->vte_term), ret, 
GDK_HAND2);
 
 /* Show 

commit tilda for openSUSE:Factory

2020-04-27 Thread root
Hello community,

here is the log from the commit of package tilda for openSUSE:Factory checked 
in at 2020-04-27 23:39:52

Comparing /work/SRC/openSUSE:Factory/tilda (Old)
 and  /work/SRC/openSUSE:Factory/.tilda.new.2738 (New)


Package is "tilda"

Mon Apr 27 23:39:52 2020 rev:11 rq:798205 version:1.5.0

Changes:

--- /work/SRC/openSUSE:Factory/tilda/tilda.changes  2019-03-29 
20:43:24.602677798 +0100
+++ /work/SRC/openSUSE:Factory/.tilda.new.2738/tilda.changes2020-04-27 
23:40:08.179729158 +0200
@@ -1,0 +2,44 @@
+Sat Apr  4 11:57:49 UTC 2020 - Sam Yu 
+
+- Update to version 1.5.0:
+   * Search is now backwards by default (Sebastian Geiger).
+   * Tilda now handles monitor changes and adjusts its size automatically.
+ This is useful in cases when a notebook is connected to an external
+ monitor (Sebastian Geiger).
+   * Tilda now stores the relative sizes of the window in percent rather
+ than the absolute values in pixels (Sebastian Geiger).
+   * The confirmation dialogs for confirm tab close and prompt on exit are
+ now enabled by default (Sebastian Geiger).
+   * When using the block cursor, the background color of the cursor
+ is now correctly applied (Brian Hsu).
+   * Fixed issue in transparency. Fixes #269 (Sebastian Geiger).
+   * Fixed a resize issue in fullscreen mode. Fixes #306 (Sebastian 
Geiger).
+   * Tilda now uses asynchronous command spawning. A new option supports
+ changing the default timeout when spawning a command
+ (default is 3 seconds) (Sebastian Geiger).
+   * Various fixes related to the window title. Tooltips now display
+ full tab title (Tom Briden). Fixed missing title on initial window and
+ fixed a problem with setting the title when switching between tabs. 
Also
+ the computation of the title is now more consistent between the window
+ title, tooltips and the tab title (Sebastian Geiger).
+   * When loading configuration files tilda follows symlinks.
+ Fixes #327 (Sebastian Geiger).
+   * Tilda now uses xdg-open to open web links rather
+ than x-www-browser (lucasbru).
+   * In non-X11 environments such as Wayland tilda will now always use the
+ X11 backend (Roman Hoellen).
+   * Exclamation mark '!' is now supported by the HTTP regex for detecting
+ web links.
+   * Added a check if lock dir exists which avoids a warning when tilda
+ starts the first time and the lock dir has not been created yet
+ (Sebastian Geiger).
+   * We now correctly free the resources when closing the a terminal tab
+ (Sebastian Geiger).
+   * Tilda now uses structured logging. In debug mode tilda will 
automatically
+ output all debug messages. In non-debug mode, debug messages can still
+ be output by exporting G_MESSAGES_DEBUG=tilda (Sebastian Geiger).
+   * Removed 'Allow Bold' option (Sebastian Geiger).
+   * Removed deprecated antialiasing option (Sebastian Geiger).
+   * Dropped support for older VTE versions (Sebastian Geiger).
+
+---

Old:

  tilda-1.4.1.tar.gz

New:

  tilda-1.5.0.tar.gz



Other differences:
--
++ tilda.spec ++
--- /var/tmp/diff_new_pack.6qgEu5/_old  2020-04-27 23:40:10.867734406 +0200
+++ /var/tmp/diff_new_pack.6qgEu5/_new  2020-04-27 23:40:10.871734413 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   tilda
-Version:1.4.1
+Version:1.5.0
 Release:0
 Summary:A Gtk based drop down terminal for Linux and Unix
 License:GPL-2.0-or-later
@@ -30,6 +30,7 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.10.0
 BuildRequires:  pkgconfig(libconfuse)
+BuildRequires:  pkgconfig(libpcre2-posix)
 BuildRequires:  pkgconfig(vte-2.91)
 Recommends: %{name}-lang
 
@@ -66,8 +67,8 @@
 %{_bindir}/%{name}
 %{_datadir}/applications/%{name}.desktop
 %{_datadir}/pixmaps/%{name}.png
-%dir %{_datadir}/appdata
-%{_datadir}/appdata/%{name}.appdata.xml
+%dir %{_datadir}/metainfo
+%{_datadir}/metainfo/%{name}.appdata.xml
 
 %files lang -f %{name}.lang
 

++ tilda-1.4.1.tar.gz -> tilda-1.5.0.tar.gz ++
 31771 lines of diff (skipped)




commit tilda for openSUSE:Factory

2019-03-29 Thread root
Hello community,

here is the log from the commit of package tilda for openSUSE:Factory checked 
in at 2019-03-29 20:43:21

Comparing /work/SRC/openSUSE:Factory/tilda (Old)
 and  /work/SRC/openSUSE:Factory/.tilda.new.25356 (New)


Package is "tilda"

Fri Mar 29 20:43:21 2019 rev:10 rq:689772 version:1.4.1

Changes:

--- /work/SRC/openSUSE:Factory/tilda/tilda.changes  2018-02-26 
23:26:22.243704182 +0100
+++ /work/SRC/openSUSE:Factory/.tilda.new.25356/tilda.changes   2019-03-29 
20:43:24.602677798 +0100
@@ -1,0 +2,7 @@
+Thu Mar 14 17:42:59 UTC 2019 - Bjørn Lie 
+
+- Remove conditionals for no longer supported versions of openSUSE.
+- Run spec-cleaner, modernize spec where possible, replace
+  gtk3-devel and vte-devel for their pkgconfig() variants.
+
+---



Other differences:
--
++ tilda.spec ++
--- /var/tmp/diff_new_pack.uxb2sU/_old  2019-03-29 20:43:25.106677901 +0100
+++ /var/tmp/diff_new_pack.uxb2sU/_new  2019-03-29 20:43:25.106677901 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tilda
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # 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/
 #
 
 
@@ -20,17 +20,18 @@
 Version:1.4.1
 Release:0
 Summary:A Gtk based drop down terminal for Linux and Unix
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  System/X11/Terminals
-Url:https://github.com/lanoxx/tilda/
-Source0:
https://github.com/lanoxx/%{name}/archive/%{name}-%{version}.tar.gz#/%{name}-%{version}.tar.gz
+URL:https://github.com/lanoxx/%{name}/
+Source0:%{url}/archive/%{name}-%{version}.tar.gz
+
 BuildRequires:  automake
-BuildRequires:  gtk3-devel
+BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
-BuildRequires:  vte-devel
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.10.0
 BuildRequires:  pkgconfig(libconfuse)
+BuildRequires:  pkgconfig(vte-2.91)
 Recommends: %{name}-lang
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Tilda is a terminal emulator and can be compared with other popular terminal
@@ -43,26 +44,25 @@
 The screen shots below show some of the options that Tilda provides.
 
 %lang_package
+
 %prep
 %setup -q -n %{name}-%{name}-%{version}
 
 %build
 NOCONFIGURE=1 ./autogen.sh
-%if 0%{?suse_version} >= 1315
-%configure
-%else
-%configure --disable-vte-2.91
-%endif
-make %{?_smp_mflags}
+%configure \
+   --enable-vte-2.91 \
+   %{nil}
+%make_build
 
 %install
-%makeinstall
+%make_install
 %suse_update_desktop_file %{name}
 %find_lang %{name} %{?no_lang_C}
 
 %files
-%defattr(-,root,root,-)
-%doc AUTHORS COPYING README.md ChangeLog HACKING.md TODO.md
+%license COPYING
+%doc AUTHORS README.md ChangeLog HACKING.md TODO.md
 %{_bindir}/%{name}
 %{_datadir}/applications/%{name}.desktop
 %{_datadir}/pixmaps/%{name}.png




commit tilda for openSUSE:Factory

2018-02-26 Thread root
Hello community,

here is the log from the commit of package tilda for openSUSE:Factory checked 
in at 2018-02-26 23:26:13

Comparing /work/SRC/openSUSE:Factory/tilda (Old)
 and  /work/SRC/openSUSE:Factory/.tilda.new (New)


Package is "tilda"

Mon Feb 26 23:26:13 2018 rev:9 rq:580154 version:1.4.1

Changes:

--- /work/SRC/openSUSE:Factory/tilda/tilda.changes  2016-09-30 
15:33:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.tilda.new/tilda.changes 2018-02-26 
23:26:22.243704182 +0100
@@ -1,0 +2,36 @@
+Wed Feb 21 16:48:43 UTC 2018 - malcolmle...@opensuse.org
+
+- Updated to version 1.4.1:
+  * Traslation updates.
+- Changes from version 1.4.0:
+  * Fixes a problem with close-tab action in the context menu.
+  * The default word matching expression now matches IPv6
+addresses.
+  * The keybindings in the wizard are now displayed in form of a
+list.
+  * Fixed an issue which broke the transparency feature after
+changing the color scheme.
+  * Fixed an issue that prevented the initial tab title from being
+correctly set.
+  * Tilda now supports a new command line option to specify the
+configuration file.
+  * The 'Tab Position' option has been moved to appearance section
+in the wizard.
+  * New option 'Expand Tabs' causes tabs in the tilda window to
+fill all available horizontal space.
+  * New option 'Show Single Tab' to show the tab bar also when
+only a single tab is open.
+  * Tilda can now be configured to show a confirmation dialog when
+closing a tab or when when tilda is closed.
+  * Tilda now knows a new color scheme called 'Snazzy'.
+  * The tab title learned more options to configure behavior of
+long tab tiles.
+  * The option for double buffering has long been deprecated and
+was removed in this release.
+- Changes from version 1.3.4:
+  * Fixed crash that occured when the VTE version in use is 0.3.
+- There is an issue when trying to run on wayland, a work-around
+  is to start tilda via 'env GDK_BACKEND=x11 /usr/bin/tilda', but
+  hotkey support may be lost (boo#1080341).
+
+---

Old:

  tilda-1.3.3.tar.gz

New:

  tilda-1.4.1.tar.gz



Other differences:
--
++ tilda.spec ++
--- /var/tmp/diff_new_pack.y0bI1u/_old  2018-02-26 23:26:23.355664191 +0100
+++ /var/tmp/diff_new_pack.y0bI1u/_new  2018-02-26 23:26:23.359664047 +0100
@@ -17,13 +17,13 @@
 
 
 Name:   tilda
-Version:1.3.3
+Version:1.4.1
 Release:0
 Summary:A Gtk based drop down terminal for Linux and Unix
 License:GPL-2.0+
 Group:  System/X11/Terminals
 Url:https://github.com/lanoxx/tilda/
-Source0:
https://github.com/lanoxx/%{name}/archive/%{name}-%{version}.tar.gz
+Source0:
https://github.com/lanoxx/%{name}/archive/%{name}-%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  automake
 BuildRequires:  gtk3-devel
 BuildRequires:  update-desktop-files
@@ -60,12 +60,6 @@
 %suse_update_desktop_file %{name}
 %find_lang %{name} %{?no_lang_C}
 
-%post
-%desktop_database_post
-
-%postun
-%desktop_database_postun
-
 %files
 %defattr(-,root,root,-)
 %doc AUTHORS COPYING README.md ChangeLog HACKING.md TODO.md

++ tilda-1.3.3.tar.gz -> tilda-1.4.1.tar.gz ++
 34646 lines of diff (skipped)




commit tilda for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package tilda for openSUSE:Factory checked 
in at 2016-09-30 15:33:36

Comparing /work/SRC/openSUSE:Factory/tilda (Old)
 and  /work/SRC/openSUSE:Factory/.tilda.new (New)


Package is "tilda"

Changes:

--- /work/SRC/openSUSE:Factory/tilda/tilda.changes  2015-12-23 
08:50:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.tilda.new/tilda.changes 2016-09-30 
15:33:40.0 +0200
@@ -1,0 +2,27 @@
+Sun Sep 25 13:01:54 UTC 2016 - malcolmle...@opensuse.org
+
+- Update to version 1.3.3:
+  + Bumped GTK+ version to 3.10, we are already implicitly
+depending on it.
+  + Fixed the close-tab regression introduced in the last patch.
+  + Fixed CTRL+SHIFT+W closing two tabs.
+- Changes from version 1.3.2:
+  + Updated Hacking.md's instructions to reflect VTE 2.91 api bump.
+  + Added a widget name to the search widget for easier styling.
+  + Several code cleanups and a few deprecation warnings where
+removed.
+  + Added default styling to the tilda search bar.
+  + Cleanup code for CSS loading. It now reports an error if
+something went wrong.
+  + Fixed a problem that caused tilda to close two tabs when the
+close tab hotkey was used.
+  + The preference dialog is now also shown above the tilda window
+if the tilda window is in fullscreen mode.
+- Changes from version 1.3.1:
+  + Transparency regression for GNOME shell fixed.
+  + Images in the appdata file and Readme.md have been updated.
+  + Fixed an issue that would the background transparancy to be
+reset on a color palette change.
+- NOTE: No wayland support (yet?).
+
+---

Old:

  tilda-1.3.0.tar.gz

New:

  tilda-1.3.3.tar.gz



Other differences:
--
++ tilda.spec ++
--- /var/tmp/diff_new_pack.CL6zBL/_old  2016-09-30 15:33:42.0 +0200
+++ /var/tmp/diff_new_pack.CL6zBL/_new  2016-09-30 15:33:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   tilda
-Version:1.3.0
+Version:1.3.3
 Release:0
 Summary:A Gtk based drop down terminal for Linux and Unix
 License:GPL-2.0+

++ tilda-1.3.0.tar.gz -> tilda-1.3.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tilda-tilda-1.3.0/ChangeLog 
new/tilda-tilda-1.3.3/ChangeLog
--- old/tilda-tilda-1.3.0/ChangeLog 2015-11-17 21:19:50.0 +0100
+++ new/tilda-tilda-1.3.3/ChangeLog 2016-04-18 14:09:55.0 +0200
@@ -1,3 +1,27 @@
+version 1.3.3 (2016-04-18):
+   * Bumped GTK+ version to 3.10, we are already implicitly depending on 
it.
+   * Fixed the close-tab regression introduced in the last patch.
+   * Fixed CTRL+SHIFT+W closing two tabs.
+
+version 1.3.2 (2016-02-14):
+   * Updated Hacking.md's instructions to reflect VTE 2.91 api bump 
(Thanks to HiTuX)
+   * Added a widget name to the search widget for easier styling 
(Sebastian Geiger)
+   * Several code cleanups and a few deprecation warnings where removed 
(Sebastian Geiger)
+   * Added default styling to the tilda search bar (Sebastian Geiger)
+   * Cleanup code for CSS loading. It now reports an error if something 
went wrong (Sebastian Geiger)
+   * Fixed a problem that caused tilda to close two tabs when the close 
tab hotkey
+ was used (Sebastian Geiger)
+   * The preference dialog is now also shown above the tilda window if the 
tilda
+ window is in fullscreen mode (Alexander Maznev)
+
+version 1.3.1 (2015-12-16):
+   * Despite the claim that the transparency was fixed for GNOME Shell
+ there was a regression that broke it again. With this version
+ it should finally be fixed (again).
+   * Images in the appdata file and Readme.md have been updated.
+   * Fixed an issue that would the background transparancy to be
+ reset on a color palette change (Sergey Zolotarev).
+
 version 1.3.0 (2015-11-17):
* Fixed an issue with transparency in GNOME Shell (Ingmar Olsson)
* Fixed wrong move-tab behaviour (Andrew Lin)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tilda-tilda-1.3.0/HACKING.md 
new/tilda-tilda-1.3.3/HACKING.md
--- old/tilda-tilda-1.3.0/HACKING.md2015-11-17 21:19:50.0 +0100
+++ new/tilda-tilda-1.3.3/HACKING.md2016-04-18 14:09:55.0 +0200
@@ -4,13 +4,13 @@
 
  * Glib >= 2.30 - http://developer.gnome.org/glib/2.30/
  * Gtk+3 >= 3.0 - http://developer.gnome.org/gtk3/3.0/
- * VTE >= 2.90 - http://developer.gnome.org/vte/0.30/
+ * VTE >= 2.91 - http://developer.gnome.org/vte/0.30/
  * libConfuse - http://www.nongnu.org/confuse/
  * libx11-dev - 

commit tilda for openSUSE:Factory

2015-12-22 Thread h_root
Hello community,

here is the log from the commit of package tilda for openSUSE:Factory checked 
in at 2015-12-23 08:50:29

Comparing /work/SRC/openSUSE:Factory/tilda (Old)
 and  /work/SRC/openSUSE:Factory/.tilda.new (New)


Package is "tilda"

Changes:

--- /work/SRC/openSUSE:Factory/tilda/tilda.changes  2012-02-28 
14:16:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.tilda.new/tilda.changes 2015-12-23 
08:50:30.0 +0100
@@ -1,0 +2,12 @@
+Sat Nov 21 02:17:55 UTC 2015 - r...@fthiessen.de
+
+- Updated to version 1.3.0:
+  * Clean up SPEC
+  * Removed now obsolete patches (fixed in this version):
+* tilda-add-xrandr-check.patch
+* tilda-desktop-icon.patch
+* tilda-fix-gdk-x11-window-set-user-time.patch
+* tilda-fix-glib-include.patch
+* tilda-fix-pointers.patch
+
+---

Old:

  tilda-0.9.6.tar.gz
  tilda-add-xrandr-check.patch
  tilda-desktop-icon.patch
  tilda-fix-gdk-x11-window-set-user-time.patch
  tilda-fix-glib-include.patch
  tilda-fix-pointers.patch

New:

  tilda-1.3.0.tar.gz



Other differences:
--
++ tilda.spec ++
--- /var/tmp/diff_new_pack.FHPzI0/_old  2015-12-23 08:50:31.0 +0100
+++ /var/tmp/diff_new_pack.FHPzI0/_new  2015-12-23 08:50:31.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tilda
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,106 +16,64 @@
 #
 
 
-# FIXME incorrect-fsf-address reported upstream
-# 
https://sourceforge.net/tracker/?func=detail=3473005_id=126081=704595
-
 Name:   tilda
-Version:0.9.6
+Version:1.3.0
 Release:0
-Summary:A quake like terminal for GNOME
+Summary:A Gtk based drop down terminal for Linux and Unix
 License:GPL-2.0+
 Group:  System/X11/Terminals
-Url:http://tilda.sourceforge.net/
-Source0:
http://downloads.sourceforge.net/tilda/%{name}-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM tilda-desktop_icon.patch sf#3473002 
malcolmle...@opensuse.org -- Fix fullpath to icon and icon file extension
-Patch0: tilda-desktop-icon.patch
-# PATCH-FIX-UPSTREAM tilda-fix-pointers.patch sf#3473004 
malcolmle...@opensuse.org -- Fix 64bit-portability-issue
-Patch1: tilda-fix-pointers.patch
-# PATCH-FIX-UPSTREAM tilda-fix-gdk-x11-window-set-user-time.patch bnc#633863 
sf#2988694 malcolmle...@opensuse.org -- Fix a crash
-Patch2: tilda-fix-gdk-x11-window-set-user-time.patch
-# PATCH-FIX-UPSTREAM tilda-fix-glib-include.patch sf#3473000 
malcolmle...@opensuse.org -- Only  can be included directly
-Patch3: tilda-fix-glib-include.patch
-# PATCH-FIX-UPSTREAM tilda-add-xrandr-check.patch sf#3492123 
malcolmle...@opensuse.org -- Add check for the presence of the xrandr headers 
in configure.
-Patch4: tilda-add-xrandr-check.patch
-# needed for patch4
-BuildRequires:  autoconf
-# needed for patch4
+Url:https://github.com/lanoxx/tilda/
+Source0:
https://github.com/lanoxx/%{name}/archive/%{name}-%{version}.tar.gz
 BuildRequires:  automake
-BuildRequires:  flex
-BuildRequires:  libconfuse-devel
+BuildRequires:  gtk3-devel
 BuildRequires:  update-desktop-files
-%if 0%{?suse_version} >= 1210
-BuildRequires:  vte2-devel
-%else
 BuildRequires:  vte-devel
-%endif
-%if 0%{?suse_version} > 1210
-BuildRequires:  libX11-devel
-BuildRequires:  libXrandr-devel
-BuildRequires:  libXt-devel
-%else
-BuildRequires:  xorg-x11-libXt-devel
-%endif
-%if 0%{?suse_version} >= 1140
-BuildRequires:  pkgconfig(libglade-2.0)
-BuildRequires:  pkgconfig(pango)
-%else
-BuildRequires:  libglade2-devel
-BuildRequires:  pango-devel
-%endif
+BuildRequires:  pkgconfig(libconfuse)
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Tilda is a Linux terminal taking after the likeness of many classic terminals
-from first person shooter games, Quake, Doom and Half-Life (to name a few),
-where the terminal has no border and is hidden from the desktop until a key is
-pressed.
+Tilda is a terminal emulator and can be compared with other popular terminal
+emulators such as gnome-terminal (Gnome), Konsole (KDE), xterm and many others.
+The specialities of Tilda are that it does not behave like a normal window
+but instead it can be pulled up and down from the top of the screen with
+a special hotkey. Additionally Tilda is highly configurable.
+It is possible to configure the hotkeys for keybindings,
+change the appearance and many options 

commit tilda for openSUSE:Factory

2012-02-28 Thread h_root
Hello community,

here is the log from the commit of package tilda for openSUSE:Factory checked 
in at 2012-02-28 14:16:17

Comparing /work/SRC/openSUSE:Factory/tilda (Old)
 and  /work/SRC/openSUSE:Factory/.tilda.new (New)


Package is tilda, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/tilda/tilda.changes  2012-01-24 
12:23:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.tilda.new/tilda.changes 2012-02-28 
14:16:19.0 +0100
@@ -1,0 +2,15 @@
+Thu Feb 23 15:30:43 UTC 2012 - malcolmle...@opensuse.org
+
+- Add tilda-add-xrandr-check.patch: Add check for the presence of
+  the xrandr headers in configure since xrandr is used in the code
+  (sf#3492123).
+
+---
+Tue Feb 21 21:38:25 UTC 2012 - dims...@opensuse.org
+
+- Update BuildRequires after reorganization of xorg-x11 packages:
+  + On 12.2/Factory and later, add libX11-devel, libXrandr-devel
+and libXt-devel.
+  + Only use xorg-x11-libXt-devel on 12.1 and earlier.
+
+---

New:

  tilda-add-xrandr-check.patch



Other differences:
--
++ tilda.spec ++
--- /var/tmp/diff_new_pack.mKgAAe/_old  2012-02-28 14:16:19.0 +0100
+++ /var/tmp/diff_new_pack.mKgAAe/_new  2012-02-28 14:16:19.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tilda
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,25 +15,32 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 # FIXME incorrect-fsf-address reported upstream
 # 
https://sourceforge.net/tracker/?func=detailaid=3473005group_id=126081atid=704595
 
 Name:   tilda
 Version:0.9.6
-Release:1
+Release:0
 Summary:A quake like terminal for GNOME
 License:GPL-2.0+
-Url:http://tilda.sourceforge.net/
 Group:  System/X11/Terminals
+Url:http://tilda.sourceforge.net/
 Source0:
http://downloads.sourceforge.net/tilda/%{name}-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM tilda-desktop_icon.patch sf#3473002 
malcolmle...@opensuse.org -- Fix fullpath to icon and icon file extension
 Patch0: tilda-desktop-icon.patch
 # PATCH-FIX-UPSTREAM tilda-fix-pointers.patch sf#3473004 
malcolmle...@opensuse.org -- Fix 64bit-portability-issue
 Patch1: tilda-fix-pointers.patch
-# PATCH-FIX-UPSTREAM tilda-fix-gdk-x11-window-set-user-time.patch bnc#633863 
sf#2988694 malcolmle...@opensuse.org -- Rename patch as per patch guidlines
+# PATCH-FIX-UPSTREAM tilda-fix-gdk-x11-window-set-user-time.patch bnc#633863 
sf#2988694 malcolmle...@opensuse.org -- Fix a crash
 Patch2: tilda-fix-gdk-x11-window-set-user-time.patch
 # PATCH-FIX-UPSTREAM tilda-fix-glib-include.patch sf#3473000 
malcolmle...@opensuse.org -- Only glib.h can be included directly
 Patch3: tilda-fix-glib-include.patch
+# PATCH-FIX-UPSTREAM tilda-add-xrandr-check.patch sf#3492123 
malcolmle...@opensuse.org -- Add check for the presence of the xrandr headers 
in configure.
+Patch4: tilda-add-xrandr-check.patch
+# needed for patch4
+BuildRequires:  autoconf
+# needed for patch4
+BuildRequires:  automake
 BuildRequires:  flex
 BuildRequires:  libconfuse-devel
 BuildRequires:  update-desktop-files
@@ -42,7 +49,13 @@
 %else
 BuildRequires:  vte-devel
 %endif
+%if 0%{?suse_version}  1210
+BuildRequires:  libX11-devel
+BuildRequires:  libXrandr-devel
+BuildRequires:  libXt-devel
+%else
 BuildRequires:  xorg-x11-libXt-devel
+%endif
 %if 0%{?suse_version} = 1140
 BuildRequires:  pkgconfig(libglade-2.0)
 BuildRequires:  pkgconfig(pango)
@@ -66,11 +79,14 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 # Fix glade file installed location; needs mv in %%install
 sed -i 's|tilda.glade|%{name}/%{name}.glade|g' src/wizard.c
 
 %build
+# needed for patch4
+autoreconf -fi
 %configure
 make %{?_smp_mflags}
 

++ tilda-add-xrandr-check.patch ++
diff -Naur a/configure.ac b/configure.ac
--- a/configure.ac  2008-04-28 05:40:18.0 -0500
+++ b/configure.ac  2012-02-23 09:33:37.650957910 -0600
@@ -58,6 +58,7 @@
 PKG_CHECK_MODULES([LIBGLADE], [libglade-2.0])
 PKG_CHECK_MODULES([VTE], [vte])
 PKG_CHECK_MODULES([LIBCONFUSE], [libconfuse])
+PKG_CHECK_MODULES([XRANDR], [xrandr])
 
 # Checks for header files.
 AC_PATH_X
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org