Skip to content

Commit

Permalink
upgrade to latest jitsi code
Browse files Browse the repository at this point in the history
  • Loading branch information
deleolajide committed Feb 15, 2022
1 parent 43da0df commit 093e608
Show file tree
Hide file tree
Showing 11 changed files with 146,357 additions and 143,376 deletions.
Binary file modified classes/jicofo/jicofo-1.1-SNAPSHOT-jar-with-dependencies.jar
Binary file not shown.
Binary file modified classes/jicofo/jicofo-1.1-SNAPSHOT.jar
Binary file not shown.
Binary file not shown.
Binary file modified classes/jvb/jitsi-videobridge-2.1-SNAPSHOT.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<goal>wget</goal>
</goals>
<configuration>
<url>https://download.jitsi.org/jitsi-meet/src/jitsi-meet-1.0.5666.tar.bz2</url>
<url>https://download.jitsi.org/jitsi-meet/src/jitsi-meet-1.0.5864.tar.bz2</url>
<unpack>true</unpack>
<outputDirectory>${project.basedir}/classes</outputDirectory>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion src/webapp/collab.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ var collab = (function (coop) {
Cursor._cursors[clientId] = cursor;

if (APP.conference.isLocalId(clientId)) {
cursor.setName(APP.conference.getLocalDisplayName());
cursor.setName(ofmeet.getLocalDisplayName());
cursor.setColor(getConference().getLocalParticipantProperty('cursorColor'));
} else {
let participant = getParticipant(clientId);
Expand Down
22 changes: 12 additions & 10 deletions src/webapp/custom_ofmeet.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,16 +319,6 @@ var ofmeet = (function (ofm) {
enter_room_button.parentNode.appendChild(button);
}
}

function getLocalDisplayName() {
const settings = JSON.parse(localStorage.getItem("features/base/settings"));
return settings?.displayName;
}

function getParticipantDisplayName(id) {
const participant = APP.conference.getParticipantById(APP.conference.getMyUserId());
return participant?._displayName;
}

function preSetup() {
if (!APP.connection) {
Expand Down Expand Up @@ -1171,7 +1161,17 @@ var ofmeet = (function (ofm) {
function getConferenceJid() {
return getConference()?.room?.roomjid;
}

function getLocalDisplayName() {
const settings = JSON.parse(localStorage.getItem("features/base/settings"));
return settings?.displayName;
}

function getParticipantDisplayName(id) {
const participant = APP.conference.getParticipantById(APP.conference.getMyUserId());
return participant?._displayName;
}

function getAllParticipants() {
const state = APP.store.getState();
return (state["features/base/participants"].remote);
Expand Down Expand Up @@ -3720,6 +3720,8 @@ var ofmeet = (function (ofm) {

ofm.recording = false;
ofm.getAllParticipants = getAllParticipants;
ofm.getLocalDisplayName = getLocalDisplayName;
ofm.getParticipantDisplayName = getParticipantDisplayName;

return ofm;

Expand Down
179,163 changes: 89,999 additions & 89,164 deletions src/webapp/libs/app.bundle.min-old.js

Large diffs are not rendered by default.

64,872 changes: 33,172 additions & 31,700 deletions src/webapp/libs/app.bundle.min.js

Large diffs are not rendered by default.

9,296 changes: 4,829 additions & 4,467 deletions src/webapp/libs/lib-jitsi-meet.min-old.js

Large diffs are not rendered by default.

36,376 changes: 18,343 additions & 18,033 deletions src/webapp/libs/lib-jitsi-meet.min.js

Large diffs are not rendered by default.

0 comments on commit 093e608

Please sign in to comment.