Skip to content

Commit 8343e0a

Browse files
authored
Merge pull request #573 from felddy/release/11.292.0
Pre-Release 11.292.0
2 parents 4581cd1 + a9b4cf9 commit 8343e0a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1113
-1030
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
---
2+
name: 🐛 Bug Report
3+
description: File a bug report
4+
labels: ["bug :bug:"]
5+
assignees:
6+
- felddy
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this bug report!
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Bug description
16+
description: A clear and concise description of what the bug is.
17+
placeholder: |
18+
The widget color selector does not apply the correct color.
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: steps
23+
attributes:
24+
label: Steps to reproduce
25+
description: What are the steps to reproduce the behavior?
26+
placeholder: |
27+
- Select an object on the page.
28+
- Right-click on the selected object.
29+
- Choose a color from the color change popup menu.
30+
- Click on the purple color selection.
31+
- Notice the object turns yellow instead of purple.
32+
validations:
33+
required: true
34+
- type: textarea
35+
id: expected
36+
attributes:
37+
label: Expected behavior
38+
description: A clear and concise description of what you expected to happen.
39+
placeholder: |
40+
I expect that the selected object will turn the color selected.
41+
validations:
42+
required: true
43+
- type: markdown
44+
attributes:
45+
value: |
46+
Use the following command to print your container metadata:
47+
48+
```bash
49+
docker inspect --format='{{range $k, $v := .Config.Labels}}
50+
{{- printf "%s = \"%s\"\n" $k $v -}} {{end}}' \
51+
felddy/foundryvtt:release
52+
```
53+
- type: textarea
54+
id: container-metadata
55+
attributes:
56+
label: Container metadata
57+
description: Paste the output from the command above. This will be automatically formatted, so no need for backticks.
58+
render: shell
59+
placeholder: |
60+
com.foundryvtt.version = "11.292"
61+
org.opencontainers.image.authors = "markf+github@geekpad.com"
62+
org.opencontainers.image.created = "2022-09-01T23:22:04.337Z"
63+
org.opencontainers.image.description = "An easy-to-deploy Dockerized Foundry Virtual Tabletop server."
64+
org.opencontainers.image.licenses = "MIT"
65+
org.opencontainers.image.revision = "94d5cc47fc0c5ac5ae268988c6673c046e39e6b6"
66+
org.opencontainers.image.source = "https://github.com/felddy/foundryvtt-docker"
67+
org.opencontainers.image.title = "foundryvtt-docker"
68+
org.opencontainers.image.url = "https://github.com/felddy/foundryvtt-docker"
69+
org.opencontainers.image.vendor = "Geekpad"
70+
org.opencontainers.image.version = "11.292.0"
71+
validations:
72+
required: true
73+
- type: textarea
74+
id: logs
75+
attributes:
76+
label: Relevant log output
77+
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.
78+
render: console
79+
placeholder: |
80+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] Timezone set to: US/Eastern
81+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v11.292.0
82+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] CONTAINER_VERBOSE set. Debug logging enabled.
83+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Reading configured secrets from: /run/secrets/config.json
84+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] No Foundry Virtual Tabletop installation detected.
85+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Using FOUNDRY_USERNAME and FOUNDRY_PASSWORD to authenticate.
86+
foundry_1 | Authenticate | 2022-02-23 14:14:54 | [debug] Saving cookies to: cookiejar.json
87+
foundry_1 | Authenticate | 2022-02-23 14:14:54 | [info] Requesting CSRF tokens from https://foundryvtt.com
88+
foundry_1 | Authenticate | 2022-02-23 14:14:54 | [debug] Fetching: https://foundryvtt.com
89+
- type: checkboxes
90+
id: terms
91+
attributes:
92+
label: Code of Conduct
93+
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)
94+
options:
95+
- label: I agree to follow this project's Code of Conduct
96+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,10 @@ blank_issues_enabled: false
33
contact_links:
44
- name: 💬 Questions / Help
55
url: https://github.com/felddy/foundryvtt-docker/discussions
6-
about: Ask a question or get some help
6+
about: Ask questions and get help from the repository discussions
7+
- name: 🎮 FoundryVTT Discord
8+
url: https://discord.gg/foundryvtt
9+
about: Visit the official FoundryVTT Discord server
10+
- name: 🏵 FoundryVTT issue tracker
11+
url: https://github.com/foundryvtt/foundryvtt/issues
12+
about: Visit the official FoundryVTT issue tracker

.github/ISSUE_TEMPLATE/feature.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
name: 🚀 Feature Proposal
3+
description: Submit a proposal for a new feature
4+
labels: ["feature request :bulb:"]
5+
assignees:
6+
- felddy
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this feature proposal!
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Feature description
16+
description: A clear and concise description of what the feature is.
17+
placeholder: |
18+
Add both purple and cyan colors to the color picker.
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: motivation
23+
attributes:
24+
label: Motivation
25+
description: Please outline the motivation for the proposal.
26+
placeholder: |
27+
- I like purple and cyan colors.
28+
- The colors in the current color selector are limited to mostly reds and greens.
29+
- I would like the ability to select more colors that I like.
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: example
34+
attributes:
35+
label: Example
36+
description: Please provide an example for how this feature would be used.
37+
placeholder: |
38+
- Select an object on the page.
39+
- Right-click on the selected object.
40+
- Choose a color from the color change popup menu.
41+
- Click on the new purple color selection.
42+
- Notice the object turns a beautifuly shade of purple.
43+
validations:
44+
required: true
45+
- type: textarea
46+
id: pitch
47+
attributes:
48+
label: Pitch
49+
description: Why does this feature belong in this project?
50+
placeholder: |
51+
There are a lot of people that enjoy both purple and cyan.
52+
validations:
53+
required: true
54+
- type: checkboxes
55+
id: terms
56+
attributes:
57+
label: Code of Conduct
58+
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)
59+
options:
60+
- label: I agree to follow this project's Code of Conduct
61+
required: true

.github/ISSUE_TEMPLATE/regression.md

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/regression.yml

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
---
2+
name: 💥 Regression Report
3+
description: Report unexpected behavior that worked in previous versions
4+
labels: ["regression :boom:"]
5+
assignees:
6+
- felddy
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this regression report!
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Regression description
16+
description: A clear and concise description of what the regression is.
17+
placeholder: |
18+
The object color selector used to list purple. Now it does not.
19+
validations:
20+
required: true
21+
- type: input
22+
id: worked-up-to-version
23+
attributes:
24+
label: Worked up to version
25+
description: What was the last version that was working?
26+
placeholder: x.y.z
27+
validations:
28+
required: true
29+
- type: input
30+
id: stopped-working-in-version
31+
attributes:
32+
label: Stopped working in version
33+
description: What version did it stop working in?
34+
placeholder: x.y.z
35+
validations:
36+
required: true
37+
- type: textarea
38+
id: steps
39+
attributes:
40+
label: Steps to reproduce
41+
description: What are the steps to reproduce the behavior?
42+
placeholder: |
43+
- Select an object on the page.
44+
- Right-click on the selected object.
45+
- Choose a color from the color change popup menu.
46+
- Notice purple is not in the list.
47+
validations:
48+
required: true
49+
- type: textarea
50+
id: expected
51+
attributes:
52+
label: Expected behavior
53+
description: A clear and concise description of what you expected to happen.
54+
placeholder: |
55+
I expect that purple would be in the color selection list.
56+
validations:
57+
required: true
58+
- type: markdown
59+
attributes:
60+
value: |
61+
Use the following command to print your container metadata:
62+
63+
```bash
64+
docker inspect --format='{{range $k, $v := .Config.Labels}}
65+
{{- printf "%s = \"%s\"\n" $k $v -}} {{end}}' \
66+
felddy/foundryvtt:release
67+
```
68+
- type: textarea
69+
id: container-metadata
70+
attributes:
71+
label: Container metadata
72+
description: Paste the output from the command above. This will be automatically formatted, so no need for backticks.
73+
render: shell
74+
placeholder: |
75+
com.foundryvtt.version = "11.292"
76+
org.opencontainers.image.authors = "markf+github@geekpad.com"
77+
org.opencontainers.image.created = "2022-09-01T23:22:04.337Z"
78+
org.opencontainers.image.description = "An easy-to-deploy Dockerized Foundry Virtual Tabletop server."
79+
org.opencontainers.image.licenses = "MIT"
80+
org.opencontainers.image.revision = "94d5cc47fc0c5ac5ae268988c6673c046e39e6b6"
81+
org.opencontainers.image.source = "https://github.com/felddy/foundryvtt-docker"
82+
org.opencontainers.image.title = "foundryvtt-docker"
83+
org.opencontainers.image.url = "https://github.com/felddy/foundryvtt-docker"
84+
org.opencontainers.image.vendor = "Geekpad"
85+
org.opencontainers.image.version = "11.292.0"
86+
validations:
87+
required: true
88+
- type: textarea
89+
id: logs
90+
attributes:
91+
label: Relevant log output
92+
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.
93+
render: console
94+
placeholder: |
95+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] Timezone set to: US/Eastern
96+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v11.292.0
97+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] CONTAINER_VERBOSE set. Debug logging enabled.
98+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Reading configured secrets from: /run/secrets/config.json
99+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] No Foundry Virtual Tabletop installation detected.
100+
foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Using FOUNDRY_USERNAME and FOUNDRY_PASSWORD to authenticate.
101+
foundry_1 | Authenticate | 2022-02-23 14:14:54 | [debug] Saving cookies to: cookiejar.json
102+
foundry_1 | Authenticate | 2022-02-23 14:14:54 | [info] Requesting CSRF tokens from https://foundryvtt.com
103+
foundry_1 | Authenticate | 2022-02-23 14:14:54 | [debug] Fetching: https://foundryvtt.com
104+
- type: checkboxes
105+
id: terms
106+
attributes:
107+
label: Code of Conduct
108+
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)
109+
options:
110+
- label: I agree to follow this project's Code of Conduct
111+
required: true

0 commit comments

Comments
 (0)