Releases: dantheuber/clipless
1.4.0
1.3.1
Updated app icon and fixed issues displaying in mac toolbar22
1.3.0
What's Changed
- Extracted quick clips tool launcher into separate window
- Added a hotkey to scan the last copied item
- added GUID to built in patterns
- Quickclips improvements by @dantheuber in #87
Full Changelog: v1.2.0...v1.3.0
1.2.0
Removing mac builds from github actions. DMG files were always "damaged" when installing. Can be used on mac by running via npm run dev or building dmg locally on mac to be used on, however auto updates will not work.
- Reverted hotkeys to copy clips of the same number again.
- Fixed issues setting clip amount.
- Refactored many files.
- Opening settings window with main window close to edge of monitor will open settings fully within available screen space.
1.1.0
Resolves issues installing on mac from dmg file among various issues with hotkeys and enabling always on top setting
1.0.2
Resolves issues with checks for updates.
1.0.1
First initial release of app after major refactor.
Quick Clips
Quick clips work as follows:
Search Terms
Search terms are simply a regular expression (Javascript syntax) where in there are named capture groups. Such as in the example: Context: (?<someTerm>.*)\s, in this regex, someTerm is the only named capture group present.
After creating search terms, they can be associated with tools, where the tools url token is equal to the name of your given capture group.
Tools
Tools are essentially just a web URL to a useful site that can be searched or queried by by passing query string or path parameters.
For example:
you could create a tool, name it Google and provide https://google.com/q={query} as the URL.
Tokens are formatted such that matches the name of the capture group in your search term regex, surrounded by brackets, like such: {someTerm}
Given the regex: Context: (?<someTerm>.*)\s, a tool with the token {someTerm} would be replaced with the text content captured.
NOTE: You MUST provide at least one token which represents the location in the URL that it should be provided.
Once you've created a tool, you can associate it with any created search terms by editing it.
Clip Compile Templates
Create templates for compiling multiple clips into a new clipboard.
- Preferences contains a section for creating templates
ctrl+~shows template selection
Increased Clips
You can now customize the number of clips that will be maintained, even to unnecessarily large numbers, such as 10k+, with a maximum of 100k clips for practicality sake.