forked from pencil2d/pencil
-
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 'master' into color_layer_ver2
- Loading branch information
Showing
495 changed files
with
101,262 additions
and
44,475 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,58 @@ | ||
name: "🐛 Bug Report" | ||
description: Create a new ticket for a bug. | ||
title: "🐛 [BUG] - <title>" | ||
labels: [ | ||
"Bug" | ||
] | ||
body: | ||
- type: input | ||
attributes: | ||
label: Pencil2D version | ||
placeholder: 0.7.0 | ||
description: Look at Title bar or "About" dialog | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Operating System | ||
description: The operating system you are using | ||
options: | ||
- Windows | ||
- MacOS | ||
- Linux | ||
- Other (please specify in the description) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduce-steps | ||
attributes: | ||
label: "Steps to reproduce" | ||
description: We highly suggest including screenshots or a detailed error log. | ||
placeholder: "Having detailed steps helps us reproduce the bug." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behaviour | ||
attributes: | ||
label: "Expected Behaviour" | ||
description: What were you expecting? | ||
placeholder: e.g., I expected that the paint bucket filled everything red on the vector layer | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual-behaviour | ||
attributes: | ||
label: "Actual Behaviour" | ||
description: What happened instead? | ||
placeholder: e.g., the paint bucket only changed the color of the stroke | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: other-info | ||
attributes: | ||
label: "Other Information" | ||
placeholder: | | ||
- Do you use a drawing tablet? <Insert tablet name if applicable> | ||
- A screenshot or short video to show your problem. | ||
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,8 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Pencil2D forums | ||
url: https://discuss.pencil2d.org/ | ||
about: A place to discuss issues, share knowledge, showcase animations or request features. | ||
- name: Discord | ||
url: https://discord.com/invite/8FxdV2g | ||
about: Our primary communication and support channel. Most of the contributors hang around here. |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
# set env.VERSION_NUMBER from release branch names e.g., release/0.7.0 | ||
if [[ "${GITHUB_REF_NAME}" == "release/"* ]]; then | ||
branchVerion=$(echo "${GITHUB_REF_NAME}" | sed 's/release\///') | ||
VERSION_NUMBER="$branchVerion.${GITHUB_RUN_NUMBER}" | ||
echo "VERSION_NUMBER=$VERSION_NUMBER" >> $GITHUB_ENV | ||
echo "VERSION_NUMBER is $VERSION_NUMBER" | ||
fi | ||
|
||
# set env.VERSION_NUMBER to 99.0.0.buildNumber if the branch is master | ||
if [ "${GITHUB_REF_NAME}" = "master" ]; then | ||
VERSION_NUMBER=99.0.0.${GITHUB_RUN_NUMBER} | ||
echo "VERSION_NUMBER=${VERSION_NUMBER}" >> "${GITHUB_ENV}" | ||
echo "VERSION_NUMBER is $VERSION_NUMBER" | ||
fi |
Oops, something went wrong.