diff --git a/data/com.github.jeysonflores.hasher.appdata.xml b/data/com.github.jeysonflores.hasher.appdata.xml index 24d227f..096a958 100644 --- a/data/com.github.jeysonflores.hasher.appdata.xml +++ b/data/com.github.jeysonflores.hasher.appdata.xml @@ -18,7 +18,7 @@
Features Include: @@ -27,13 +27,33 @@
New Features:
+Improvements:
+Improvements:
+First Release
diff --git a/src/MainWindow.py b/src/MainWindow.py index b1020e9..7856d0d 100644 --- a/src/MainWindow.py +++ b/src/MainWindow.py @@ -56,7 +56,7 @@ def __init__(self): self.settings = Gio.Settings(schema_id="com.github.jeysonflores.hasher") self.hashes_alg_combo.set_active(self.settings.get_int("algorithm")) - self.hashes_alg_combo.connect("changed", self.on_algo_changed) + self.hashes_alg_combo.connect("changed", self.on_alg_changed) button_combo = Gtk.Box(orientation = Gtk.Orientation.HORIZONTAL) button_combo_context = button_combo.get_style_context() button_combo_context.add_class("selection_data") @@ -162,7 +162,7 @@ def __init__(self): self.resize(600, 400) - def on_algo_changed(self, algo): + def on_alg_changed(self, algo): self.settings.set_int("algorithm", self.hashes_alg_combo.get_active()) def main_file_selection(self, button):