Skip to content

Commit

Permalink
Merge pull request #296 from torikulhabib/master
Browse files Browse the repository at this point in the history
2.6.0
  • Loading branch information
torikulhabib authored Jul 29, 2024
2 parents e032c60 + ffc759c commit 142198a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
10 changes: 10 additions & 0 deletions data/com.github.gabutakut.gabutdm.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@
<binary>com.github.gabutakut.gabutdm</binary>
</provides>
​ <releases>
<release version="2.6.0" date="2024-7-29">
<description>
<p>Remove Minimize button</p>
<p>Fix Notrespond Remove, Start download and stop download</p>
<p>Popover button open Torrent and add url</p>
<p>Buttons Sort on mode search</p>
<p>Info start stop and remove on indicator Menu</p>
<p>and other fixes</p>
</description>
</release>
<release version="2.5.0" date="2024-7-6">
<description>
<p>Replace Treeview to Listbox</p>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project ('com.github.gabutakut.gabutdm','vala', 'c', version: '2.5.0')
project ('com.github.gabutakut.gabutdm','vala', 'c', version: '2.6.0')

i18n = import ('i18n')

Expand Down
3 changes: 3 additions & 0 deletions src/AddUrl.vala
Original file line number Diff line number Diff line change
Expand Up @@ -577,10 +577,12 @@ namespace Gabut {
((Gtk.Label)((ChecksumType) checksumtype).get_last_child ()).attributes = set_attribute (Pango.Weight.BOLD);
checksumtype = checksum as ChecksumType;
((Gtk.Label)checksumtype.get_last_child ()).attributes = color_attribute (0, 60000, 0);
checksum_entry.sensitive = checksumtype.checksums != AriaChecksumTypes.NONE? true : false;
checksums_popover.hide ();
});
checksumtype = checksums_flow.get_child_at_index (0) as ChecksumType;
((Gtk.Label)checksumtype.get_last_child ()).attributes = color_attribute (0, 60000, 0);
checksum_entry.sensitive = checksumtype.checksums != AriaChecksumTypes.NONE? true : false;

checksums_popover.show.connect (() => {
checksums_flow.unselect_all ();
Expand Down Expand Up @@ -1034,6 +1036,7 @@ namespace Gabut {
if (aria_get_option (row.ariagid, AriaOptions.CHECKSUM).contains (((ChecksumType) checksflow).checksums.to_string ())) {
checksumtype = checksflow as ChecksumType;
checksum_entry.text = aria_get_option (row.ariagid, AriaOptions.CHECKSUM).split ("=")[1];
checksum_entry.sensitive = checksumtype.checksums != AriaChecksumTypes.NONE? true : false;
}
}
if (encrypt.active) {
Expand Down

0 comments on commit 142198a

Please sign in to comment.