Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

122 righe
4.0 KiB

  1. # Summary of release changes, see commit history for more details:
  2. # https://github.com/joelthelion/autojump/commits/master/
  3. * Release v21:
  4. - New mailing list for developer discussion and announcements:
  5. https://groups.google.com/forum/?fromgroups%5C#!forum/autojump
  6. - Switch to semantic versioning (http://semver.org/): major.minor.micro
  7. major = breaks backwards compatibility
  8. minor = new features with backwards compatibility
  9. micro = bug fixes with backwards compatibility
  10. - Migration code for v17 or older users has been removed.
  11. During testing, it was apparent that the migration code wasn't working to
  12. begin with. The major distros (Debian, RedHat) have already moved to v18+ for
  13. LTS. Rolling release distros and Homebrew / Macports are regularly kept up to
  14. date.
  15. Users upgrading from v17 or older will start with a new database.
  16. - Approximate matching introduced.
  17. Matching priority is now:
  18. 1. exact match
  19. 2. case insensitive match
  20. 3. approximate match
  21. - The `j` function now accepts autojump arguments (e.g. --help, --stat).
  22. As a result, the `jumpstat` alias is now removed. The preferred method is `j
  23. --stat` or `j -s`. Consequently, autojump cannot jump to directories
  24. beginning with a hyphen '-'.
  25. - Always use case insensitive search with AUTOJUMP_IGNORE_CASE=1
  26. As mentioned earlier, normal priority is to prefer exact match and then check
  27. for case insensitive match. For users who prefer case insensitivity can now
  28. modify the program behavior.
  29. - Prevent database decay with AUTOJUMP_KEEP_ALL_ENTRIES=1
  30. The database is regularly trimmed for performance reasons. However users can
  31. prevent database maintenance with the above environmental variable.
  32. - ZSH tab completion fixed.
  33. ZSH behavior now matches Bash behavior. However it requires the `compinit`
  34. module to be loaded. Add the following line to ~/.zshrc:
  35. autoload -U compinit; compinit
  36. To use type:
  37. j<space><tab><tab>
  38. A menu showing the top database entries will be displayed. Type in any number
  39. followed by <tab> to complete the entry.
  40. - Database entry weight growth changed form linear to logarithmic scale.
  41. A combination of low total weight ceiling and linear growth resulted in
  42. a few, commonly used directories to be responsible for 50%+ of the total
  43. database weight. This caused unnecessary trimming of long tail entries.
  44. Switching to logarithmic growth combined with regular decay meant that
  45. commonly used directories still climbed database ranking appropriately with a
  46. more even weight distribution.
  47. - Vendorize argparse so now Python v2.6+ is supported (from v2.7).
  48. - Unit testing suite added.
  49. - Miscellaneous refactoring, bug fixes, documentation updates.
  50. * Release v20:
  51. - Python versions supported is now v2.7+ and v3.2+ due to rewrite using
  52. argparse.
  53. - Man page and --help has been overhauled to provide better documentation and
  54. usage scenarios.
  55. - Installation scripts now act dependent on current environmental settings.
  56. If run as root, will do a global install. Installation script also detects
  57. which version to install (bash or zsh) dependent on $SHELL. Both of these
  58. behaviors can be overrode using --local/--global or --bash/--zsh arguments.
  59. - Uninstallation script added, will remove both global and local installations
  60. but ignores database.
  61. - Allow symlink database entries with AUTOJUMP_KEEP_SYMLINKS=1
  62. Normally symlinks are resolved to full path to prevent duplicate database
  63. entries. However users who prefer symlink paths can modify behavior with the
  64. above environmental variable.
  65. - This ChangeLog added to better help package maintainers keep track of
  66. changes
  67. between releases.
  68. - Miscellaneous bug fixes.
  69. * Release v19:
  70. - prototype `cp` and `mv` directory tab completion
  71. - Debian post-installation instructions
  72. - minor Mac OS X fixes
  73. * Release v18:
  74. - add automated version numbering
  75. - performance tweaks to reduce filesystem checks
  76. - add local installation option
  77. - unicode fixes
  78. - ugly fixes for Python 3
  79. - migrate to new database format