Skip to content

Commit

Permalink
Merge pull request #573 from felddy/release/11.292.0
Browse files Browse the repository at this point in the history
Pre-Release 11.292.0
  • Loading branch information
felddy authored Jan 19, 2023
2 parents 4581cd1 + a9b4cf9 commit 8343e0a
Show file tree
Hide file tree
Showing 46 changed files with 1,113 additions and 1,030 deletions.
42 changes: 0 additions & 42 deletions .github/ISSUE_TEMPLATE/bug.md

This file was deleted.

96 changes: 96 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
---
name: 🐛 Bug Report
description: File a bug report
labels: ["bug :bug:"]
assignees:
- felddy
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: description
attributes:
label: Bug description
description: A clear and concise description of what the bug is.
placeholder: |
The widget color selector does not apply the correct color.
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to reproduce
description: What are the steps to reproduce the behavior?
placeholder: |
- Select an object on the page.
- Right-click on the selected object.
- Choose a color from the color change popup menu.
- Click on the purple color selection.
- Notice the object turns yellow instead of purple.
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
placeholder: |
I expect that the selected object will turn the color selected.
validations:
required: true
- type: markdown
attributes:
value: |
Use the following command to print your container metadata:
```bash
docker inspect --format='{{range $k, $v := .Config.Labels}}
{{- printf "%s = \"%s\"\n" $k $v -}} {{end}}' \
felddy/foundryvtt:release
```
- type: textarea
id: container-metadata
attributes:
label: Container metadata
description: Paste the output from the command above. This will be automatically formatted, so no need for backticks.
render: shell
placeholder: |
com.foundryvtt.version = "11.292"
org.opencontainers.image.authors = "[email protected]"
org.opencontainers.image.created = "2022-09-01T23:22:04.337Z"
org.opencontainers.image.description = "An easy-to-deploy Dockerized Foundry Virtual Tabletop server."
org.opencontainers.image.licenses = "MIT"
org.opencontainers.image.revision = "94d5cc47fc0c5ac5ae268988c6673c046e39e6b6"
org.opencontainers.image.source = "https://github.com/felddy/foundryvtt-docker"
org.opencontainers.image.title = "foundryvtt-docker"
org.opencontainers.image.url = "https://github.com/felddy/foundryvtt-docker"
org.opencontainers.image.vendor = "Geekpad"
org.opencontainers.image.version = "11.292.0"
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Run the container with `CONTAINER_VERBOSE` set to `true`,and paste any useful log output. This will be automatically formatted into code, so no need for backticks.
render: console
placeholder: |
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] Timezone set to: US/Eastern
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v11.292.0
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] CONTAINER_VERBOSE set. Debug logging enabled.
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Reading configured secrets from: /run/secrets/config.json
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] No Foundry Virtual Tabletop installation detected.
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Using FOUNDRY_USERNAME and FOUNDRY_PASSWORD to authenticate.
foundry_1 | Authenticate | 2022-02-23 14:14:54 | [debug] Saving cookies to: cookiejar.json
foundry_1 | Authenticate | 2022-02-23 14:14:54 | [info] Requesting CSRF tokens from https://foundryvtt.com
foundry_1 | Authenticate | 2022-02-23 14:14:54 | [debug] Fetching: https://foundryvtt.com
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/felddy/foundryvtt-docker/blob/develop/CODE_OF_CONDUCT.md)
options:
- label: I agree to follow this project's Code of Conduct
required: true
8 changes: 7 additions & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,10 @@ blank_issues_enabled: false
contact_links:
- name: 💬 Questions / Help
url: https://github.com/felddy/foundryvtt-docker/discussions
about: Ask a question or get some help
about: Ask questions and get help from the repository discussions
- name: 🎮 FoundryVTT Discord
url: https://discord.gg/foundryvtt
about: Visit the official FoundryVTT Discord server
- name: 🏵 FoundryVTT issue tracker
url: https://github.com/foundryvtt/foundryvtt/issues
about: Visit the official FoundryVTT issue tracker
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature.md

This file was deleted.

61 changes: 61 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
name: 🚀 Feature Proposal
description: Submit a proposal for a new feature
labels: ["feature request :bulb:"]
assignees:
- felddy
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this feature proposal!
- type: textarea
id: description
attributes:
label: Feature description
description: A clear and concise description of what the feature is.
placeholder: |
Add both purple and cyan colors to the color picker.
validations:
required: true
- type: textarea
id: motivation
attributes:
label: Motivation
description: Please outline the motivation for the proposal.
placeholder: |
- I like purple and cyan colors.
- The colors in the current color selector are limited to mostly reds and greens.
- I would like the ability to select more colors that I like.
validations:
required: true
- type: textarea
id: example
attributes:
label: Example
description: Please provide an example for how this feature would be used.
placeholder: |
- Select an object on the page.
- Right-click on the selected object.
- Choose a color from the color change popup menu.
- Click on the new purple color selection.
- Notice the object turns a beautifuly shade of purple.
validations:
required: true
- type: textarea
id: pitch
attributes:
label: Pitch
description: Why does this feature belong in this project?
placeholder: |
There are a lot of people that enjoy both purple and cyan.
validations:
required: true
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/felddy/foundryvtt-docker/blob/develop/CODE_OF_CONDUCT.md)
options:
- label: I agree to follow this project's Code of Conduct
required: true
48 changes: 0 additions & 48 deletions .github/ISSUE_TEMPLATE/regression.md

This file was deleted.

111 changes: 111 additions & 0 deletions .github/ISSUE_TEMPLATE/regression.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
---
name: 💥 Regression Report
description: Report unexpected behavior that worked in previous versions
labels: ["regression :boom:"]
assignees:
- felddy
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this regression report!
- type: textarea
id: description
attributes:
label: Regression description
description: A clear and concise description of what the regression is.
placeholder: |
The object color selector used to list purple. Now it does not.
validations:
required: true
- type: input
id: worked-up-to-version
attributes:
label: Worked up to version
description: What was the last version that was working?
placeholder: x.y.z
validations:
required: true
- type: input
id: stopped-working-in-version
attributes:
label: Stopped working in version
description: What version did it stop working in?
placeholder: x.y.z
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to reproduce
description: What are the steps to reproduce the behavior?
placeholder: |
- Select an object on the page.
- Right-click on the selected object.
- Choose a color from the color change popup menu.
- Notice purple is not in the list.
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
placeholder: |
I expect that purple would be in the color selection list.
validations:
required: true
- type: markdown
attributes:
value: |
Use the following command to print your container metadata:
```bash
docker inspect --format='{{range $k, $v := .Config.Labels}}
{{- printf "%s = \"%s\"\n" $k $v -}} {{end}}' \
felddy/foundryvtt:release
```
- type: textarea
id: container-metadata
attributes:
label: Container metadata
description: Paste the output from the command above. This will be automatically formatted, so no need for backticks.
render: shell
placeholder: |
com.foundryvtt.version = "11.292"
org.opencontainers.image.authors = "[email protected]"
org.opencontainers.image.created = "2022-09-01T23:22:04.337Z"
org.opencontainers.image.description = "An easy-to-deploy Dockerized Foundry Virtual Tabletop server."
org.opencontainers.image.licenses = "MIT"
org.opencontainers.image.revision = "94d5cc47fc0c5ac5ae268988c6673c046e39e6b6"
org.opencontainers.image.source = "https://github.com/felddy/foundryvtt-docker"
org.opencontainers.image.title = "foundryvtt-docker"
org.opencontainers.image.url = "https://github.com/felddy/foundryvtt-docker"
org.opencontainers.image.vendor = "Geekpad"
org.opencontainers.image.version = "11.292.0"
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Run the container with `CONTAINER_VERBOSE` set to `true`,and paste any useful log output. This will be automatically formatted into code, so no need for backticks.
render: console
placeholder: |
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] Timezone set to: US/Eastern
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v11.292.0
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] CONTAINER_VERBOSE set. Debug logging enabled.
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Reading configured secrets from: /run/secrets/config.json
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] No Foundry Virtual Tabletop installation detected.
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Using FOUNDRY_USERNAME and FOUNDRY_PASSWORD to authenticate.
foundry_1 | Authenticate | 2022-02-23 14:14:54 | [debug] Saving cookies to: cookiejar.json
foundry_1 | Authenticate | 2022-02-23 14:14:54 | [info] Requesting CSRF tokens from https://foundryvtt.com
foundry_1 | Authenticate | 2022-02-23 14:14:54 | [debug] Fetching: https://foundryvtt.com
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/felddy/foundryvtt-docker/blob/develop/CODE_OF_CONDUCT.md)
options:
- label: I agree to follow this project's Code of Conduct
required: true
Loading

0 comments on commit 8343e0a

Please sign in to comment.