@live-change/peer-connection-frontend 0.9.130 → 0.9.132

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.
@@ -0,0 +1,15 @@
1
+ {
2
+ "peer": {
3
+ "camera": "Camera",
4
+ "microphone": "Microphone",
5
+ "settings": "Settings",
6
+ "permissions": "Permissions",
7
+ "deviceSelect": "Device Select",
8
+ "volumeIndicator": "Volume Indicator",
9
+ "mediaSettings": "Media Settings",
10
+ "debugger": "Debugger",
11
+ "cameraButton": "Camera Button",
12
+ "microphoneButton": "Microphone Button",
13
+ "permissionsDialog": "Permissions Dialog"
14
+ }
15
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "peer": {
3
+ "camera": "Kamera",
4
+ "microphone": "Mikrofon",
5
+ "settings": "Ustawienia",
6
+ "permissions": "Uprawnienia",
7
+ "deviceSelect": "Wybór urządzenia",
8
+ "volumeIndicator": "Wskaźnik głośności",
9
+ "mediaSettings": "Ustawienia multimediów",
10
+ "debugger": "Debugger",
11
+ "cameraButton": "Przycisk kamery",
12
+ "microphoneButton": "Przycisk mikrofonu",
13
+ "permissionsDialog": "Dialog uprawnień"
14
+ }
15
+ }
@@ -39,7 +39,7 @@ const createPeer = async ({
39
39
  peerOnline,
40
40
  turnConfiguration
41
41
  ] = await Promise.all([
42
- live(path.peerConnection.peers({ channelType, channel })
42
+ live(path.peerConnection.channelPeers({ channelType, channel })
43
43
  .with(peer => path.peerConnection.peerState({ peer: peer.id }).bind('peerState'))
44
44
  .with(peer => path.user.sessionUser({ session: peer.session }).bind('user'))
45
45
  , appContext, onUnmountedCb),
package/index.js CHANGED
@@ -23,3 +23,8 @@ export {
23
23
 
24
24
  import { peerConnectionRoutes } from './front/src/router.js'
25
25
  export { peerConnectionRoutes }
26
+
27
+ import en from "./front/locales/en.json"
28
+ import pl from "./front/locales/pl.json"
29
+ const locales = { en, pl }
30
+ export { locales }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/peer-connection-frontend",
3
- "version": "0.9.130",
3
+ "version": "0.9.132",
4
4
  "scripts": {
5
5
  "memDev": "dotenvx run -- node server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
6
6
  "localDevInit": "rm tmp.db; dotenvx run -- node server/start.js localDev --enableSessions --initScript ./init.js",
@@ -22,19 +22,19 @@
22
22
  },
23
23
  "type": "module",
24
24
  "dependencies": {
25
- "@live-change/cli": "^0.9.130",
26
- "@live-change/dao": "^0.9.130",
27
- "@live-change/dao-vue3": "^0.9.130",
28
- "@live-change/dao-websocket": "^0.9.130",
29
- "@live-change/framework": "^0.9.130",
30
- "@live-change/password-authentication-service": "^0.9.130",
31
- "@live-change/secret-code-service": "^0.9.130",
32
- "@live-change/secret-link-service": "^0.9.130",
33
- "@live-change/session-service": "^0.9.130",
34
- "@live-change/user-frontend": "^0.9.130",
35
- "@live-change/user-service": "^0.9.130",
36
- "@live-change/vue3-components": "^0.9.130",
37
- "@live-change/vue3-ssr": "^0.9.130",
25
+ "@live-change/cli": "^0.9.132",
26
+ "@live-change/dao": "^0.9.132",
27
+ "@live-change/dao-vue3": "^0.9.132",
28
+ "@live-change/dao-websocket": "^0.9.132",
29
+ "@live-change/framework": "^0.9.132",
30
+ "@live-change/password-authentication-service": "^0.9.132",
31
+ "@live-change/secret-code-service": "^0.9.132",
32
+ "@live-change/secret-link-service": "^0.9.132",
33
+ "@live-change/session-service": "^0.9.132",
34
+ "@live-change/user-frontend": "^0.9.132",
35
+ "@live-change/user-service": "^0.9.132",
36
+ "@live-change/vue3-components": "^0.9.132",
37
+ "@live-change/vue3-ssr": "^0.9.132",
38
38
  "@vueuse/core": "^12.3.0",
39
39
  "boxicons": "^2.1.4",
40
40
  "codeceptjs-assert": "^0.0.5",
@@ -54,7 +54,7 @@
54
54
  "vue3-scroll-border": "0.1.7"
55
55
  },
56
56
  "devDependencies": {
57
- "@live-change/codeceptjs-helper": "^0.9.130",
57
+ "@live-change/codeceptjs-helper": "^0.9.132",
58
58
  "codeceptjs": "^3.6.10",
59
59
  "generate-password": "1.7.1",
60
60
  "playwright": "1.49.1",
@@ -65,5 +65,5 @@
65
65
  "author": "Michał Łaszczewski <michal@laszczewski.pl>",
66
66
  "license": "BSD-3-Clause",
67
67
  "description": "",
68
- "gitHead": "249279687126ae035353865197b6f3eff934794a"
68
+ "gitHead": "f9627117660732245586a784be1a21455c1c3bd2"
69
69
  }