diff --git a/app/package.json b/app/package.json index d2154a3..a4400ed 100644 --- a/app/package.json +++ b/app/package.json @@ -1,5 +1,5 @@ { - "name": "paperdash-display", + "name": "paperdash-epd", "version": "0.1.0", "private": true, "scripts": { diff --git a/app/src/views/Wifi.vue b/app/src/views/Wifi.vue index 90c2e04..237be28 100644 --- a/app/src/views/Wifi.vue +++ b/app/src/views/Wifi.vue @@ -178,7 +178,7 @@ setTimeout(() => { // phone should be back in regular wifi // search for device via mDNS - window.location = 'http://paperdash-display.local/#/setup/name' + window.location = 'http://paperdash-epd.local' }, 5000) }) }, diff --git a/app/vue.config.js b/app/vue.config.js index fc6599d..e98201a 100644 --- a/app/vue.config.js +++ b/app/vue.config.js @@ -31,7 +31,7 @@ module.exports = { devServer: { proxy: { '^/': { - target: 'http://paperdash-display:80', + target: 'http://paperdash-epd.local:80', ws: true, changeOrigin: true, }, diff --git a/lib/wlan/wlan.cpp b/lib/wlan/wlan.cpp index a477a97..c5bac11 100644 --- a/lib/wlan/wlan.cpp +++ b/lib/wlan/wlan.cpp @@ -1,7 +1,7 @@ #include "wlan.h" #include "settings.h" -const char *deviceName = "paperdash-display"; +const char *deviceName = "paperdash-epd"; RTC_DATA_ATTR int wifiFailedCount = 0; void initClientMode(const char *ssid, const char *password);