Skip to content

Commit

Permalink
Merge branch 'main' into rxattrib
Browse files Browse the repository at this point in the history
  • Loading branch information
Junology committed Jan 11, 2025
2 parents 26f45f9 + 5f32f67 commit 1f1c81a
Show file tree
Hide file tree
Showing 6 changed files with 187 additions and 113 deletions.
30 changes: 19 additions & 11 deletions .github/ISSUE_TEMPLATE/1_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,24 @@ body:
- Other (specify if possible)
validations:
required: true

- type: input
attributes:
label: Processing version
label: Processing version
description: Go to "Help > About Processing" and look in the bottom-right corner for the version number. It also appears in the title bar of every editor window.
validations:
required: true

- type: input
attributes:
label: Operating system
label: Operating system
description: "Ex: Windows/MacOSX/Linux/Android/iOS along with version"
validations:
required: true

- type: textarea
attributes:
label: Steps to reproduce this
label: Steps to reproduce this
description: Describe what steps will produce the bug.
value: |
"1.
Expand All @@ -56,7 +56,7 @@ body:
3."
validations:
required: true

- type: textarea
attributes:
label: snippet
Expand All @@ -67,19 +67,27 @@ body:
// Paste your code below :)
void setup() {
}
void draw() {
}
```
validations:
required: false

- type: textarea
attributes:
label: Additional context
description: Add any other context about the problem here.
validations:
required: false

- type: input
attributes:
label: Would you like to work on the issue?
description: |
Please let us know if you can work on this or if the issue should be assigned to someone else.
validations:
required: true
18 changes: 13 additions & 5 deletions .github/ISSUE_TEMPLATE/2_enhancement.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,38 +29,46 @@ body:
- Other (specify if possible)
validations:
required: true

- type: input
attributes:
label: Feature to enhance
description: Which existing feature of Processing would be improved by this enhancement?
validations:
required: true

- type: textarea
attributes:
label: Desired enhancement
description: Describe the improvement you’d like to see with that existing feature
validations:
required: true

- type: textarea
attributes:
label: Potential benefits
description: Explain how this enhancement could benefit users or improve Processing.
validations:
required: false

- type: textarea
attributes:
label: Possible drawbacks
description: Consider any possible drawbacks or challenges related to the implementation of this enhancement.
validations:
required: false

- type: textarea
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
validations:
required: false

- type: input
attributes:
label: Would you like to work on the issue?
description: |
Please let us know if you can work on this or if the issue should be assigned to someone else.
validations:
required: true
125 changes: 67 additions & 58 deletions .github/ISSUE_TEMPLATE/3_feature-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,61 +3,70 @@ description: Request adding a new feature to Processing
labels: [new feature]
body:

- type: dropdown
id: feature-area
attributes:
label: Relevant sub-area for this feature?
description: Choose the sub-area most relevant to your feature request.
multiple: true
options:
- Accessibility
- Core/Environment/Rendering
- PDE
- Data
- Events
- Image
- IO
- Math
- Typography
- Utilities
- OpenGL
- Contributions Manager
- Export
- Build process
- Unit testing
- Internationalization
- Other (specify if possible)
validations:
required: true

- type: textarea
id: feature-description
attributes:
label: Feature description
description: Describe the feature in detail. Include how it should work and its intended impact.
validations:
required: true

- type: textarea
id: benefits
attributes:
label: Benefits
description: Outline how this feature would benefit users or improve Processing.
validations:
required: true

- type: textarea
id: challenges
attributes:
label: Possible challenges
description: Discuss any possible challenges or considerations in implementing this feature.
validations:
required: false

- type: textarea
id: additional-context
attributes:
label: Additional context
description: Provide any other information, links, or screenshots that could help illustrate the feature.
validations:
required: false
- type: dropdown
id: feature-area
attributes:
label: Relevant sub-area for this feature?
description: Choose the sub-area most relevant to your feature request.
multiple: true
options:
- Accessibility
- Core/Environment/Rendering
- PDE
- Data
- Events
- Image
- IO
- Math
- Typography
- Utilities
- OpenGL
- Contributions Manager
- Export
- Build process
- Unit testing
- Internationalization
- Other (specify if possible)
validations:
required: true

- type: textarea
id: feature-description
attributes:
label: Feature description
description: Describe the feature in detail. Include how it should work and its intended impact.
validations:
required: true

- type: textarea
id: benefits
attributes:
label: Benefits
description: Outline how this feature would benefit users or improve Processing.
validations:
required: true

- type: textarea
id: challenges
attributes:
label: Possible challenges
description: Discuss any possible challenges or considerations in implementing this feature.
validations:
required: false

- type: textarea
id: additional-context
attributes:
label: Additional context
description: Provide any other information, links, or screenshots that could help illustrate the feature.
validations:
required: false


- type: input
attributes:
label: Would you like to work on the issue?
description: |
Please let us know if you can work on this or if the issue should be assigned to someone else.
validations:
required: true
19 changes: 19 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
changelog:
exclude:
labels:
- Dependencies
authors:
- dependabot
categories:
- title: What's Changed 🎊
labels:
- '*'
exclude:
labels:
- Dependencies
authors:
- allcontributors
- dependabot
- title: New Contributors 💙
authors:
- allcontributors
23 changes: 8 additions & 15 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,27 +51,20 @@ jobs:
architecture: ${{ matrix.arch }}
- name: Setup Ant
uses: cedx/setup-ant@v3
- name: Install Certificates for Code Signing
if: ${{ matrix.os_prefix == 'macos' }}
uses: apple-actions/import-codesign-certs@v3
with:
p12-file-base64: ${{ secrets.CERTIFICATES_P12 }}
p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }}
# - name: Install Certificates for Code Signing
# if: ${{ matrix.os_prefix == 'macos' }}
# uses: apple-actions/import-codesign-certs@v3
# with:
# p12-file-base64: ${{ secrets.CERTIFICATES_P12 }}
# p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }}
- name: Build Release
run: ant -noinput -buildfile build/build.xml ${{ matrix.os_prefix }}-dist -Dversion="${{ github.sha }}"
env:
PROCESSING_APP_SIGNING: true
# env:
# PROCESSING_APP_SIGNING: ${{ secrets.CERTIFICATES_P12 != '' }}
- name: Add artifact
uses: actions/upload-artifact@v3
id: upload
with:
name: processing-${{github.sha}}${{ matrix.os_prefix }}-${{ matrix.arch }}
path: ./build/${{ matrix.os_prefix }}/processing-${{github.sha}}-${{ matrix.os_prefix}}-*
retention-days: 5
# TODO: Merge into one comment and fix the link
# - uses: mshick/add-pr-comment@v2
# with:
# message-id: "build-artifact ${{ matrix.os_prefix }} ${{ matrix.arch }}"
# message: |
# Build artifacts for ${{ matrix.os_prefix }} (${{ matrix.arch }}) have been created.
# Download the artifacts [here](${{ steps.upload.outputs.artifact-id }}).
Loading

0 comments on commit 1f1c81a

Please sign in to comment.