summary refs log tree commit diff stats
path: root/examples
diff options
context:
space:
mode:
authorhut <hut@lepus.uberspace.de>2015-04-14 00:25:24 +0200
committerhut <hut@lepus.uberspace.de>2015-04-14 00:25:24 +0200
commit89146651e07830f15b59b5f076d61741747a0bea (patch)
treed6f28b4107fb2e200fa781e3bc8704ea426f92e9 /examples
parent2b54ada2b5b79b65f6ac2eddd2e59e10abe1b09c (diff)
downloadranger-89146651e07830f15b59b5f076d61741747a0bea.tar.gz
Should I dual ranger/cleric or wait for the THAC0 bonus? v1.7.0
Squashed commit of the following:

commit 7236dde27bf33fec5097c223f0d70598b10ba05f
Author: hut <hut@lepus.uberspace.de>
Date:   Mon Apr 13 14:33:59 2015 +0200

    wrote changelog entry

commit 73e76b0f9a22ad8122154c4a2763c27ebce9be37
Author: hut <hut@lepus.uberspace.de>
Date:   Mon Apr 13 13:41:27 2015 +0200

    update version number in man page

commit b1948b9382027ed55d095a936610bc62f7cdba9a
Author: hut <hut@lepus.uberspace.de>
Date:   Mon Apr 13 13:41:08 2015 +0200

    update rifle version number

commit a96a8a808a3c68eb848a3e0361fd95cb8c643d59
Author: hut <hut@lepus.uberspace.de>
Date:   Mon Apr 13 13:34:59 2015 +0200

    s/ranger-master/ranger-stable/

commit 6967a48193227b4a0c843e8831e5511005179f69
Author: hut <hut@lepus.uberspace.de>
Date:   Mon Apr 13 13:33:06 2015 +0200

    updated version number

commit 0cbc401fd25fc4d307d026628e12ef1106a42bdf
Author: hut <hut@lepus.uberspace.de>
Date:   Mon Apr 13 13:18:26 2015 +0200

    updated version info in example plugins
Diffstat (limited to 'examples')
-rw-r--r--examples/bash_automatic_cd.sh2
-rw-r--r--examples/bash_subshell_notice.sh2
-rw-r--r--examples/plugin_chmod_keybindings.py2
-rw-r--r--examples/plugin_file_filter.py2
-rw-r--r--examples/plugin_hello_world.py2
-rw-r--r--examples/plugin_new_macro.py2
-rw-r--r--examples/plugin_new_sorting_method.py2
-rw-r--r--examples/rifle_different_file_opener.conf2
-rwxr-xr-xexamples/rifle_sxiv.sh2
-rw-r--r--examples/vim_file_chooser.vim2
10 files changed, 10 insertions, 10 deletions
diff --git a/examples/bash_automatic_cd.sh b/examples/bash_automatic_cd.sh
index 465c9c80..ac96ea12 100644
--- a/examples/bash_automatic_cd.sh
+++ b/examples/bash_automatic_cd.sh
@@ -1,4 +1,4 @@
-# Compatible with ranger 1.4.2 through 1.6.*
+# Compatible with ranger 1.4.2 through 1.7.*
 #
 # Automatically change the directory in bash after closing ranger
 #
diff --git a/examples/bash_subshell_notice.sh b/examples/bash_subshell_notice.sh
index bc44d5a8..4c9269c4 100644
--- a/examples/bash_subshell_notice.sh
+++ b/examples/bash_subshell_notice.sh
@@ -1,4 +1,4 @@
-# Compatible with ranger 1.5.3 through 1.6.*
+# Compatible with ranger 1.5.3 through 1.7.*
 #
 # Change the prompt when you open a shell from inside ranger
 #
diff --git a/examples/plugin_chmod_keybindings.py b/examples/plugin_chmod_keybindings.py
index 0ab975ed..1c9558f7 100644
--- a/examples/plugin_chmod_keybindings.py
+++ b/examples/plugin_chmod_keybindings.py
@@ -1,4 +1,4 @@
-# Compatible with ranger 1.6.*
+# Compatible with ranger 1.6.0 through ranger 1.7.*
 #
 # This plugin serves as an example for adding key bindings through a plugin.
 # It could replace the ten lines in the rc.conf that create the key bindings
diff --git a/examples/plugin_file_filter.py b/examples/plugin_file_filter.py
index b9bea1f3..d5ea2d2d 100644
--- a/examples/plugin_file_filter.py
+++ b/examples/plugin_file_filter.py
@@ -1,4 +1,4 @@
-# Compatible since ranger 1.6.1, git commit c82a8a76989c
+# Compatible since ranger 1.7.0 (git commit c82a8a76989c)
 #
 # This plugin hides the directories "/boot", "/sbin", "/proc" and "/sys" unless
 # the "show_hidden" option is activated.
diff --git a/examples/plugin_hello_world.py b/examples/plugin_hello_world.py
index a803e21b..b64916d4 100644
--- a/examples/plugin_hello_world.py
+++ b/examples/plugin_hello_world.py
@@ -1,4 +1,4 @@
-# Compatible with ranger 1.6.*
+# Compatible with ranger 1.6.0 through 1.7.*
 #
 # This is a sample plugin that displays "Hello World" in ranger's console after
 # it started.
diff --git a/examples/plugin_new_macro.py b/examples/plugin_new_macro.py
index 159a92f2..6757e491 100644
--- a/examples/plugin_new_macro.py
+++ b/examples/plugin_new_macro.py
@@ -1,4 +1,4 @@
-# Compatible with ranger 1.6.*
+# Compatible with ranger 1.6.0 through 1.7.*
 #
 # This plugin adds the new macro %date which is substituted with the current
 # date in commands that allow macros.  You can test it with the command
diff --git a/examples/plugin_new_sorting_method.py b/examples/plugin_new_sorting_method.py
index 6b41b0e1..c6e35a68 100644
--- a/examples/plugin_new_sorting_method.py
+++ b/examples/plugin_new_sorting_method.py
@@ -1,4 +1,4 @@
-# Compatible with ranger 1.6.*
+# Compatible with ranger 1.6.0 through 1.7.*
 #
 # This plugin adds the sorting algorithm called 'random'.  To enable it, type
 # ":set sort=random" or create a key binding with ":map oz set sort=random"
diff --git a/examples/rifle_different_file_opener.conf b/examples/rifle_different_file_opener.conf
index 4a8250b8..695f27c6 100644
--- a/examples/rifle_different_file_opener.conf
+++ b/examples/rifle_different_file_opener.conf
@@ -1,4 +1,4 @@
-# Compatible with ranger 1.6.*
+# Compatible with ranger 1.6.0 through 1.7.*
 #
 # Replace your rifle.conf with this file to use xdg-open as your file opener.
 # This is, of course, adaptable for use with any other file opener.
diff --git a/examples/rifle_sxiv.sh b/examples/rifle_sxiv.sh
index 6307f1c2..8cb13907 100755
--- a/examples/rifle_sxiv.sh
+++ b/examples/rifle_sxiv.sh
@@ -1,5 +1,5 @@
 #!/bin/sh
-# Compatible with ranger 1.6.*
+# Compatible with ranger 1.6.0 through 1.7.*
 #
 # This script searches image files in a directory, opens them all with sxiv and
 # sets the first argument to the first image displayed by sxiv.
diff --git a/examples/vim_file_chooser.vim b/examples/vim_file_chooser.vim
index aa3af763..fb9b7e1b 100644
--- a/examples/vim_file_chooser.vim
+++ b/examples/vim_file_chooser.vim
@@ -1,4 +1,4 @@
-" Compatible with ranger 1.4.2 through 1.6.*
+" Compatible with ranger 1.4.2 through 1.7.*
 "
 " Add ranger as a file chooser in vim
 "