mirror of
https://github.com/danbulant/appit
synced 2026-05-26 21:32:02 +00:00
Releasing v0.2.0
This commit is contained in:
parent
1ff4b7b2a6
commit
f5b8c8cf8b
4 changed files with 9 additions and 9 deletions
|
|
@ -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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## Unreleased
|
## v0.2.0 (2023-12-27)
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
|
|
||||||
|
|
|
||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -60,7 +60,7 @@ checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "appit"
|
name = "appit"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"winit",
|
"winit",
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "appit"
|
name = "appit"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A math library specialized for 2d screen graphics."
|
description = "A math library specialized for 2d screen graphics."
|
||||||
repository = "https://github.com/khonsulabs/appit"
|
repository = "https://github.com/khonsulabs/appit"
|
||||||
|
|
|
||||||
12
README.md
12
README.md
|
|
@ -4,8 +4,8 @@
|
||||||
[](https://crates.io/crates/appit)
|
[](https://crates.io/crates/appit)
|
||||||
[](https://khonsulabs.github.io/appit/main/appit)
|
[](https://khonsulabs.github.io/appit/main/appit)
|
||||||
|
|
||||||
An opinionated wrapper for `winit` that provides a trait-based approach to
|
An opinionated wrapper for `winit` that provides a trait-based, multi-threaded
|
||||||
implementing multi-window applications.
|
approach to implementing multi-window applications.
|
||||||
|
|
||||||
This crate's main type is `WindowBehavior`, a trait that provides functions for
|
This crate's main type is `WindowBehavior`, a trait that provides functions for
|
||||||
nearly every `winit::event::WindowEvent`. This allows you to implement exactly
|
nearly every `winit::event::WindowEvent`. This allows you to implement exactly
|
||||||
|
|
@ -40,7 +40,7 @@ fn main() {
|
||||||
## Project Status
|
## Project Status
|
||||||
|
|
||||||
This project is early in development as part of [Kludgine][kludgine] and
|
This project is early in development as part of [Kludgine][kludgine] and
|
||||||
[Gooey][gooey]. It is considered alpha and unsupported at this time, and the
|
[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
|
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.
|
requests and bug fixes will be prioritized based on @ecton's own needs.
|
||||||
|
|
||||||
|
|
@ -48,9 +48,9 @@ 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
|
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
|
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
|
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
|
||||||
[kludgine]: https://github.com/khonsulabs/kludgine
|
[kludgine]: https://github.com/khonsulabs/kludgine
|
||||||
[ecton]: https://github.com/khonsulabs/ecton
|
[ecton]: https://github.com/khonsulabs/ecton
|
||||||
[issues]: https://github.com/khonsulabs/gooey/issues
|
[issues]: https://github.com/khonsulabs/cushy/issues
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue