-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 icon_from_file
- Loading branch information
Showing
247 changed files
with
3,911 additions
and
5,524 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,82 @@ | ||
name: I have a problem with the library | ||
description: File a bug report. | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: | | ||
Please, search [the existing issues] and see if an issue already exists for the bug you encountered. | ||
[the existing issues]: https://github.com/iced-rs/iced/issues | ||
options: | ||
- label: I have searched the existing issues. | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: Is this issue related to iced? | ||
description: | | ||
If your application is crashing during startup or you are observing graphical glitches, there is a chance it may be caused by incompatible hardware or outdated graphics drivers. | ||
Before filing an issue... | ||
- If you are using `wgpu`, you need an environment that supports Vulkan, Metal, or DirectX 12. Please, make sure you can run [the `wgpu` examples]. | ||
- If you are using `glow`, you need support for OpenGL 2.1+. Please, make sure you can run [the `glow` examples]. | ||
If you have any issues running any of the examples, make sure your graphics drivers are up-to-date. If the issues persist, please report them to the authors of the libraries directly! | ||
[the `wgpu` examples]: https://github.com/gfx-rs/wgpu/tree/master/wgpu/examples | ||
[the `glow` examples]: https://github.com/grovesNL/glow/tree/main/examples | ||
options: | ||
- label: My hardware is compatible and my graphics drivers are up-to-date. | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: What happened? | ||
id: what-happened | ||
description: | | ||
What problem are you having? Please, also provide the steps to reproduce it. | ||
If the issue happens with a particular program, please share an [SSCCE]. | ||
[SSCCE]: http://sscce.org/ | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: What is the expected behavior? | ||
id: what-expected | ||
description: What were you expecting to happen? | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of iced are you using? | ||
options: | ||
- master | ||
- 0.3.0 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: Operative System | ||
description: Which operative system are you using? | ||
options: | ||
- Windows | ||
- macOS | ||
- Linux | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Do you have any log output? | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell |
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 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: I have a question | ||
url: https://github.com/iced-rs/iced/discussions/new?category=q-a | ||
about: Open a discussion with a Q&A format. | ||
- name: I want to start a discussion | ||
url: https://github.com/iced-rs/iced/discussions/new | ||
about: Open a new discussion if you have any suggestions, ideas, feature requests, or simply want to show off something you've made. | ||
- name: I want to chat with other users of the library | ||
url: https://discord.com/invite/3xZJ65GAhd | ||
about: Join the Discord Server and get involved with the community! |
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,15 @@ | ||
name: Audit | ||
on: [push] | ||
jobs: | ||
dependencies: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: hecrj/setup-rust-action@v1 | ||
- name: Install cargo-audit | ||
run: cargo install cargo-audit | ||
- uses: actions/checkout@master | ||
- name: Manually update `nix` crates # See https://github.com/nix-rust/nix/issues/1627 | ||
run: | | ||
cargo update --package nix:0.20.0 --precise 0.20.2 | ||
- name: Audit dependencies | ||
run: cargo audit |
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,33 @@ | ||
name: Document | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
all: | ||
runs-on: ubuntu-20.04 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
steps: | ||
- uses: hecrj/setup-rust-action@v1 | ||
- uses: actions/checkout@v2 | ||
- name: Generate documentation | ||
run: | | ||
cargo doc --no-deps --all-features \ | ||
-p iced_core \ | ||
-p iced_native \ | ||
-p iced_lazy \ | ||
-p iced_graphics \ | ||
-p iced_wgpu \ | ||
-p iced_glow \ | ||
-p iced_winit \ | ||
-p iced_glutin \ | ||
-p iced | ||
- name: Write CNAME file | ||
run: echo 'docs.iced.rs' > ./target/doc/CNAME | ||
- name: Publish documentation | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
deploy_key: ${{ secrets.DOCS_DEPLOY_KEY }} | ||
external_repository: iced-rs/docs | ||
publish_dir: ./target/doc |
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ pkg/ | |
**/*.rs.bk | ||
Cargo.lock | ||
.cargo/ | ||
dist/ |
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
Oops, something went wrong.