forked from jitsi/jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/jitsi/jitsi-meet
* 'master' of https://github.com/jitsi/jitsi-meet: (3074 commits) lang: Update missing french labels (jitsi#15422) fix(shared-video): Remove disable button action from web. fix(shared-video): Gets from info from the incoming presence. feat(tests): Adds chat panel and codec selection tests. (jitsi#15416) fix(config): Fixes wrong file location. feat(tests): Adds breakout tests. (jitsi#15414) fix(devices) filter out Zoom audio device chore(typos) fix various typos Found via `codespell -q 3 -S "*.svg,./lang" -L anser,bu,dialin,goup,miliseconds,nd,vew` chore(deps) update TypeScript feat(tests): AVModeration tests. (jitsi#15408) fix(config-whitelist): remove p2p.stunServers fix(lang) update Czech translation fix(polls): Returns an error on duplicate poll. fix(visitors): Fix a check that can result missing main participants. fix(shared-video): Removes disable pointer for non moderators. (jitsi#15399) ref(tracks) Remove gUM option that is no longer supported fix(rnsdk) specify the RN version we support dep(@react-native-clipboard/clipboard): update to 1.14.3 chore(react-native): update CocoaPods fix(transcript) fix matching languages with variants ...
- Loading branch information
Showing
4,332 changed files
with
280,309 additions
and
232,869 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "Jitsi Meet Dev Container", | ||
"image": "mcr.microsoft.com/devcontainers/universal:2", | ||
"features": { | ||
"ghcr.io/devcontainers/features/node:1": { | ||
"version": "20" | ||
} | ||
}, | ||
"hostRequirements": { | ||
"cpus": 4, | ||
"memory": "8gb", | ||
"storage": "32gb" | ||
}, | ||
"postCreateCommand": "bash -i -c 'nvm use && npm install && cp tsconfig.web.json tsconfig.json'" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
# The build artifacts of the jitsi-meet project. | ||
build/* | ||
|
||
doc/* | ||
|
||
# Third-party source code which we (1) do not want to modify or (2) try to | ||
# modify as little as possible. | ||
flow-typed/* | ||
libs/* | ||
resources/* | ||
react/features/stream-effects/virtual-background/vendor/* | ||
load-test/* | ||
react/features/facial-recognition/resources/* | ||
react/features/face-landmarks/resources/* | ||
|
||
# ESLint will by default ignore its own configuration file. However, there does | ||
# not seem to be a reason why we will want to risk being inconsistent with our | ||
# remaining JavaScript source code. | ||
!.eslintrc.js | ||
|
||
# Not worth it. | ||
actionTypes.js | ||
actionTypes.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
module.exports = { | ||
'extends': [ | ||
'@jitsi/eslint-config' | ||
] | ||
], | ||
'ignorePatterns': [ '*.d.ts' ] | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Bug report | ||
description: File a bug report and help us improve | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
This issue tracker is only for reporting bugs and tracking issues related to the source code. | ||
**Before posting, please make sure to check if the same or similar bugs have already been reported.** | ||
⚠️ General questions regarding usage, installation, etc. should be posted in our [community forum](https://community.jitsi.org). | ||
- type: textarea | ||
attributes: | ||
label: What happened? | ||
description: Please describe the problem. Be as detailed as possible. | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: Platform | ||
description: On what platforms can you reproduce the problem? | ||
options: | ||
- label: Chrome (or Chromium based) | ||
- label: Firefox | ||
- label: Safari | ||
- label: Other desktop browser | ||
- label: Android browser | ||
- label: iOS browser | ||
- label: Electron app | ||
- label: Android mobile app | ||
- label: iOS mobile app | ||
- label: Custom app using a mobile SDK | ||
- type: input | ||
attributes: | ||
label: Browser / app / sdk version | ||
description: Please provide the version of the browser / app / sdk where the problem manifests. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. The browser console JS logs (if applicable) is a good start. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
- type: checkboxes | ||
attributes: | ||
label: Reproducibility | ||
description: Does the problem reproduce on meet.jit.si using Chrome, Firefox or the official mobile apps? | ||
options: | ||
- label: The problem is reproducible on meet.jit.si | ||
- type: textarea | ||
attributes: | ||
label: More details? | ||
description: Please provide more details in case they apply (such as the Jitsi Meet version you are running, if you are hosting your own server). |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Feature request | ||
description: Suggest an idea for Jitsi Meet | ||
labels: ["feature-request"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for suggesting an idea to make Jitsi Meet better. | ||
**Note**: the ultimate decision for implementing features lies on the Jitsi team, not all feature requests shall be accepted. | ||
- type: textarea | ||
attributes: | ||
label: What problem are you trying to solve? | ||
description: Tell us what problem your feature request would solve. | ||
- type: textarea | ||
attributes: | ||
label: What solution would you like to see? | ||
description: Please describe the desired behavior or feature. | ||
- type: textarea | ||
attributes: | ||
label: Is there an alternative? | ||
description: Please describe alternative solutions or features you have considered. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Need help with Jitsi Meet? | ||
- name: Need help with your Jitsi Meet installation? | ||
url: https://community.jitsi.org | ||
about: Please ask it in our community. | ||
about: Please ask it in our community forum. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Lua CI | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
luacheck: | ||
name: Luacheck | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install luarocks | ||
run: sudo apt-get --install-recommends -y install luarocks | ||
|
||
- name: Install luacheck | ||
run: sudo luarocks install luacheck | ||
|
||
- name: Check lua codes | ||
run: | | ||
set -o pipefail && luacheck . \ | ||
--exclude-files=resources/prosody-plugins/mod_firewall/mod_firewall.lua | awk -F: ' | ||
{ | ||
print $0 | ||
printf "::warning file=%s,line=%s,col=%s::%s\n", $1, $2, $3, $4 | ||
} | ||
' |
Oops, something went wrong.