Skip to content

Commit 6390f24

Browse files
committed
Release v0.3.1
1 parent a4707b6 commit 6390f24

File tree

5 files changed

+49
-35
lines changed

5 files changed

+49
-35
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,25 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
[Unreleased]: https://github.com/Gui-Yom/nuance/compare/v0.3.1...HEAD
11+
12+
## [0.3.1] - 2021-08-31
13+
14+
### Added
15+
16+
- Add tooltips to the UI
17+
- Add a manual reload button
18+
19+
### Changed
20+
21+
- Code structure has been refactored heavily
22+
1023
### Fixed
1124

1225
- No more warning when accessing a vector parameter component
26+
- Dx12 is no more the forced wgpu backend (even on linux), that was a bug
1327

14-
[Unreleased]: https://github.com/Gui-Yom/nuance/compare/v0.3.0...HEAD
28+
[0.3.1]: https://github.com/Gui-Yom/nuance/compare/v0.3.0...v0.3.1
1529

1630
## [0.3.0] - 2021-07-25
1731

Cargo.lock

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nuance"
3-
version = "0.4.0"
3+
version = "0.3.1"
44
authors = ["Guillaume Anthouard <[email protected]>"]
55
edition = "2018"
66
include = ["src/**/*", "LICENSE", "README.md"]

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
use crevice::std430::AsStd430;
2-
use mint::Vector2;
1+
//! This library contains code to parse, load and render shaders on the GPU
32
43
pub use shader::*;
54

src/shader/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use std::path::PathBuf;
22

33
use crevice::std140;
4+
use crevice::std430::AsStd430;
45
use mint::{Vector2, Vector3};
56

67
pub mod loader;

0 commit comments

Comments
 (0)