Skip to content

6.0.0

Compare
Choose a tag to compare
@oliverschwendener oliverschwendener released this 16 Sep 14:28

New Features

  • When using calculator you can copy the result to the system clipboard by pressing Enter (#57)
  • Added new system settings for macOS

Compatibility with older versions

If you are using an older version please be aware that your old config file will not be compatible with this release

  • customCommands has been replaced with shortcuts. You can migrate your previous config like this:

v5.1.0 and older:

"customCommands": [
    {
        "name": "Whatsapp",
        "executionArgument": "https://web.whatsapp.com",
        "icon": "<svg>...</svg"
    }
]

v6.0.0 and newer:

"shortcuts": [
    {
        "name": "Whatsapp",
        "executionArgument": "https://web.whatsapp.com",
        "icon": "<svg>...</svg"
    }
]
  • There is a new way to specify custom commands which accept parameters

v6.0.0 and newer:

"customCommands": [
    {
        "name": "Open with Visual Studio Code:",
        "executionArgument": "!code",
        "prefix": "openwithcode"
    }
]