Skip to content

Releases: elixir-toolshed/toolshed

v0.2.21

16 Jul 13:50
Compare
Choose a tag to compare
  • New features
    • The ping command now supports IPv6 addresses. Thanks to Alex McLain for this
      improvement.
    • The top command automatically refreshes now.

v0.2.20

27 May 22:47
Compare
Choose a tag to compare
  • New features
    • Add log_attach and log_detach convenience functions for directing log
      messages to the current IEx session. These provide a simple way for seeing
      log messages when you either aren't on the same console as the console logger or
      you don't want to enable the console logger since it messes up the prompt.

v0.2.19

05 Apr 13:37
Compare
Choose a tag to compare
  • Bug fixes

    • cmd/1 won't crash if the command being run returns non-UTF8 data
    • cat/1 no longer adds an extra newline at the end of its input
  • Removed commands

    • Removed the rarely used pastebin command

v0.2.18

05 Apr 13:35
Compare
Choose a tag to compare
  • New features
    • Add httpget command for performing HTTP GET requests and printing the
      response to stdout or saving it to the filesystem. Thanks to Jon Thacker for
      this feature.

v0.2.17

29 Nov 14:27
Compare
Choose a tag to compare
  • Bug fixes
    • Don't trigger autocompletion when in a string interpolation.

v0.2.16

27 Nov 16:07
Compare
Choose a tag to compare
  • Bug fixes
    • Fix path completion issues when wildcard characters are in the string to be
      completed.

v0.2.15

27 Nov 05:24
Compare
Choose a tag to compare
  • New features
    • Add path autocompletion. Try it out by running use Toolshed at the IEx
      prompt. Then type File.read("/e<tab>") for files in /etc or ls "li<tab>" if you have a lib directory under your current directory.

v0.2.14

10 Oct 14:35
Compare
Choose a tag to compare
  • Bug fixes
    • Fix warnings when building with Elixir 1.11.

v0.2.13

31 Mar 12:33
Compare
Choose a tag to compare
  • Bug fixes
    • Improve error message when :inets isn't available so that it says how to
      add it to your mix.exs.

v0.2.12

25 Mar 13:37
Compare
Choose a tag to compare
  • Bug fixes

    • If help has been stripped, then don't tell the user that it's available.
  • New features

    • Add multicast_addresses command for listing multicast addresses being
      listened to on each network interface. This is helpful if you're debugging
      lost multicast subscriptions or just seeing what applications are listening
      on.