diff options
-rw-r--r-- | CHANGELOG.md | 54 | ||||
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | doc/ranger.1 | 2 | ||||
-rw-r--r-- | doc/rifle.1 | 4 | ||||
-rw-r--r-- | ranger/__init__.py | 4 | ||||
-rwxr-xr-x | ranger/ext/rifle.py | 2 |
7 files changed, 63 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e8eb913c..90c89763 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,59 @@ This log documents changes between stable versions. +# 2019-12-31: version 1.9.3 +* Added Comic cbz/cbr previews +* Added DjVu previews +* Added Font previews +* Added Wayland support to rifle +* Added `imv` to rifle +* Added `paste_ext` command with new name collision behavior +* Added a `size_in_bytes` setting +* Added a new `%any_path` macro to simplify use of bookmarks in commands +* Added a new image previewing method using `ueberzug` +* Added archive previews +* Added filters for uniqueness and duplicates by hash to `filter_stack` +* Added generic openers to rifle, `xdg-open` for example +* Added line modes with human readable size information +* Added loading of plugins from local configuration directory +* Added previews for 3d models using `openscad` +* Added previews of MS Office documents +* Added scrolling in preview +* Added trash functionality to ranger, as alternative to deleting files +* Added zathura to rifle +* Changed `c/p/tunmap` to `unc/p/tmap` respectively, fixing them in the process +* Changed argument order for `tag_toggle` +* Fixed `chmod` behavior with `000` quantifier +* Fixed a crash involving `Ctrl+space` +* Fixed behavior of statusbar when resizing terminal window +* Fixed busyloop when ranger's STDIN was closed +* Fixed drawing of borders in st +* Fixed handling of macros for `chain` +* Fixed unicode decoding errors for previews +* Improved VCS integration by truncating long commit messages +* Improved `bulkrename` behavior when moving files to a non-existing directory +* Improved `bulkrename`'s handling of files with utf-16 surrogates in the name +* Improved behavior of `rename_append` for directories +* Improved configurability of syntax highlighting previews +* Improved coverage of unofficial MIME types, mostly audio formats +* Improved documentation of `multipane` viewmode +* Improved documentation of optional dependencies +* Improved documentation on `copymap` +* Improved documentation on `tab_shift` +* Improved documentation on `w3m_offset` +* Improved example shell scripts +* Improved extensibility of image previewing methods using a registry +* Improved fuzzy tab completion +* Improved guessing of file encoding +* Improved handling of configuration and cache directories when using `--clean` +* Improved handling of invalid mtimes (Relevant for fuse mounts) +* Improved logging of file deletion +* Improved testing and CI setup +* Improved updating of tmux/screen window names +* Improved updating of window titles +* Improved validation of bookmarks +* Improved w3m preview method for terminals that aren't quite compatible + + # 2018-09-09: version 1.9.2 * Added a `hint_collapse_threshold` setting * Added a `traverse_backwards` command analogous to `traverse` diff --git a/Makefile b/Makefile index 15dbb9db..d70728f6 100644 --- a/Makefile +++ b/Makefile @@ -125,13 +125,13 @@ test_other: test: test_py test_shellcheck @echo "Finished testing: All tests passed!" -doc/ranger.1: doc/ranger.pod +doc/ranger.1: doc/ranger.pod README.md pod2man --stderr --center='ranger manual' \ --date='$(NAME)-$(VERSION)' \ --release=$(shell date -u '+%Y-%m-%d') \ doc/ranger.pod doc/ranger.1 -doc/rifle.1: doc/rifle.pod +doc/rifle.1: doc/rifle.pod README.md pod2man --stderr --center='rifle manual' \ --date='$(NAME_RIFLE)-$(VERSION_RIFLE)' \ --release=$(shell date -u '+%Y-%m-%d') \ diff --git a/README.md b/README.md index 8134bc59..f18d320e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -ranger 1.9.2 +ranger 1.9.3 ============ <img src="https://ranger.github.io/ranger_logo.png" width="150"> diff --git a/doc/ranger.1 b/doc/ranger.1 index d0c8f75c..57646fc7 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RANGER 1" -.TH RANGER 1 "ranger-1.9.2" "2019-12-31" "ranger manual" +.TH RANGER 1 "ranger-1.9.3" "2019-12-31" "ranger manual" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/doc/rifle.1 b/doc/rifle.1 index 114cc5d0..1d3553f4 100644 --- a/doc/rifle.1 +++ b/doc/rifle.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35) +.\" Automatically generated by Pod::Man 4.11 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RIFLE 1" -.TH RIFLE 1 "rifle-1.9.2" "08/18/2019" "rifle manual" +.TH RIFLE 1 "rifle-1.9.3" "2019-12-31" "rifle manual" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/ranger/__init__.py b/ranger/__init__.py index fabaeae9..916cbc8a 100644 --- a/ranger/__init__.py +++ b/ranger/__init__.py @@ -35,8 +35,8 @@ def version_helper(): # Information __license__ = 'GPL3' -__version__ = '1.9.2' -__release__ = False +__version__ = '1.9.3' +__release__ = True __author__ = __maintainer__ = 'Roman Zimbelmann' __email__ = 'hut@hut.pm' diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py index a73a188b..e0773324 100755 --- a/ranger/ext/rifle.py +++ b/ranger/ext/rifle.py @@ -21,7 +21,7 @@ import re from subprocess import Popen, PIPE import sys -__version__ = 'rifle 1.9.2' +__version__ = 'rifle 1.9.3' # Options and constants that a user might want to change: DEFAULT_PAGER = 'less' |