-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
# Conflicts: # Cargo.toml # crates/bevy_app/Cargo.toml
- Loading branch information
Showing
467 changed files
with
27,280 additions
and
14,770 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
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,32 @@ | ||
--- | ||
name: Bug Report | ||
about: Report a bug to help us improve! | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
**Bevy version** | ||
|
||
The release number or commit hash of the version you're using. | ||
|
||
**Operating system & version** | ||
|
||
Ex: Windows 10, Ubuntu 18.04, iOS 14. | ||
|
||
**What you did** | ||
|
||
The steps you took to uncover this bug. Please list full reproduction steps if | ||
feasible. | ||
|
||
**What you expected to happen** | ||
|
||
What you think should've happened if everything was working properly. | ||
|
||
**What actually happened** | ||
|
||
The actual result of the actions you described. | ||
|
||
**Additional information** | ||
|
||
Any additional information you would like to add such as screenshots, logs, etc. |
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,24 @@ | ||
--- | ||
name: Feature Request | ||
about: Propose a new feature! | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
**What problem does this solve or what need does it fill?** | ||
|
||
A description of why this particular feature should be added. | ||
|
||
**Describe the solution would you like?** | ||
|
||
The solution you propose for the problem presented. | ||
|
||
**Describe the alternative(s) you've considered?** | ||
|
||
Other solutions to solve and/or work around the problem presented. | ||
|
||
**Additional context** | ||
|
||
Any other information you would like to add such as related previous work, | ||
screenshots, benchmarks, etc. |
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,11 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: cargo | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
|
||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: weekly |
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,36 @@ | ||
name: iOS cron CI | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: macOS-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: | | ||
target | ||
key: ${{ runner.os }}-cargo-check-test-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.lock') }} | ||
|
||
- uses: actions-rs/[email protected] | ||
with: | ||
crate: cargo-lipo | ||
version: latest | ||
|
||
- name: Add iOS targets | ||
run: rustup target add aarch64-apple-ios x86_64-apple-ios | ||
|
||
- name: Build and install iOS app in iOS Simulator. | ||
run: cd examples/ios && make install |
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
Oops, something went wrong.