Skip to content

Commit

Permalink
Releasing v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Dec 28, 2023
1 parent daf7a2d commit a44e14d
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 51 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## v0.7.0

### Breaking Changes

Expand Down Expand Up @@ -228,7 +228,7 @@ article.
### Breaking Changes

- Removed all user interface code, and spun off a new user interface project,
[Gooey](https://github.com/khonsulabs/gooey).
[Cushy](https://github.com/khonsulabs/cushy).
- Split Kludgine into three crates:
- `kludgine-core`: The rendering aspects of Kludgine. Can now be used for headless rendering as well.
- `kludgine-app`: The windowing/event handling layer of Kludgine.
Expand Down
71 changes: 31 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kludgine"
version = "0.6.1"
version = "0.7.0"
edition = "2021"
description = "A wgpu-powered 2d graphics library with optional windowing support"
readme = "./README.md"
Expand All @@ -15,8 +15,8 @@ default = ["app", "image", "cosmic-text"]
app = ["dep:appit"]

[dependencies]
# appit = { version = "0.1.1", optional = true }
appit = { git = "https://github.com/khonsulabs/appit", optional = true }
appit = { version = "0.2.0", optional = true }
# appit = { git = "https://github.com/khonsulabs/appit", optional = true }
wgpu = { version = "0.18.0", features = ["expose-ids"] }
pollster = "0.3.0"
bytemuck = { version = "1.13.1", features = ["derive"] }
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ many examples that highlight a specific feature.

## Project Status

This project is early in development as part of [Gooey][gooey]. It is considered
This project is early in development as part of [Cushy][cushy]. It is considered
alpha and unsupported at this time, and the primary focus for [@ecton][ecton] is
to use this for his own projects. Feature requests and bug fixes will be
prioritized based on @ecton's own needs.
Expand All @@ -30,11 +30,11 @@ If you would like to contribute, bug fixes are always appreciated. Before
working on a new feature, please [open an issue][issues] proposing the feature
and problem it aims to solve. Doing so will help prevent friction in merging
pull requests, as it ensures changes fit the vision the maintainers have for
Gooey.
Cushy.

[gooey]: https://github.com/khonsulabs/gooey
[cushy]: https://github.com/khonsulabs/cushy
[ecton]: https://github.com/khonsulabs/ecton
[issues]: https://github.com/khonsulabs/gooey/issues
[issues]: https://github.com/khonsulabs/cushy/issues

[wgpu]: https://github.com/gfx-rs/wgpu
[kludge]: https://en.wikipedia.org/wiki/Kludge
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -741,9 +741,9 @@ impl sealed::Clipped for RenderingGraphics<'_, '_> {}

impl Drop for RenderingGraphics<'_, '_> {
fn drop(&mut self) {
// This shouldn't be necessary, but under the GL backend, Gooey only
// This shouldn't be necessary, but under the GL backend, Cushy only
// renders the final widget/clipped region. By setting this, it makes
// Gooey work on this backend.
// Cushy work on the GL backend.
self.pass.set_scissor_rect(
0,
0,
Expand Down

0 comments on commit a44e14d

Please sign in to comment.