-
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.
- Loading branch information
0 parents
commit b1d8661
Showing
2,699 changed files
with
343,562 additions
and
0 deletions.
There are no files selected for viewing
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,6 @@ | ||
|
||
[android] | ||
target = Google Inc.:Google APIs:23 | ||
|
||
[maven_repositories] | ||
central = https://repo1.maven.org/maven2 |
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": "Yiqia Meet Dev Container", | ||
"image": "mcr.microsoft.com/devcontainers/universal:2", | ||
"features": { | ||
"ghcr.io/devcontainers/features/node:1": { | ||
"version": "16" | ||
} | ||
}, | ||
"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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = space | ||
max_line_length = 80 | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[Makefile] | ||
indent_style = tab |
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,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. | ||
libs/* | ||
resources/* | ||
react/features/stream-effects/virtual-background/vendor/* | ||
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.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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
'extends': [ | ||
'@jitsi/eslint-config' | ||
], | ||
'ignorePatterns': [ '*.d.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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*.bundle.js -text -diff | ||
*.pbxproj -text | ||
lib-jitsi-meet.js -text -diff |
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,48 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
|
||
--- | ||
|
||
<!-- | ||
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 discussed: https://github.com/jitsi/jitsi-meet/issues | ||
General questions regarding usage, installation, etc. should be posted at https://community.jitsi.org. They will be closed if posted here. | ||
--> | ||
|
||
### Description: | ||
|
||
<!-- Please describe the bug clearly and concisely. --> | ||
|
||
### Steps to reproduce: | ||
|
||
1. <!-- Open '...' --> | ||
2. <!-- Click on '...' --> | ||
3. <!-- and so on... --> | ||
|
||
### Expected behavior: | ||
|
||
<!-- Please describe what should happen. --> | ||
|
||
### Actual behavior: | ||
|
||
<!-- Please describe what actually happens. --> | ||
<!-- Please attach screenshot if possible. --> | ||
|
||
### Server information: | ||
|
||
- Yiqia Meet version: | ||
- Operating System: | ||
|
||
### Client information: | ||
|
||
- Browser / app version: | ||
- Operating System: | ||
|
||
### Additional information: | ||
|
||
<!-- Please provide additional information about the bug, if any. --> |
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,25 @@ | ||
--- | ||
name: "Feature request" | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: 'feature-request' | ||
assignees: '' | ||
--- | ||
|
||
<!-- | ||
Thank you for suggesting an idea to make Yiqia Meet better. | ||
Please fill in as much of the template below as you're able. | ||
Note that the ultimate decision for implementing features lies on the Jitsi team, not all feature requests shall be accepted. | ||
--> | ||
|
||
**Is your feature request related to a problem you are facing?** | ||
Please describe the problem you are trying to solve. | ||
|
||
**Describe the solution you'd like** | ||
Please describe the desired behavior. | ||
|
||
**Describe alternatives you've considered** | ||
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Need help with Yiqia Meet? | ||
url: https://community.jitsi.org | ||
about: Please ask it in our community. |
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,5 @@ | ||
<!-- | ||
Thank you for your pull request. Please provide a thorough description below. | ||
Contributors guide: https://github.com/jitsi/jitsi-meet/blob/master/CONTRIBUTING.md | ||
--> |
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@v3 | ||
|
||
- 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 | ||
} | ||
' |
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,90 @@ | ||
name: Simple CI | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: 'npm' | ||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/changed-files@v35 | ||
- name: Get changed lang files | ||
id: lang-files | ||
run: echo "all=$(echo "${{ steps.changed-files.outputs.all_changed_files }}" | grep -oE 'lang\/\S+' | tr '\n' ' ')" >> "$GITHUB_OUTPUT" | ||
- run: npm install | ||
- name: Check git status | ||
run: git status | ||
- name: Normalize lang files to ensure sorted | ||
if: steps.lang-files.outputs.all | ||
run: npm run lang-sort | ||
- name: Check lang files are formatted correctly | ||
if: steps.lang-files.outputs.all | ||
run: npm run lint:lang | ||
- name: Check if the git repository is clean | ||
run: $(exit $(git status --porcelain --untracked-files=no | head -255 | wc -l)) || (echo "Dirty git tree"; git diff; exit 1) | ||
- run: npm run lint:ci && npm run tsc:ci | ||
linux-build: | ||
name: Build Frontend (Linux) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: 'npm' | ||
- run: npm install | ||
- run: make | ||
macos-ci: | ||
name: Build Frontend (macOS) | ||
runs-on: macOS-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: 'npm' | ||
- run: npm install | ||
- run: make | ||
android-build: | ||
name: Build mobile bundle (Android) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: 'npm' | ||
- run: npm install | ||
- run: npx react-native bundle --entry-file react/index.native.js --platform android --bundle-output /tmp/android.bundle --reset-cache | ||
ios-build: | ||
name: Build mobile bundle (iOS) | ||
runs-on: macOS-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: 'npm' | ||
- run: npm install | ||
- run: npx react-native bundle --entry-file react/index.native.js --platform ios --bundle-output /tmp/ios.bundle --reset-cache | ||
debian-build: | ||
name: Test Debian packages build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: 'npm' | ||
- run: npm install | ||
- run: make | ||
- run: sudo apt-get install -y debhelper | ||
- run: dpkg-buildpackage -A -rfakeroot -us -uc -d | ||
- run: make source-package |
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,21 @@ | ||
name: 'Close stale issues and PRs' | ||
on: | ||
schedule: | ||
- cron: '30 1 * * *' | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.' | ||
stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.' | ||
stale-issue-label: 'stale' | ||
stale-pr-label: 'stale' | ||
exempt-issue-labels: 'confirmed,help-needed' | ||
exempt-pr-labels: 'confirmed' | ||
days-before-issue-stale: 60 | ||
days-before-pr-stale: 90 | ||
days-before-issue-close: 10 | ||
days-before-pr-close: 10 |
Oops, something went wrong.