Skip to content

Releases: mr-pennyworth/alfred-extra-pane

0.2.2

27 Jul 12:22
Compare
Choose a tag to compare

Changes in this release:

  • Allow custom width for vertically positioned panes

0.2.1

22 Jul 12:17
Compare
Choose a tag to compare

Changes in this release:

  • Add Meta AI workflow repo link to README
  • Make audio and video autoplay configurable

0.2.0

15 Jul 21:07
Compare
Choose a tag to compare

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

12 Jul 17:18
Compare
Choose a tag to compare

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

08 Jul 19:44
Compare
Choose a tag to compare

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

02 Jul 00:48
Compare
Choose a tag to compare

Support Alfred themes that use transparency and blur

0.1.6

26 Feb 13:17
Compare
Choose a tag to compare

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

26 Feb 12:52
Compare
Choose a tag to compare
Disable audio and video autoplay

Fixes #9

0.1.4

25 Feb 15:32
Compare
Choose a tag to compare

Mimic Alfred's rounded corners in the pane

image

0.1.3

24 Feb 17:38
Compare
Choose a tag to compare

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}}
}]
image