From 38b1d53254f05a24442000d7272b1552b7f0a34c Mon Sep 17 00:00:00 2001 From: Damien Date: Wed, 15 Sep 2021 20:36:27 +1000 Subject: [PATCH 1/2] corrected kg to lb conversion --- plugin/units.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/units.py b/plugin/units.py index 655cf78..b926357 100644 --- a/plugin/units.py +++ b/plugin/units.py @@ -160,7 +160,7 @@ ["gm", _("gram"), _("grams"), "x * 1", "x * 1"], # All below convert to/from base ["kg", _("kilogram"), _("kilograms"), "x / 0.001", "x * 0.001"], - ["lb", _("pound"), _("pounds"), "x / 0.002205", "x * 0.001"], + ["lb", _("pound"), _("pounds"), "x / 0.002205", "x * 0.002205"], ["oz", _("ounce"), _("ounces"), "x / 0.035274", " 0.035274"], ["st", _("stone"), _("stone"), "x / 0.000157473", "x * 0.000157473"], [ From d64388f3491ad7749f420efff81ed410289a2d22 Mon Sep 17 00:00:00 2001 From: Damien Date: Wed, 15 Sep 2021 20:38:35 +1000 Subject: [PATCH 2/2] version bump --- plugin.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.json b/plugin.json index ec9f19d..18cf05a 100644 --- a/plugin.json +++ b/plugin.json @@ -4,7 +4,7 @@ "Name": "General Converter", "Description": "General weights and measures converter", "Author": "deefrawley", - "Version": "1.1.0", + "Version": "1.1.1", "Language": "python", "Website": "https://github.com/deefrawley/Flow.Launcher.Plugin.GenConvert", "IcoPath": "assets/favicon.ico",