@coopenomics/desktop 2025.11.24-alpha-3 → 2025.11.25-alpha-2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,7 +31,6 @@ div
31
31
  :style="{ height: 'calc(100vh - 56px)' }"
32
32
  @load="onIframeLoaded"
33
33
  )
34
-
35
34
  </template>
36
35
 
37
36
  <script lang="ts" setup>
@@ -16,8 +16,8 @@ div.mobile-client-page
16
16
  p У кооперативного мессенджера есть мобильное приложение Element X.
17
17
  p Для подключения вам нужен аккаунт кооперативного мессенджера.
18
18
  p Зарегистрируйте аккаунт на главной странице и получите инструкцию для мобильного приложения.
19
- router-link(to="/chatcoop/chat", class="register-button")
20
- i.fas.fa-arrow-left
19
+ q-btn(@click="goToRegistration", class="register-button")
20
+ i.fas.fa-arrow-left.q-mr-sm
21
21
  | Перейти к регистрации
22
22
 
23
23
  // Инструкции для пользователей с аккаунтом
@@ -93,11 +93,13 @@ div.mobile-client-page
93
93
 
94
94
  <script lang="ts" setup>
95
95
  import { computed, onMounted } from 'vue';
96
+ import { useRouter } from 'vue-router';
96
97
  import { WindowLoader } from 'src/shared/ui/Loader';
97
98
  import { SuccessAlert } from 'src/shared/api';
98
99
  import { useChatCoopChatStore } from '../../../entities/ChatCoopChat/model';
99
100
 
100
101
  const chatcoopStore = useChatCoopChatStore();
102
+ const router = useRouter();
101
103
 
102
104
  const homeserverUrl = computed(() => {
103
105
  const username = chatcoopStore.accountStatus?.matrixUsername;
@@ -121,6 +123,10 @@ async function copyToClipboard() {
121
123
  }
122
124
  }
123
125
 
126
+ function goToRegistration() {
127
+ router.push({ name: 'chatcoop-chat' });
128
+ }
129
+
124
130
  onMounted(async () => {
125
131
  await chatcoopStore.loadAccountStatus();
126
132
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coopenomics/desktop",
3
- "version": "2025.11.24-alpha-3",
3
+ "version": "2025.11.25-alpha-2",
4
4
  "description": "A Desktop Project",
5
5
  "productName": "Desktop App",
6
6
  "author": "Alex Ant <dacom.dark.sun@gmail.com>",
@@ -25,9 +25,9 @@
25
25
  "start": "node -r ./alias-resolver.js dist/ssr/index.js"
26
26
  },
27
27
  "dependencies": {
28
- "@coopenomics/controller": "2025.11.24-alpha-3",
29
- "@coopenomics/notifications": "2025.11.24-alpha-3",
30
- "@coopenomics/sdk": "2025.11.24-alpha-3",
28
+ "@coopenomics/controller": "2025.11.25-alpha-2",
29
+ "@coopenomics/notifications": "2025.11.25-alpha-2",
30
+ "@coopenomics/sdk": "2025.11.25-alpha-2",
31
31
  "@dicebear/collection": "^9.0.1",
32
32
  "@dicebear/core": "^9.0.1",
33
33
  "@editorjs/code": "^2.9.3",
@@ -59,7 +59,7 @@
59
59
  "@wharfkit/wallet-plugin-privatekey": "^1.1.0",
60
60
  "axios": "^1.2.1",
61
61
  "compression": "^1.7.4",
62
- "cooptypes": "2025.11.24-alpha-3",
62
+ "cooptypes": "2025.11.25-alpha-2",
63
63
  "dompurify": "^3.1.7",
64
64
  "dotenv": "^16.4.5",
65
65
  "email-regex": "^5.0.0",
@@ -123,5 +123,5 @@
123
123
  "npm": ">= 6.13.4",
124
124
  "yarn": ">= 1.21.1"
125
125
  },
126
- "gitHead": "e16d2ba2385aec48013d23631958e822a549e109"
126
+ "gitHead": "1c910de4b1d197ca9ac2885504c91eff45f9682d"
127
127
  }