This commit is contained in:
ed 2021-08-30 03:02:11 +02:00
parent 2e740e513f
commit 43a8bcefb9
4 changed files with 5 additions and 4 deletions

View file

@ -1,8 +1,8 @@
# coding: utf-8 # coding: utf-8
VERSION = (0, 13, 9) VERSION = (0, 13, 10)
CODENAME = "future-proof" CODENAME = "future-proof"
BUILD_DT = (2021, 8, 29) BUILD_DT = (2021, 8, 30)
S_VERSION = ".".join(map(str, VERSION)) S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View file

@ -284,7 +284,7 @@ var mpl = (function () {
r.os_ctl = !r.os_ctl && have_mctl; r.os_ctl = !r.os_ctl && have_mctl;
bcfg_set('au_os_ctl', r.os_ctl); bcfg_set('au_os_ctl', r.os_ctl);
if (!have_mctl) if (!have_mctl)
toast.err(5, 'need firefox 82+ or chrome 73+'); toast.err(5, 'need firefox 82+ or chrome 73+\n(or iOS 15+ supposedly)');
}; };
ebi('au_osd_cv').onclick = function (e) { ebi('au_osd_cv').onclick = function (e) {

View file

@ -30,6 +30,7 @@ a {
padding: .2em .8em; padding: .2em .8em;
} }
#repl { #repl {
border: none;
background: none; background: none;
color: inherit; color: inherit;
padding: 0; padding: 0;

View file

@ -1852,7 +1852,7 @@ function up2k_init(subtle) {
flag = up2k_flagbus(); flag = up2k_flagbus();
} }
catch (ex) { catch (ex) {
console.log("flag error: " + ex.toString()); toast.err(5, "not supported on your browser:\n" + ex);
tgl_flag_en(); tgl_flag_en();
} }
} }