Skip to content

Commit

Permalink
Merge pull request #7 from deefrawley/deefrawley_correction
Browse files Browse the repository at this point in the history
corrected kg to lb conversion
  • Loading branch information
deefrawley committed Sep 15, 2021
2 parents abfd081 + d64388f commit f707eb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion plugin/units.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
[
Expand Down

0 comments on commit f707eb0

Please sign in to comment.