summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG18
-rw-r--r--README2
-rw-r--r--doc/ranger.12
-rw-r--r--ranger/__init__.py2
-rw-r--r--ranger/__main__.py5
5 files changed, 25 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 3b2ee97a..f1417fee 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,21 @@
+This log only documents changes between stable versions.
+
+From 1.2 on, odd minor version numbers (1.3, 1.5, 1.7,..) are assigned to the
+fresh git snapshots while stable versions will have even minor numbers.
+
+1.1.2 -> 1.2:
+* !!! Changed the default configuration directory to ~/.config/ranger !!!
+* Removed "Console Modes", each old mode is now a simple command
+* Disabled file previews by default if ranger is used by root
+* Allow to jump to specific help sections by typing two numbers, e.g. 13?
+* Added keys: da, dr, ya, yr for adding and removing files from copy buffer
+* Added keys: gl and gL to resolve links, see 11?
+* Added key: pL to create a relative symlink
+* Added %<LETTER> and %<N><LETTER> macros for the console, see 33?
+* Fixed ansi codes for colors in the pager
+* Use the file ~/.mime.types for mime type detection
+* Several clean-ups and fixes
+
 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
diff --git a/README b/README
index 4fd9876f..85b7e857 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Ranger v.1.1.2
+Ranger v.1.2.0
 ==============
 
 Ranger is a free console file manager that gives you greater flexibility
diff --git a/doc/ranger.1 b/doc/ranger.1
index fab42496..d81db6d4 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -1,4 +1,4 @@
-.TH RANGER 1 ranger-1.1.2
+.TH RANGER 1 ranger-1.2.0
 .SH NAME
 ranger - visual file manager
 .\"-----------------------------------------
diff --git a/ranger/__init__.py b/ranger/__init__.py
index 57e0e5a2..c2a695c9 100644
--- a/ranger/__init__.py
+++ b/ranger/__init__.py
@@ -20,7 +20,7 @@ import sys
 from ranger.ext.openstruct import OpenStruct
 
 __license__ = 'GPL3'
-__version__ = '1.1.2'
+__version__ = '1.2.0'
 __credits__ = 'Roman Zimbelmann'
 __author__ = 'Roman Zimbelmann'
 __maintainer__ = 'Roman Zimbelmann'
diff --git a/ranger/__main__.py b/ranger/__main__.py
index 7db82a57..0ded8c95 100644
--- a/ranger/__main__.py
+++ b/ranger/__main__.py
@@ -35,7 +35,10 @@ def parse_arguments():
 	if '.' in minor_version:
 		minor_version = minor_version[:minor_version.find('.')]
 	version_tag = ' (stable)' if int(minor_version) % 2 == 0 else ' (testing)'
-	version_string = 'ranger ' + __version__ + version_tag
+	if __version__.endswith('.0'):
+		version_string = 'ranger ' + __version__[:-2] + version_tag
+	else:
+		version_string = 'ranger ' + __version__ + version_tag
 
 	parser = OptionParser(usage=USAGE, version=version_string)
 
=06e0edbaf8eea63ea7896d3a837277d70b2b6321'>06e0edba ^
7452d052 ^



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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125