summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--README81
1 files changed, 77 insertions, 4 deletions
diff --git a/README b/README
index f978daf4..34d2351b 100644
--- a/README
+++ b/README
@@ -1,11 +1,84 @@
-== Ranger v.1
+== Ranger v.1.0.0
 
 Ranger is a filemanager that integrates well into the linux shell and
 gives you a quick way of doing operations that would otherwise require
 a lot of typing, without starting up a bloated environment.
 
-Ranger is written in Python and uses ncurses for the user interface.
+The program is written in Python since version 1.0.0 and uses
+ncurses for the user interface.
 
-The version 1 is a rewrite from scratch and offers very limited
-functionality as of now.
+== About
 
+* Author:          hut
+* Email:           hut@lavabit.com
+* Git repo:        http://repo.or.cz/w/ranger.git
+* Version:         1.0.0
+
+
+== Features
+
+* Multi-column display
+* Preview of the selected file/directory
+* Common file operations (create/chmod/copy/delete/...)
+* Quickly find files or text inside files
+* VIM-like controls
+* Open files in external programs
+* Mouse support
+* Change directory of shell after exit
+* Bookmarks
+
+
+== Dependencies
+
+* A Unix-like OS        (ranger is not tested on others)
+* Python 2.6 or 3.1
+* Python curses module
+
+
+== Getting Started
+
+At first, it's a good idea to create a symlink in your bin dir:
+    sudo ln -s /path/to/ranger.py /usr/bin/ranger
+
+Now type in ranger to start it.
+
+You should see 4 columns. The third is the directory where you are at
+the moment. To the left, there are the the directories above the current
+working dir, and the column on the right is a preview of the selected
+file/directory.
+
+Now use the arrow keys to navigate, press enter to open a file.
+
+A list of commands with short descriptions can be viewed by
+pressing ? inside the program and following the instructions.
+The file code/keys.rb contains all keycombinations, so that's another
+place you may want to check out.
+More extensive documentation will be written when enough users ask me to :)
+
+
+== Opening files with Ranger
+
+If you use the same applications like me, you'll be able to open
+files by pressing the right arrow key. If not, you will have to
+specify them in ranger/defaults/apps.py. It's explained
+in the docstrings how exactly to do that.
+
+Once you've set up your applications, you can also use ranger to
+open files from the shell:
+    ranger blabla.pdf
+
+
+== Guidelines for developers:
+
+Tabs for indentation, spaces for tables and such
+
+Use docstrings with pydoc in mind
+
+Use syntax compatible to both python 2.6 and 3.1. If your feature depends
+on 3.1, better display a message that indicates that when using 2.6 instead
+of letting the program crash.
+
+Version Numbering: X.Y.Z
+* X: milestones
+* Y: stable versions
+* Z: experimental versions
1 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 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386