Skip to content

Releases: richinfante/shbar

0.0.3

25 Apr 00:27
Compare
Choose a tag to compare
0.0.3 Pre-release
Pre-release

Added ability to restart / view logs when a job exits, via UserNotifications.framework

0.0.2

01 Mar 14:29
Compare
Choose a tag to compare
0.0.2 Pre-release
Pre-release
0.0.2-alpha1

Merge branch 'master' of github.com:richinfante/shbar

Prototype Release - Alpha 6

23 Feb 15:23
Compare
Choose a tag to compare
Pre-release
0.0.1-alpha6

Bump version

Prototype Release - Alpha 5

18 Feb 23:53
Compare
Choose a tag to compare
Pre-release

Signing Binary with apple notary svc

Prototype Release - Alpha 4

17 Feb 19:57
Compare
Choose a tag to compare
Pre-release

Sign with Apple Developer ID
Update help link to project readme

Prototype Release - Alpha 3

17 Feb 19:51
Compare
Choose a tag to compare
Pre-release

Improved job control
Known issue: if app is killed then any jobs or running scripts will continue to run.

Prototype Release - Alpha 2

15 Feb 14:21
Compare
Choose a tag to compare
Pre-release

Configuration in ~/.config/shbar/shbar.json
Example config:

[
  {
    "titleRefreshInterval" : 120,
    "title" : "IP Address",
    "mode" : "RefreshingItem",
    "titleScript" : {
      "bin" : "/bin/sh",
      "args" : [
        "-c",
        "echo IP: $(curl https://api.ipify.org)"
      ],
      "env" : {
        "PATH" : "/usr/bin:/usr/local/bin:/sbin:/bin"
      }
    }
  }, {
    "autostartJob" : false,
    "jobScript" : {
      "bin" : "/bin/bash",
      "args" : [
        "-c",
        "cd /my-server && serve"
      ],
      "env" : {
        "PATH" : "/usr/bin:/usr/local/bin:/sbin:/bin"
      }
    },
    "title" : "Example Server",
    "mode" : "JobStatus",
    "reloadJob" : false
  },
  {
    "mode" : "ApplicationQuit",
    "title" : "Quit",
    "shortcutKey" : "q"
  }
]

Prototype Release

15 Feb 13:59
Compare
Choose a tag to compare
Prototype Release Pre-release
Pre-release

Prototype release - currently listens for config at /Users/rich/.config/shbar/shbar.json