Skip to content

Releases: ClementNerma/Jumpy

v0.3.7

12 Mar 23:19
Compare
Choose a tag to compare
  • QoL: Update dependencies

v0.3.6

24 Sep 06:45
Compare
Choose a tag to compare
  • Fix:: Don't register root path (/) as it doesn't have a filename to match against

v0.3.5

18 Sep 22:34
Compare
Choose a tag to compare
  • BREAKING: Renamed the optimize action to cleanup
  • Fix: Remove entries from the database with optimize (now cleanup) when a directory became a file

v0.3.3

10 May 16:01
Compare
Choose a tag to compare

New version!

  • FIX: Score ranking was reversed in query and list

v0.3.2

10 May 15:57
Compare
Choose a tag to compare

New version!

  • FIX: --top flag for inc command being ignored if directory already registered

v0.3.1

10 May 14:58
Compare
Choose a tag to compare

New version!

  • NEW: inc <path> --top subcommand to assign the maximum score to the provided directory

v0.3.0

10 May 14:52
Compare
Choose a tag to compare

New version!

  • NEW: export subcommand

  • NEW: path subcommand to print the path to the database file

  • NEW: path --lossily to print to the path to the database file lossily (if it contains invalid UTF-8 characters)

  • INTERNAL: Make database file sorted

  • FIX: Don't flush index to disk when no change were made

v0.2.0

10 May 14:06
Compare
Choose a tag to compare

New version!

  • BREAKING: add <path> subcommand doesn't increment registered directories anymore

  • NEW: inc <path> replaces the previous add <path> subcommand's behaviour

  • NEW: query <path> --checked to find the first existing directory (previous ones will be removed from database)

  • NEW: optimize subcommand to optimize database

  • PERF: Switch to a HashMap instead of using a BTreeMap

  • STABILITY: Automatically check when database changes need to be flushed to the disk

v0.1.1

08 May 22:03
Compare
Choose a tag to compare

Preview version 0.1.1

Changes:

  • Added del <path> action to remove a registered directory from the database

Fixes:

  • Correctly flush index to disk after writings

v0.1.0

08 May 13:39
Compare
Choose a tag to compare

Initial version of Jumpy!

  • Support for adding directories to database with jumpy add <path>
  • Support for querying database with jumpy query <path>
  • Support for listing all registered directories with jumpy list
  • Support for clearing database with jumpy clear
  • Support for custom index file path with --index-file
  • Support for ranked query results
  • Support for results cycling depending on CWD