mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
update the ChangeLog so andar doesn't beat me up
fix displaying tracker urls with & in the url in the gtkui
This commit is contained in:
parent
e7a45f6dd1
commit
7055a96930
2 changed files with 12 additions and 3 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,7 +1,16 @@
|
|||
=== Deluge 1.2.0_rc3 (In Development) ===
|
||||
==== Core ====
|
||||
* Fix #1047 move completed does not work if saving to non default path
|
||||
|
||||
|
||||
==== GtkUI ====
|
||||
* replace & with & in the details tab to ensure there are no markup errors
|
||||
|
||||
==== Web ====
|
||||
* Fix #1046 changing auto managed via the details tab
|
||||
* Fix setting torrent options when adding
|
||||
* Fix setting file priorities when adding
|
||||
* HTML escape the field values on the details tab
|
||||
|
||||
=== Deluge 1.2.0_rc2 (25 October 2009) ===
|
||||
==== GtkUI ====
|
||||
* Fix path errors when adding torrents externally in Windows
|
||||
|
|
|
@ -105,9 +105,9 @@ class DetailsTab(Tab):
|
|||
|
||||
if widget[0].get_text() != txt:
|
||||
if widget[2][0] == 'comment' and is_url(txt):
|
||||
widget[0].set_markup('<a href="%s">%s</a>' % (txt, txt))
|
||||
widget[0].set_markup('<a href="%s">%s</a>' % (txt, txt.replace('&', '&')))
|
||||
else:
|
||||
widget[0].set_markup(txt)
|
||||
widget[0].set_markup(txt.replace('&', '&'))
|
||||
|
||||
def clear(self):
|
||||
for widget in self.label_widgets:
|
||||
|
|
Loading…
Add table
Reference in a new issue