Selaa lähdekoodia

Enables sending release number from backend. (#11552)

* chore(deps) lib-jitsi-meet@latest

https://github.com/jitsi/lib-jitsi-meet/compare/v1436.0.0+d5c46952...v1437.0.0+966fcd93

* squash: Enables sending release number from backend.
master
Дамян Минков 3 vuotta sitten
vanhempi
commit
35572700bf
No account linked to committer's email address
3 muutettua tiedostoa jossa 11 lisäystä ja 6 poistoa
  1. 5
    5
      package-lock.json
  2. 1
    1
      package.json
  3. 5
    0
      resources/prosody-plugins/mod_jiconop.lua

+ 5
- 5
package-lock.json Näytä tiedosto

@@ -73,7 +73,7 @@
73 73
         "jquery-i18next": "1.2.1",
74 74
         "js-md5": "0.6.1",
75 75
         "jwt-decode": "2.2.0",
76
-        "lib-jitsi-meet": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1436.0.0+d5c46952/lib-jitsi-meet.tgz",
76
+        "lib-jitsi-meet": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1437.0.0+966fcd93/lib-jitsi-meet.tgz",
77 77
         "lodash": "4.17.21",
78 78
         "moment": "2.29.2",
79 79
         "moment-duration-format": "2.2.2",
@@ -12132,8 +12132,8 @@
12132 12132
     },
12133 12133
     "node_modules/lib-jitsi-meet": {
12134 12134
       "version": "0.0.0",
12135
-      "resolved": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1436.0.0+d5c46952/lib-jitsi-meet.tgz",
12136
-      "integrity": "sha512-GmqtqD+6QcDI76gn8ev5zpKOuHs9afqu2MhldSGJQ31NhmCqOo3SLlQltqnkdo/x2hBd5ZAxZz2/3b2A+p+Eig==",
12135
+      "resolved": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1437.0.0+966fcd93/lib-jitsi-meet.tgz",
12136
+      "integrity": "sha512-kJx4bvMHLVWOj7cSNBxF6I3P0gnwjCoP2ECSiJWfun1Bi/O58tPAuz7skIot4y9fU+WpeTzuINayLCCteLIhxg==",
12137 12137
       "license": "Apache-2.0",
12138 12138
       "dependencies": {
12139 12139
         "@jitsi/js-utils": "2.0.0",
@@ -29276,8 +29276,8 @@
29276 29276
       }
29277 29277
     },
29278 29278
     "lib-jitsi-meet": {
29279
-      "version": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1436.0.0+d5c46952/lib-jitsi-meet.tgz",
29280
-      "integrity": "sha512-GmqtqD+6QcDI76gn8ev5zpKOuHs9afqu2MhldSGJQ31NhmCqOo3SLlQltqnkdo/x2hBd5ZAxZz2/3b2A+p+Eig==",
29279
+      "version": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1437.0.0+966fcd93/lib-jitsi-meet.tgz",
29280
+      "integrity": "sha512-kJx4bvMHLVWOj7cSNBxF6I3P0gnwjCoP2ECSiJWfun1Bi/O58tPAuz7skIot4y9fU+WpeTzuINayLCCteLIhxg==",
29281 29281
       "requires": {
29282 29282
         "@jitsi/js-utils": "2.0.0",
29283 29283
         "@jitsi/logger": "2.0.0",

+ 1
- 1
package.json Näytä tiedosto

@@ -78,7 +78,7 @@
78 78
     "jquery-i18next": "1.2.1",
79 79
     "js-md5": "0.6.1",
80 80
     "jwt-decode": "2.2.0",
81
-    "lib-jitsi-meet": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1436.0.0+d5c46952/lib-jitsi-meet.tgz",
81
+    "lib-jitsi-meet": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1437.0.0+966fcd93/lib-jitsi-meet.tgz",
82 82
     "lodash": "4.17.21",
83 83
     "moment": "2.29.2",
84 84
     "moment-duration-format": "2.2.2",

+ 5
- 0
resources/prosody-plugins/mod_jiconop.lua Näytä tiedosto

@@ -17,6 +17,11 @@ if region_name_config then
17 17
     module:add_identity("server", "region", region_name_config);
18 18
 end
19 19
 
20
+local release_number_config = module:get_option_string('release_number');
21
+if release_number_config then
22
+    module:add_identity("server", "release", release_number_config);
23
+end
24
+
20 25
 -- this is after xmpp-bind, the moment a client has resource and can be contacted
21 26
 module:hook("resource-bind", function (event)
22 27
     local session = event.session;

Loading…
Peruuta
Tallenna