forked from MCSManager/MCSManager
-
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 'MCSManager:master' into master
- Loading branch information
Showing
393 changed files
with
75,009 additions
and
5,560 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,48 @@ | ||
name: Bug Report | ||
description: Create a report to help us improve | ||
title: "[Bug Report] " | ||
labels: "Bug Report" | ||
body: | ||
- type: input | ||
id: Platform | ||
attributes: | ||
label: Platform | ||
description: Please enter the platform on which you encountered the bug. | ||
placeholder: e.g. Windows 11, Ubuntu 14.04 | ||
validations: | ||
required: true | ||
- type: input | ||
id: panel-version | ||
attributes: | ||
label: Panel Version | ||
description: MCSManager Panel Version | ||
placeholder: e.g. 10.1.0 | ||
validations: | ||
required: true | ||
- type: input | ||
id: daemon-version | ||
attributes: | ||
label: Daemon Version (Optional) | ||
description: MCSManager Daemon Version | ||
placeholder: e.g. 4.3.0 | ||
validations: | ||
required: false | ||
- type: input | ||
id: recurrence-probability | ||
attributes: | ||
label: Recurrence Probability | ||
description: Recurrence Probability | ||
placeholder: 1%~100% | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Bug Description | ||
description: Please describe the problem you met in as much detail as possible. Besides, please describe how to trigger this problem again. | ||
placeholder: | | ||
1. Click a button named ... | ||
2. ... | ||
3. ... | ||
validations: | ||
required: true |
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,11 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: English | Discord Channel | ||
url: https://discord.gg/BNpYMVX7Cd | ||
about: The official Discord channel of MCSManager! | ||
- name: 中文用户 | QQ Group | ||
url: http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=6ryJRaHMaAM9aSeSdRWn6qm9gQ3lI8vu&authKey=BMZ5gA9Rqw%2B5714yAW1ZxiWnFbkk2KRKgBF%2BMiIaOw0VVsSR7tsP10cFwhmDdlgU&noverify=0&group_code=198646856 | ||
about: The official QQ Group of MCSManager! | ||
- name: 中文用户 | Telegram Group | ||
url: https://t.me/MCSManager_dev | ||
about: The official Telegram Group of MCSManager! |
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: A new feature for MCSManager | ||
title: "[Feature] " | ||
labels: "Feature Request" | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Please make sure that no duplicated issues has already been delivered. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Please describe in detail the new functionality you would like to add. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reason | ||
attributes: | ||
label: Reason | ||
description: Please describe why you want to add the feature into MCSManager. | ||
validations: | ||
required: true |
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 @@ | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 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,31 @@ | ||
name: NodeJS with Webpack | ||
|
||
on: | ||
push: | ||
branches: ["master"] | ||
pull_request: | ||
branches: ["master"] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [16.x, 18.x, 20.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Run Build Script | ||
run: | | ||
chmod a+x ./install-dependents.sh | ||
chmod a+x ./build.sh | ||
./install-dependents.sh | ||
./build.sh | ||
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
registry=https://registry.npmjs.org |
Oops, something went wrong.