forked from glitch-soc/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from NeuromatchAcademy/merge-upstream
4.2-RC2: Merge upstream to dev
- Loading branch information
Showing
1,783 changed files
with
38,535 additions
and
29,641 deletions.
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
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,49 @@ | ||
{ | ||
"name": "Mastodon on GitHub Codespaces", | ||
"dockerComposeFile": "../docker-compose.yml", | ||
"service": "app", | ||
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", | ||
|
||
"features": { | ||
"ghcr.io/devcontainers/features/sshd:1": {} | ||
}, | ||
|
||
"runServices": ["app", "db", "redis"], | ||
|
||
"forwardPorts": [3000, 4000], | ||
|
||
"portsAttributes": { | ||
"3000": { | ||
"label": "web", | ||
"onAutoForward": "notify" | ||
}, | ||
"4000": { | ||
"label": "stream", | ||
"onAutoForward": "silent" | ||
} | ||
}, | ||
|
||
"otherPortsAttributes": { | ||
"onAutoForward": "silent" | ||
}, | ||
|
||
"remoteEnv": { | ||
"LOCAL_DOMAIN": "${localEnv:CODESPACE_NAME}-3000.app.github.dev", | ||
"LOCAL_HTTPS": "true", | ||
"STREAMING_API_BASE_URL": "https://${localEnv:CODESPACE_NAME}-4000.app.github.dev", | ||
"DISABLE_FORGERY_REQUEST_PROTECTION": "true", | ||
"ES_ENABLED": "", | ||
"LIBRE_TRANSLATE_ENDPOINT": "" | ||
}, | ||
|
||
"onCreateCommand": "git config --global --add safe.directory ${containerWorkspaceFolder}", | ||
"postCreateCommand": ".devcontainer/post-create.sh", | ||
"waitFor": "postCreateCommand", | ||
|
||
"customizations": { | ||
"vscode": { | ||
"settings": {}, | ||
"extensions": ["EditorConfig.EditorConfig", "webben.browserslist"] | ||
} | ||
} | ||
} |
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
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
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,76 @@ | ||
name: Bug Report (Web Interface) | ||
description: If you are using Mastodon's web interface and something is not working as expected | ||
labels: [bug, 'status/to triage', 'area/web interface'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Make sure that you are submitting a new bug that was not previously reported or already fixed. | ||
Please use a concise and distinct title for the issue. | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce the problem | ||
description: What were you trying to do? | ||
value: | | ||
1. | ||
2. | ||
3. | ||
... | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Expected behaviour | ||
description: What should have happened? | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Actual behaviour | ||
description: What happened? | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Detailed description | ||
validations: | ||
required: false | ||
- type: input | ||
attributes: | ||
label: Mastodon instance | ||
description: The address of the Mastodon instance where you experienced the issue | ||
placeholder: mastodon.social | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Mastodon version | ||
description: | | ||
This is displayed at the bottom of the About page, eg. `v4.1.2+nightly-20230627` | ||
placeholder: v4.1.2 | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Browser name and version | ||
description: | | ||
What browser are you using when getting this bug? Please specify the version as well. | ||
placeholder: Firefox 105.0.3 | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Operating system | ||
description: | | ||
What OS are you running? Please specify the version as well. | ||
placeholder: macOS 13.4.1 | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Technical details | ||
description: | | ||
Any additional technical details you may have. This can include the full error log, inspector's output… | ||
validations: | ||
required: false |
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,65 @@ | ||
name: Bug Report (server / API) | ||
description: | | ||
If something is not working as expected, but is not from using the web interface. | ||
labels: [bug, 'status/to triage'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Make sure that you are submitting a new bug that was not previously reported or already fixed. | ||
Please use a concise and distinct title for the issue. | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce the problem | ||
description: What were you trying to do? | ||
value: | | ||
1. | ||
2. | ||
3. | ||
... | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Expected behaviour | ||
description: What should have happened? | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Actual behaviour | ||
description: What happened? | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Detailed description | ||
validations: | ||
required: false | ||
- type: input | ||
attributes: | ||
label: Mastodon instance | ||
description: The address of the Mastodon instance where you experienced the issue | ||
placeholder: mastodon.social | ||
validations: | ||
required: false | ||
- type: input | ||
attributes: | ||
label: Mastodon version | ||
description: | | ||
This is displayed at the bottom of the About page, eg. `v4.1.2+nightly-20230627` | ||
placeholder: v4.1.2 | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Technical details | ||
description: | | ||
Any additional technical details you may have, like logs or error traces | ||
value: | | ||
If this is happening on your own Mastodon server, please fill out those: | ||
- Ruby version: (from `ruby --version`, eg. v3.1.2) | ||
- Node.js version: (from `node --version`, eg. v18.16.0) | ||
validations: | ||
required: false |
File renamed without changes.
Oops, something went wrong.