diff options
-rw-r--r-- | Manual tests.txt | 28 | ||||
-rw-r--r-- | build.py | 14 | ||||
-rw-r--r-- | install.rdf | 2 |
3 files changed, 1 insertions, 43 deletions
diff --git a/Manual tests.txt b/Manual tests.txt deleted file mode 100644 index 77862fa..0000000 --- a/Manual tests.txt +++ /dev/null @@ -1,28 +0,0 @@ -TEST:
-
-Unit tests
-New redirect
-Edit redirect
-Test button
-Warning when example url does not match
-Error when redirect is recursive
-Move redirects up and down
-Change preferences, make sure they take effect immediately
-Add current url
-Add link url
-Redirects from results of 301 redirects
-Disabled redirector
-Unescape matches
-Don't unescape matches
-Error message when actual recursive redirect is executed, make sure it becomes disabled
-Disabled individual redirects
-Exclude patterns
-Regex vs. Wildcards
-Export redirects
-Import redirects, check when they exist
-Test a few normal redirects
-Update from version 1.6
-Update from version 1.7
-
-
-...RELEASE!!!
diff --git a/build.py b/build.py deleted file mode 100644 index 2eff878..0000000 --- a/build.py +++ /dev/null @@ -1,14 +0,0 @@ -import os, os.path, zipfile, sys
-
-xpi = zipfile.ZipFile('redirector-' + raw_input('Version: ') + '.xpi','w')
-for (root, folders, files) in os.walk('.'):
- if 'unittest' in root:
- continue
- if not '.svn' in root:
- for f in files:
- if f.lower().endswith(('.rdf', '.manifest', '.js', '.xpt', '.png', '.css', '.dtd', '.properties', '.xul', '.html')):
- xpi.write(os.path.join(root[2:],f))
-
-xpi.close()
-
-
diff --git a/install.rdf b/install.rdf index df68e9f..1354d62 100644 --- a/install.rdf +++ b/install.rdf @@ -4,7 +4,7 @@ <Description about="urn:mozilla:install-manifest"> <em:id>redirector@einaregilsson.com</em:id> <em:name>Redirector</em:name> - <em:version>2.8.1</em:version> + <em:version>2.8.2</em:version> <em:creator>Einar Egilsson</em:creator> <em:contributor>Noah Luck Easterly</em:contributor> <em:description>Automatically redirects to user-defined urls on certain pages</em:description> |