Releases: bpevs/johnny_decimal
Johnny Decimal v1.2.0
Johnny Decimal v1.1.1
Johnny Decimal v1.1.0
What's New
- Fish shell support.
Steps are the same as other shell:
https://johnny.bpev.me/guide/setup.html#install-deno
Johnny Decimal v1.0.3
What's Changed
Removes open
command from default help menu to discourage use; therefore we can remove recommendation of --allow-run
.
It can be added back via plugin, ala https://github.com/ivebencrazy/jd_plugins/blob/main/jd_plugin_open/main.ts
Johnny Decimal v1.0.2
What's New
Fix for issue where plugins are imported from plugin installation url, instead of local path.
Before:
TypeError: Module not found "https://deno.land/Users/ben/.jd/plugins/jd_plugin_sublime/source/main.ts".
at async Directory.loadPlugins (https://deno.land/x/[email protected]/models/directory.ts:115:31)
at async https://deno.land/x/[email protected]/main.ts:45:1
Now: Should not error.
Johnny Decimal v1.0.1
This release doesn't do anything because I am dumb. v1.0.2 should have fix.
Johnny Decimal v1.0.0
Should be stable now.
This update changes the command registration api from:
from: directory.registerCommand('my-name', Command)
to: directory.registerCommand(Command)
The string name is unnecessary, since name
is a required field of Command
.
Full Changelog: 0.1.4...1.0.0
Johnny Decimal v0.1.4
New Features
- Adds
jd plugins
, and defaults todisabled
, so that user has to manually enable plugin evaluation - Adds the ability to auto-add profile updates to bash and fish
Full Changelog: 0.1.3...0.1.4
Johnny Decimal v0.1.3
What's New
Includes fix for CLI setup issue that was preventing usage
Johnny Decimal v0.1.2
What's New
This release fixes an issue with importing from mod.ts
.
No changes to CLI.