wolph / alfred-converter

Alfred unit converter is a smart calculator for Alfred with support for unit conversions to make it a bit comparable to the Google Calculator and Wolfram Alpha.
93 stars 15 forks source link

Option to change decimal separator #34

Closed leonardoholberg closed 2 years ago

leonardoholberg commented 3 years ago

It would be great to change the decimal separator from (.) to (,)

wolph commented 2 years ago

I've been working on it a little... but there are a few snags. The library also supports functions, and these use commas to separate the arguments. For example: log(100, 10)

I could just replace the output however

wolph commented 2 years ago

I've added configurable decimal separators for the output.

Because of the log(100,10) support I can't properly handle the input without breaking other conversions.

wolph commented 2 years ago

It can be downloaded here: https://github.com/WoLpH/alfred-converter/blob/master/unit_converter.alfredworkflow

leonardoholberg commented 2 years ago

Thank you!