Releases: mr-pennyworth/alfred-extra-pane
Releases · mr-pennyworth/alfred-extra-pane
0.2.2
Changes in this release:
- Allow custom width for vertically positioned panes
0.2.1
Changes in this release:
- Add Meta AI workflow repo link to README
- Make audio and video autoplay configurable
0.2.0
Changes in this release:
- Add install instructions to the README
- Add installation script
- Add support for JavaScript injection
- Allow panes to execute JS repeatedly against a static URL
0.1.9
Changes in this release:
- Add "Quit AlfredExtraPane" to the menu
- Stop showing wildcard panes if exact match panes exist
- Allow pane to be focused, and not hide after Alfred hides
- Add support for custom UserAgent strings
- Move workflow-specific pane configs to workflow dirs
- Add configure menu listing all workflows
- Update images in README to reflect theming changes
- Add support for custom CSS
- Add tutorial to README demoing customization options
0.1.8
Changes in this release:
- Skip further steps in github actions if no version update
- Generate release body based on commit titles
- Add menu bar icon and restart button to status bar
- Remove wflist
- Use sparkle framework for auto-updates
0.1.7
Support Alfred themes that use transparency and blur
0.1.6
Move config from Application Support to Alfred.alfredpreferences
We change the location of the configuration file from
~/Library/Application Support/mr.pennyworth.AlfredExtraPane/config.json
to {/path/to}/Alfred.alfredpreferences/preferences/mr.pennyworth.AlfredExtraPane/config.json
so that the config can be synced across machines just like the rest of Alfred's preferences and workflows.
Fixes #8
0.1.5
Disable audio and video autoplay Fixes #9
0.1.4
0.1.3
The appearance of the pane(s) can be configured by editing
~/Library/Application Support/mr.pennyworth.AlfredExtraPane/config.json
Here's an example with four panes configured:
[{
"workflowUID" : "*",
"alignment" : {
"horizontal" : {"placement" : "right", "width" : 300, "minHeight" : 400}}
}, {
"workflowUID" : "*",
"alignment" : {
"horizontal" : {"placement" : "left", "width" : 300, "minHeight" : 400}}
}, {
"workflowUID" : "*",
"alignment" : {
"vertical" : {"placement" : "top", "height" : 100}}
}, {
"workflowUID" : "*",
"alignment" : {
"vertical" : {"placement" : "bottom", "height" : 200}}
}]