diff --git a/common/main.js b/common/main.js index 97edd419..575fb230 100644 --- a/common/main.js +++ b/common/main.js @@ -6,7 +6,7 @@ window.VIEW = scriptUrl.searchParams.get('view') || 'board'; let config = {}; try { - config = JSON.parse(localStorage.getItem('mixly2.0') ?? '{}'); + config = JSON.parse(localStorage.getItem('mixly3.0') ?? '{}'); } catch (error) { console.log(error); } diff --git a/common/modules/mixly-modules/common/env.js b/common/modules/mixly-modules/common/env.js index 070205e4..683d6e5b 100644 --- a/common/modules/mixly-modules/common/env.js +++ b/common/modules/mixly-modules/common/env.js @@ -22,7 +22,7 @@ Env.hasSocketServer = false; Env.hasCompiler = false; /** - * 获取当前mixly2.0的路径 + * 获取当前mixly的路径 * @type {String} */ Env.clientPath = null; diff --git a/common/modules/mixly-modules/common/local-storage.js b/common/modules/mixly-modules/common/local-storage.js index 1afc4974..630c5c05 100644 --- a/common/modules/mixly-modules/common/local-storage.js +++ b/common/modules/mixly-modules/common/local-storage.js @@ -7,9 +7,9 @@ goog.provide('Mixly.LocalStorage'); const { MArray, LocalStorage } = Mixly; LocalStorage.PATH = { - USER: 'mixly2.0/user', - BOARD: 'mixly2.0/boards/{{d.boardType}}/user', - THIRD_PARTY: 'mixly2.0/boards/{{d.boardType}}/third_party/{{d.thirdPartyName}}' + USER: 'mixly3.0/user', + BOARD: 'mixly3.0/boards/{{d.boardType}}/user', + THIRD_PARTY: 'mixly3.0/boards/{{d.boardType}}/third_party/{{d.thirdPartyName}}' }; LocalStorage.set = function (path, value) { diff --git a/mixly-sw/mixly-modules/common/env.js b/mixly-sw/mixly-modules/common/env.js index 5e8f5222..46ea75cd 100644 --- a/mixly-sw/mixly-modules/common/env.js +++ b/mixly-sw/mixly-modules/common/env.js @@ -14,7 +14,7 @@ const { Env, Config } = Mixly; const { SOFTWARE } = Config; /** - * 获取当前mixly2.0的路径 + * 获取当前mixly的路径 * @type {String} */ Env.clientPath = null;