summary refs log tree commit diff stats
path: root/CHANGELOG
blob: 3b2ee97a82ae4af2cf6666b5854f0d2492194475 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
1.1.1 -> 1.1.2:
* Fix crash when using scrollwheel to scroll down in some cases
* The command "ranger dir1 dir2 ..." opens multiple directories in tabs
* Removed pydoc html documentation by default, re-create it with "make doc"
* Minor fixes

1.1.0 -> 1.1.1:
* New install script, "setup.py"
* New flag for running programs: "w" (waits for enter press)
* Minor fixes

1.0.4 -> 1.1.0:
* Added a man page
* Tab support
* Improved directory loading performance
* Commands are definable in ~/.ranger/commands.py
* Case insensitive sorting (type zs)
* Better UTF support
* Possibility to turn off previews (zp and zP)
* Changing options with :set (e.g. :set column_ratios=1,2,3,4)
* Ask for confirmation when using :delete
* New invocation flag: --fail-unless-cd
* New hotkeys, commands, options.
* New syntax for ~/.ranger/keys.py
* Several user contributions
* And tons of general improvements

NOTE: The syntax for configuration is still subject to change.
s="nf">init(): sys.path.append(os.path.abspath(os.path.join(sys.path[0], '..'))) class Fake(object): def __getattr__(self, attrname): if not hasattr(self, attrname): setattr(self, attrname, Fake()) return self.__dict__[attrname] def __call__(self, *_): return Fake() def __clear__(self): self.__dict__.clear() def __iter__(self): return iter(()) class OK(Exception): pass def raise_ok(*_, **__): raise OK()