Skip to content

Commit

Permalink
Merge pull request #55 from csett86/ffmuc-release-2022-8-1
Browse files Browse the repository at this point in the history
Merge upstream release v2022.7.1
  • Loading branch information
GoliathLabs authored Sep 2, 2022
2 parents db4f8e3 + 79ef9a1 commit e588768
Show file tree
Hide file tree
Showing 6 changed files with 81 additions and 24 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,14 @@ To fix this, install libfuse2 as follows:
sudo apt install libfuse2
```

Under wayland, experimental native wayland support can be enabled with the command-line switch `--ozone-platform-hint` set to `auto`:

```
./jitsi-meet-x86_64.AppImage --ozone-platform-hint=auto
```

Note that screensharing is currently not supported under wayland, eg. the permissions prompt may loop endlessly.

In case you experience a blank page after jitsi server upgrades, try removing the local cache files:

```
Expand Down
1 change: 1 addition & 0 deletions app/i18n/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const languages = {
es: { translation: require('./lang/es.json') },
fr: { translation: require('./lang/fr.json') },
gl: { translation: require('./lang/gl.json') },
hr: { translation: require('./lang/hr.json') },
hu: { translation: require('./lang/hu.json') },
it: { translation: require('./lang/it.json') },
nl: { translation: require('./lang/nl.json') },
Expand Down
33 changes: 33 additions & 0 deletions app/i18n/lang/hr.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"enterConferenceNameOrUrl": "Upiši ime sobe za tvoju konferenciju ili Jitsi URL",
"go": "KRENI",
"help": "Pomoć",
"termsLink": "Uvjeti",
"privacyLink": "Privatnost",
"recentListLabel": "ili se ponovo pridruži jednoj od tvojih nedavnih konferencijskih soba",
"sendFeedbackLink": "Pošalji povratnu informaciju",
"aboutLink": "Informacije o",
"sourceLink": "Izvroni kod",
"versionLabel": "Verzija: {{version}}",
"onboarding": {
"startTour": "Započni obilazak",
"skip": "Preskoči",
"welcome": "Pozdrav u {{appName}}",
"letUsShowYouAround": "Upoznaj se s radom aplikacije!",
"next": "Dalje",
"conferenceUrl": "Upiši ime (ili potpuni URL) sobe kojoj se želiš pridružiti. Izmisli si ime, ali obavijesti druge kako bi ga upisali.",
"settingsDrawerButton": "Pritisni ovdje za otvaranje postavki.",
"serverSetting": "Ovo će biti poslužitelj na kojem će se održavati tvoje konferencije. Možeš koristiti vlastiti poslužitelj, ali ne moraš!",
"serverTimeout": "Vremensko ograničenje za pridruživanje sastanku. Ako se sastanku nitko ne pridruži prije tog vremena, sastanak se otkazuje.",
"alwaysOnTop": "Ovdje se može uključiti postavljanje prozora „Uvijek ispred ostalih”, koji se prikazuje kada glavni prozor nije aktivan prozor. Ovo će se primijeniti na sve konferencije."
},
"settings": {
"back": "Natrag",
"alwaysOnTopWindow": "Uvijek ispred ostalih",
"invalidServer": "Neispravna URL-adresa poslužitelja",
"invalidServerTimeout": "Neispravna vrijednost za vremensko ograničenje poslužitelja",
"serverUrl": "URL-adresa poslužitelja",
"serverTimeout": "Vremensko ograničenje poslužitelja (u sekundama)",
"disableAGC": "Isključi kontrolu za automasko pojačanje zvuka"
}
}
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ app.commandLine.appendSwitch('disable-features', 'IOSurfaceCapturer');
// Enable Opus RED field trial.
app.commandLine.appendSwitch('force-fieldtrials', 'WebRTC-Audio-Red-For-Opus/Enabled/');

// Enable optional PipeWire support.
// Wayland: Enable optional PipeWire and window decorations support.
if (!app.commandLine.hasSwitch('enable-features')) {
app.commandLine.appendSwitch('enable-features', 'WebRTCPipeWireCapturer');
app.commandLine.appendSwitch('enable-features', 'WebRTCPipeWireCapturer,WaylandWindowDecorations');
}

autoUpdater.logger = require('electron-log');
Expand Down
53 changes: 34 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ffmuc-meet",
"version": "2022.7.1",
"version": "2022.8.1",
"description": "Electron application for Freifunk Meet",
"main": "./build/main.js",
"productName": "FreifunkMeet",
Expand Down Expand Up @@ -126,7 +126,7 @@
"readmeFilename": "README.md",
"license": "Apache-2.0",
"dependencies": {
"@jitsi/electron-sdk": "^3.0.9",
"@jitsi/electron-sdk": "^3.0.15",
"electron-debug": "^3.2.0",
"electron-reload": "^1.5.0"
},
Expand Down Expand Up @@ -155,7 +155,7 @@
"babel-loader": "^8.2.3",
"concurrently": "5.1.0",
"css-loader": "^6.7.1",
"electron": "19.0.8",
"electron": "19.0.12",
"electron-builder": "23.1.0",
"electron-context-menu": "^2.5.0",
"electron-is-dev": "^1.2.0",
Expand Down

0 comments on commit e588768

Please sign in to comment.