From 9a0447177f1626e7a636adb9092dc051072c8df5 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Fri, 7 Aug 2015 14:44:42 -0700 Subject: [PATCH] Build web page. --- index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index af2496dd3..782164a9e 100644 --- a/index.html +++ b/index.html @@ -58,6 +58,8 @@ Previously developed by aeosynth +
+

4chan X can be used in some browsers that do not support userscripts, such as Microsoft Edge, using a local proxy. Not all features will work.

Beta version

New features and non-urgent bugfixes are released on the beta channel for further testing before they are moved the stable version. Please report any issues you find, and be sure to mention which version you're using. You should back up your settings regularly to prevent them from being lost due to bugs.

To install the current beta version but get updates from the stable channel (recommended if you want a particular recent feature):

@@ -101,13 +103,14 @@ for (var i = 0; i < document.links.length; i++) { } } var engine = (function() { + if (/Edge\//.test(navigator.userAgent)) return 'edge'; if (/Chrome\//.test(navigator.userAgent)) return 'blink'; if (/WebKit\//.test(navigator.userAgent)) return 'webkit'; if (/Gecko\/|Goanna/.test(navigator.userAgent)) return 'gecko'; if (/Presto\//.test(navigator.userAgent)) return 'presto'; })(); if (engine) { - var engines = {'firefox': 'gecko', 'chromium': 'blink presto', 'safari': 'webkit', 'webkitgtk-': 'webkit'}; + var engines = {'firefox': 'gecko', 'chromium': 'blink presto', 'safari': 'webkit', 'webkitgtk-': 'webkit', 'other-browsers': 'edge'}; for (browser in engines) { document.getElementById(browser + '-hide').checked = (engines[browser].indexOf(engine) < 0); }