This update contains some cool new things. Big thanks to @skoshy for helping out a lot!
New features
-
Profile support added for Brave Beta, Edge, Edge Beta and Vivaldi Browsers
-
#160 Ability to send custom arguments to browsers/apps (Docs TBD).
-
finicky.getKeys
now available in config. This will eventually replace thekeys
key (https://github.com/johnste/finicky/wiki/Function-parameters) to make the parameters slightly less crowded. -
#129 Url shorteners
urlShorteners
can now be a function so you can append/remove from the list as you please. Example:
module.exports = {
defaultBrowser: "Safari",
options: {
urlShorteners: (list) => [...list, "zombo.com"]
}
};
Bug fixes
- #84 Incorrectly formatted urls would create issues with redirects. Finicky will now escape urls before parsing them to avoid this issue.