Skip to content

Commit f707eb0

Browse files
authored
Merge pull request #7 from deefrawley/deefrawley_correction
corrected kg to lb conversion
2 parents abfd081 + d64388f commit f707eb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Name": "General Converter",
55
"Description": "General weights and measures converter",
66
"Author": "deefrawley",
7-
"Version": "1.1.0",
7+
"Version": "1.1.1",
88
"Language": "python",
99
"Website": "https://github.com/deefrawley/Flow.Launcher.Plugin.GenConvert",
1010
"IcoPath": "assets/favicon.ico",

plugin/units.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
["gm", _("gram"), _("grams"), "x * 1", "x * 1"],
161161
# All below convert to/from base
162162
["kg", _("kilogram"), _("kilograms"), "x / 0.001", "x * 0.001"],
163-
["lb", _("pound"), _("pounds"), "x / 0.002205", "x * 0.001"],
163+
["lb", _("pound"), _("pounds"), "x / 0.002205", "x * 0.002205"],
164164
["oz", _("ounce"), _("ounces"), "x / 0.035274", " 0.035274"],
165165
["st", _("stone"), _("stone"), "x / 0.000157473", "x * 0.000157473"],
166166
[

0 commit comments

Comments
 (0)