diff --git a/app/build/entitlements.mac.plist b/app/build/entitlements.mac.plist
index 5e2a11d..135ac07 100644
--- a/app/build/entitlements.mac.plist
+++ b/app/build/entitlements.mac.plist
@@ -8,5 +8,7 @@
com.apple.security.cs.allow-dyld-environment-variables
+ com.apple.security.cs.disable-library-validation
+
\ No newline at end of file
diff --git a/app/package.json b/app/package.json
index 601d32d..39bf147 100644
--- a/app/package.json
+++ b/app/package.json
@@ -3,7 +3,7 @@
"productName": "Tally Blaster",
"description": "Tally for vMix using wifi. Creates an AP to configure the local wifi, vMix host and tally number.",
"license": "BSD-3-Clause",
- "version": "0.3.1",
+ "version": "0.3.2",
"author": {
"name": "Ruud Boon",
"email": "info@ruudboon.io",
diff --git a/app/src/router/index.ts b/app/src/router/index.ts
index aba05aa..cef47b8 100644
--- a/app/src/router/index.ts
+++ b/app/src/router/index.ts
@@ -26,7 +26,6 @@ Vue.use(VueRouter)
]
const router = new VueRouter({
- mode: 'history',
base: process.env.BASE_URL,
routes
})
diff --git a/vmix-tally/vmix-tally.ino b/vmix-tally/vmix-tally.ino
index 8e5c3a6..14103da 100644
--- a/vmix-tally/vmix-tally.ino
+++ b/vmix-tally/vmix-tally.ino
@@ -25,7 +25,7 @@
#define STATUS_UPGRADE 6
#define CONFIG_FILENAME "/tally-config.cfg"
-#define VERSION "0.3.1"
+#define VERSION "0.3.2"
// optional arguments fuction need to be defined
void setLedColor(uint32_t color, bool ignoreDisabledLeds=false);