diff --git a/README.md b/README.md
index 27afa0c..2218c63 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ A ROM patcher made in Javascript.
Modders and hackers can embed Rom Patcher JS in their websites to provide an online ROM patcher for their patches, allowing users to patch ROMs without downloading any files.
- File [`index_template.html`](https://github.com/marcrobledo/RomPatcher.js/blob/master/index_template.html) includes a simple working example
-- Read [the wiki](https://github.com/marcrobledo/RomPatcher.js/wiki) for more detailed instructions
+- Read [the wiki](https://github.com/marcrobledo/RomPatcher.js/wiki/Embedding-Rom-Patcher-JS) for more detailed instructions
@@ -36,7 +36,7 @@ Install dependencies:
Patch a ROM:
> node index.js patch "my_rom.bin" "my_patch.ips"
-Create a patch:
+Create an IPS patch:
> node index.js create "original_rom.bin" modified_rom.bin"
Show all options:
diff --git a/_cache_service_worker.js b/_cache_service_worker.js
index b58c103..5585263 100644
--- a/_cache_service_worker.js
+++ b/_cache_service_worker.js
@@ -6,7 +6,7 @@
*/
var PRECACHE_ID = 'rom-patcher-js';
-var PRECACHE_VERSION = 'v30beta1b';
+var PRECACHE_VERSION = 'v30rc1';
var PRECACHE_URLS = [
'/RomPatcher.js/', '/RomPatcher.js/index.html',
'/RomPatcher.js/manifest.json',
diff --git a/index.html b/index.html
index 7550696..153938d 100644
--- a/index.html
+++ b/index.html
@@ -34,21 +34,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -67,7 +52,7 @@