IE11 support, markup fixes, caching fixes

This commit is contained in:
Mihail Slobodyanuk 2022-12-19 12:05:01 +02:00
parent 1e7d51bac6
commit 3999a62f54
8 changed files with 1278 additions and 25 deletions

View file

@ -98,6 +98,18 @@ else
PKGDISPLAYNAME="RiV-mesh Network"
fi
cat > mesh-ui-ie.js << EOF
var ie = new ActiveXObject("InternetExplorer.Application");
ie.AddressBar = false;
ie.MenuBar = false;
ie.ToolBar = false;
ie.height = 960
ie.width = 706
ie.resizable = false
ie.Visible = true;
ie.Navigate("http://localhost:19019");
EOF
# Generate the wix.xml file
cat > wix.xml << EOF
<?xml version="1.0" encoding="windows-1252"?>