Releases: dantheuber/clipless
Another test of automatic updates
Full Changelog: v0.15.0...v0.15.1
Self Signed executable
Fixed issue with build preventing updates from working properly, this now uses a self signed certificate to code sign for windows installs only. Mac support for auto updates will come later.
What's Changed
- Automatic updates - Self Signed by @dantheuber in #63
Full Changelog: v0.14.0...v0.15.0
Test Updates
Testing Test updates.
Automatic Updates
Something that probably should have been done first, but here we are. Any future updates should be downloaded automatically after this.
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.
More Preferences
New Preferences:
- Window Transparency
- Keep locked clips values when clips emptied
Additionally, window width can be changed.
Preferences
Added user preferences and clip editor.
Bootstrap
- Using bootstrap ui
- Basic features working.
- Much still to come 👍