diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 7fa4dbc..8afa317 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -13,7 +13,7 @@ "bundle": { "active": true, "targets": "all", - "identifier": "com.tauri.dev", + "identifier": "io.github.wordgames", "icon": [ "icons/32x32.png", "icons/128x128.png", diff --git a/src/lib/state/p2p.ts b/src/lib/state/p2p.ts index 99ca5ba..4354ec6 100644 --- a/src/lib/state/p2p.ts +++ b/src/lib/state/p2p.ts @@ -7,7 +7,7 @@ import { get, writable } from 'svelte/store'; import ee3 from 'eventemitter3'; import { v4 } from 'uuid'; -const APP_ID = 'p2pgame-example-com-', +const APP_ID = 'wordgames-github-io-', PEED_ID_KEY = 'peer_id'; export const peer = writable(null), diff --git a/svelte.config.js b/svelte.config.js index 7f93fb2..c58fa55 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -17,7 +17,7 @@ const config = { }), // If you are not using a .nojekyll file, change your appDir to something not starting with an underscore. // For example, instead of '_app', use 'app_', 'internal', etc. - appDir: 'p2pgame', + appDir: 'wordgames', // hydrate the
element in src/app.html target: '#app' }