[Bug 1878478] Re: Tilda 1.5.0-1.1: The switch-page callback is registered multiple times

2020-05-26 Thread Launchpad Bug Tracker
This bug was fixed in the package tilda - 1.5.2-0ubuntu1

---
tilda (1.5.2-0ubuntu1) focal; urgency=medium

  * Packaged new upstream version (LP: #1877758).
- Fixes URL parsing with VTE 0.60 (LP: #1878473).
- Fixes handling of @ sign in URLs (LP: #1878474).
- Fixes fullscreen windows appearing behind panels (LP: #1878475).
- Fixes reappearing of close tab dialog (LP: #1878476).
- Fixes multiple registration of switch-page signal (LP: #1878478).
  * Note that 1.5.1 was skipped due to an issue in the release process.

 -- Sebastian Geiger   Thu, 14 May 2020 13:27:34 +0200

** Changed in: tilda (Ubuntu Focal)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1878478

Title:
  Tilda 1.5.0-1.1: The switch-page callback is registered multiple times

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tilda/+bug/1878478/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1878478] Re: Tilda 1.5.0-1.1: The switch-page callback is registered multiple times

2020-05-24 Thread Sebastian Geiger
I have tested the new version from proposed and I am not seeing any
regressions.

** Tags removed: verification-needed verification-needed-focal
** Tags added: verification-done verification-done-focal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1878478

Title:
  Tilda 1.5.0-1.1: The switch-page callback is registered multiple times

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tilda/+bug/1878478/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1878478] Re: Tilda 1.5.0-1.1: The switch-page callback is registered multiple times

2020-05-20 Thread Brian Murray
Hello Sebastian, or anyone else affected,

Accepted tilda into focal-proposed. The package will build now and be
available at https://launchpad.net/ubuntu/+source/tilda/1.5.2-0ubuntu1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.  Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, what testing has been
performed on the package and change the tag from verification-needed-
focal to verification-done-focal. If it does not fix the bug for you,
please add a comment stating that, and change the tag to verification-
failed-focal. In either case, without details of your testing we will
not be able to proceed.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance for helping!

N.B. The updated package will be released to -updates after the bug(s)
fixed by this package have been verified and the package has been in
-proposed for a minimum of 7 days.

** Changed in: tilda (Ubuntu Focal)
   Status: New => Fix Committed

** Tags added: verification-needed verification-needed-focal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1878478

Title:
  Tilda 1.5.0-1.1: The switch-page callback is registered multiple times

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tilda/+bug/1878478/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1878478] Re: Tilda 1.5.0-1.1: The switch-page callback is registered multiple times

2020-05-14 Thread Dmitry Shachnev
** Description changed:

  [Impact]
  
  Signal handlers for the "switch-page" signal are continuously being
  registered when a new tab is opened and are not correctly cleaned up
  when a tab is closed causing a linear increase in invoked callbacks when
  a user switches tabs.
  
  Affects Version: 1.5.0-1.1
  Fixed Version: 1.5.2-1
  
  The fix is already in Debian unstable and also in Ubuntu Groovy but
  requires an SRU upload for Focal.
  
  Relevant upstream bug:
  https://github.com/lanoxx/tilda/issues/421
  
  [Test Case]
  
  1. This can only be observed in the debug mode when the invocation of
  the signal handler callback is logged to the console. In debug mode
  users would see the "tilda_terminal_switch_page_cb" message to be
  printed N times for N tabs that have been opened (for the life time of
  the process including for tabs that have already been closed).
  
  Expected result: the switch-page callback is invoked exactly one when
  the user switches between one tab and another one.
  
  The fix is part of tilda 1.5.1, see upstream milestone for 1.5.1 which tracks 
the corresponding issue #406:
  https://github.com/lanoxx/tilda/milestone/7?closed=1
  
  [Regression Potential]
  
- The regression potential for the switch-tab signal handler change is
+ The regression potential for the switch-page signal handler change is
  minimal, the code itself has not changed, the signal is just registered
  to a different object to avoid registering it multiple times.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1878478

Title:
  Tilda 1.5.0-1.1: The switch-page callback is registered multiple times

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tilda/+bug/1878478/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1878478] Re: Tilda 1.5.0-1.1: The switch-page callback is registered multiple times

2020-05-14 Thread Dmitry Shachnev
** Description changed:

+ [Impact]
+ 
  Signal handlers for the "switch-page" signal are continuously being
  registered when a new tab is opened and are not correctly cleaned up
  when a tab is closed causing a linear increase in invoked callbacks when
  a user switches tabs.
  
  Affects Version: 1.5.0-1.1
  Fixed Version: 1.5.2-1
  
  The fix is already in Debian unstable and also in Ubuntu Groovy but
  requires an SRU upload for Focal.
  
  Relevant upstream bug:
  https://github.com/lanoxx/tilda/issues/421
  
  [Test Case]
- 1. This can only be observed in the debug mode when the invocation of the 
signal handler callback is logged to the console. In debug mode users would see 
the "tilda_terminal_switch_page_cb" message to be printed N times for N tabs 
that have been opened (for the life time of the process including for tabs that 
have already been closed).
+ 
+ 1. This can only be observed in the debug mode when the invocation of
+ the signal handler callback is logged to the console. In debug mode
+ users would see the "tilda_terminal_switch_page_cb" message to be
+ printed N times for N tabs that have been opened (for the life time of
+ the process including for tabs that have already been closed).
  
  Expected result: the switch-page callback is invoked exactly one when
  the user switches between one tab and another one.
  
  The fix is part of tilda 1.5.1, see upstream milestone for 1.5.1 which tracks 
the corresponding issue #406:
  https://github.com/lanoxx/tilda/milestone/7?closed=1
+ 
+ [Regression Potential]
+ 
+ The regression potential for the switch-tab signal handler change is
+ minimal, the code itself has not changed, the signal is just registered
+ to a different object to avoid registering it multiple times.

** Also affects: tilda (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Changed in: tilda (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1878478

Title:
  Tilda 1.5.0-1.1: The switch-page callback is registered multiple times

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tilda/+bug/1878478/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs