mirror of
https://github.com/danbulant/appit
synced 2026-05-19 04:08:34 +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/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## Unreleased
|
||||
## v0.2.0 (2023-12-27)
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
|
|
|
|||
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -60,7 +60,7 @@ checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
|
|||
|
||||
[[package]]
|
||||
name = "appit"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"winit",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "appit"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
edition = "2021"
|
||||
description = "A math library specialized for 2d screen graphics."
|
||||
repository = "https://github.com/khonsulabs/appit"
|
||||
|
|
|
|||
12
README.md
12
README.md
|
|
@ -4,8 +4,8 @@
|
|||
[](https://crates.io/crates/appit)
|
||||
[](https://khonsulabs.github.io/appit/main/appit)
|
||||
|
||||
An opinionated wrapper for `winit` that provides a trait-based approach to
|
||||
implementing multi-window applications.
|
||||
An opinionated wrapper for `winit` that provides a trait-based, multi-threaded
|
||||
approach to implementing multi-window applications.
|
||||
|
||||
This crate's main type is `WindowBehavior`, a trait that provides functions for
|
||||
nearly every `winit::event::WindowEvent`. This allows you to implement exactly
|
||||
|
|
@ -40,7 +40,7 @@ fn main() {
|
|||
## Project Status
|
||||
|
||||
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
|
||||
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
|
||||
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
|
||||
[kludgine]: https://github.com/khonsulabs/kludgine
|
||||
[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