Skip to content

Commit

Permalink
Merge pull request #413 from Unity-UI-Extensions/feature/V2.3.0
Browse files Browse the repository at this point in the history
Feature/v2.3.0
  • Loading branch information
SimonDarksideJ authored Feb 7, 2023
2 parents afd645a + 2a90891 commit 8cbd1c3
Show file tree
Hide file tree
Showing 113 changed files with 4,721 additions and 1,836 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* SimonDarksideJ
6 changes: 6 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# These are supported funding model platforms

github: [SimonDarksideJ]
ko_fi: Ko-fi.com/uiextensions
issuehunt: simondarksidej
custom: https://paypal.me/unityuiextensions
44 changes: 44 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
name: Bug report
about: Create a report to identify a potential issue
title: 'BUG: '
labels: bug
assignees: ''
---

# Unity UI Extensions Bug Report

## Describe the bug
<!-- Please provide a clear and concise description of what the bug is. -->

## To Reproduce
<!-- Include Steps to reproduce the behavior: -->

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

## Expected behavior
<!-- A clear and concise description of what you expected to happen. -->

## Actual behavior
<!-- What is actually happening -->

## Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->

## Your Setup
<!-- please complete any/all the following information. -->

- **Operation System:**
- [ ] Windows
- [ ] MacOs
- [ ] Linux
- [ ] Other <!-- Please Specify Platform -->
- **Unity Version:** <!-- Please Specify Version --> 2020.3.15f
- **Unity UI Extensions Version**
- [ ] 2.3.0 <!-- Please Specify Version or commit sha -->

## Additional context
<!-- Add any other context about the problem here. -->
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: Feature request
about: Suggest an idea for the Unity UI Extensions
title: 'Feature Request: '
labels: enhancement
assignees: ''
---

# Unity UI Extensions Feature Request

## Is your feature request related to a problem? Please describe

<!--Please provide a clear and concise description of what the problem is.
E.g. I'm always frustrated when [...]-->

## How would you classify your suggestion
<!--What type of enhancement is it, e.g:-->

- New platform support
- Usability / Configuration
- Architecture / Services

## Describe the solution you'd like
<!--A clear and concise description of what you want to happen.-->

## Describe alternatives you've considered
<!--A clear and concise description of any alternative solutions or features you've considered.-->

## Additional context
<!--Add any other context or screenshots about the feature request here.-->
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/request_for_information.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: Request for Information
about: Not sure how to do something, just ask.
title: 'RFI: '
labels: question
assignees: ''
---

# Unity UI Extensions Request for Information

<!-- As imperfect beings, we try to teach and show how to make using the framework easy to handle, but sometimes we will fall short. Help us to better educate adopters by pointing out where we need to give more information. -->

## What are you trying to achieve?

<!--
Add a clear and concise description of what is it you are trying to implement.
Include screenshots or examples from other projects if it helps.
-->

## What have you already tried

<!--
Have you tried to complete the task yourself but couldn't figure it out, if so what and why?
-->

## What material have you referenced that didn't answer your question

<!--
What other content have you tried reading / viewing that didn't answer your question?
-->
30 changes: 30 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Unity UI Extensions - Pull Request

## Overview
<!-- Please provide a clear and concise description of the pull request. -->

## Changes
<!-- Brief list of the targeted features that are being changed. -->

- Fixes: <!--issue number or url-->

## Breaking Changes
<!-- Are there any breaking changes included in this change that would prevent or cause issue for existing projects? -->

- Breaks

## Related Submodule Changes

<!-- Include any submodule related Pull Request links here -->
- URL

## Testing status
<!-- Remove the options that do not apply -->
* No tests have been added.
* Includes unit tests.
* Includes performance tests.
* Includes integration tests.

### Manual testing status
<!-- Describe how you tested your implementation/fix. Try to mention all the cases and flows. -->
<!-- It will help the reviewer to understand if you missed any cases or test steps as well as will tell more about your feature or fix. -->
37 changes: 37 additions & 0 deletions .github/workflows/buildupmpackages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build and test UPM packages for platforms on all available Unity Versions

on:
pull_request:
branches-ignore:
- 'release'
# Ignore PRs targetting main

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
# Run Unity build unit tests defined in the package for a single version for feature branches
Run-Partial-Unit-Tests:
name: Run Unity Unit Tests
if: github.ref != 'refs/heads/development'
uses: ./.github/workflows/rununitysinglebuild.yml
with:
unityversion: 2020.3

# Run Unity multi-version build unit tests defined in the package for the development branch
Run-Full-Unit-Tests:
name: Run Unity Unit Tests
if: github.ref == 'refs/heads/development'
uses: ./.github/workflows/rununitybuildmultiversion.yml

# Update the package release version
Update-Version:
name: Update Package Version
uses: ./.github/workflows/tagrelease.yml
with:
build-target: windows
secrets: inherit
Loading

0 comments on commit 8cbd1c3

Please sign in to comment.