summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-10-02 18:42:31 +0200
committerhut <hut@lavabit.com>2011-10-02 18:42:31 +0200
commit2d199b547f5e23fbdfd0a3e24a623f5a4e792473 (patch)
treecc13140f4cc272cd79dcb71fbcb911debc69a08c
parentb828e4acc86f38b8f3d857911ad2ff5dbe1a4c42 (diff)
parentfc0c76f9fa577cb8e5db2ba75963864c6ef67b33 (diff)
downloadranger-2d199b547f5e23fbdfd0a3e24a623f5a4e792473.tar.gz
Merge branch 'stable'
Conflicts:
	doc/ranger.1
	ranger/defaults/keys.py
-rw-r--r--CHANGELOG21
-rw-r--r--README2
-rw-r--r--ranger/__init__.py2
3 files changed, 19 insertions, 6 deletions
diff --git a/CHANGELOG b/CHANGELOG
index f934591d..5152c73e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,7 +1,20 @@
-NOTE: This log only documents changes between stable versions.
-Stable versions are identifiable (since 1.2) through their even minor
-version number, like 1.2.x, 1.4.x, etc.  Odd minor version numbers
-are used for rolling-release git snapshots.
+This log documents changes between stable versions.
+
+2011-10-02: Version 1.4.4
+* Added keys for chmod (like +ow for "chmod o+w", etc)
+* Added "c" flag for running files
+* Added various key bindings
+* Added wavpack and webm types to mime.types
+* Added option "display_tags_in_all_columns"
+* Added command.cancel method which is called when pressing ESC in console
+* Added sorting and cycling by ctime and atime
+* Added custom tags (press "x)
+* Added bittorrent preview
+* Fixed blocking when using interactive scripts in scope.sh
+* Fixed issues with ALT key
+* Fixed pager crash when trying to read non-readable file
+* Forbid piping things into ranger
+* Improved hints
 
 2011-04-05: Version 1.4.3
 * Fixed mimetype checking when invoking ranger with a filename
diff --git a/README b/README
index 8f87298e..94aa19c6 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Ranger v.1.4.3
+Ranger v.1.4.4
 ==============
 
 Ranger is a free console file manager that gives you greater flexibility
diff --git a/ranger/__init__.py b/ranger/__init__.py
index 03a1d2da..3d2633cd 100644
--- a/ranger/__init__.py
+++ b/ranger/__init__.py
@@ -29,7 +29,7 @@ from ranger.core.main import main
 
 # Information
 __license__ = 'GPL3'
-__version__ = '1.4.3'
+__version__ = '1.4.4'
 __author__ = __maintainer__ = 'Roman Zimbelmann'
 __email__ = 'romanz@lavabit.com'
 
='n162' href='#n162'>162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304