@@ -87,7 +87,8 @@ function apply_Win32 (content, callback) {
console.log(e)
let msg = e.message
msg = `${msg}\n\n${lang.please_run_as_admin}`
- alert(msg)
+ console.log(msg)
+ svr.broadcast('alert', msg)
return
}
@@ -1 +1 @@
-exports.version = [3,3,0,5069];
+exports.version = [3,3,0,5070];
@@ -0,0 +1,10 @@
+/**
+ * @author oldj
+ * @blog http://oldj.net
+ */
+
+'use strict';
+module.exports = (app, msg) => {
+ alert(msg)
+}