Skip to content

Releases: NarrativeScience-old/log.io

Adds HTTP basic authentication

22 May 14:11
Compare
Choose a tag to compare

To enable basic HTTP authentication, add the following keys to ~/.log.io/server.json:

"basicAuth": {
  "realm": "abc123xyz",
  "users": {
    "msmathers": "secretpassword1"
  }
}

realm should be a custom value that you generate.

Add better handling for removing watched files

24 Apr 15:21
Compare
Choose a tag to compare

A common log rotation scenario involves moving a watched file to a different path and then creating a new file of the same name. This fix addresses that scenario.

Use chokidar for more robust file watching

23 Apr 19:28
Compare
Choose a tag to compare
  • Adds chokidar library for file watching
  • Input configuration supports glob patterns for file matching
  • New files are automatically detected, addresses log rotation issues.

Persist screen binding state

02 Apr 19:22
Compare
Choose a tag to compare

All screen bindings are stored in the URL hash, which gets updated as a user binds & unbinds inputs. Allows users to share their specific binding session by sending their URL to other users.

Filter screen messages

02 Apr 03:03
Compare
Choose a tag to compare
  • Adds screen control input to filter messages. Matched text gets highlighted.
  • Avoid array slicing on every render cycle. Move message array slicing to reducer to improve performance.

Screen Shot 2020-04-01 at 9 43 42 PM

CircleCI publishing integration

10 Mar 19:49
Compare
Choose a tag to compare
  • Automatically publish new versions of log.io and log.io-file-input to NPM when a new version tag is pushed.

Fix errant TCP message handling behavior #2

14 Feb 15:07
9e798a3
Compare
Choose a tag to compare
  • Ignore TCP messages that don't include a termination character, as reported by #220, second attempt

Fix errant TCP message handling behavior

07 Feb 17:49
2a0d760
Compare
Choose a tag to compare
  • Ignore TCP messages that don't include a termination character, as reported by #220

Handle file deletions

16 Jan 15:27
91906e4
Compare
Choose a tag to compare
  • Adds error handling around watched files being deleted off the filesystem. Will gracefully recover if the file reappears.
  • Changes screen message text color.

Scrollbar style fix

15 Jan 18:44
Compare
Choose a tag to compare
  • Fixes scrollbar rendering issues caused by overflow-y: scroll;
  • Updates README shields