Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.12.1 #325

Merged
merged 19 commits into from
Jun 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[alias]
xtask = "run --package xtask --"
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ pkg

# discard test examples
examples/test_*.rs

.DS_Store
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Changelog
All notable changes to this project will be documented in this file.

## v0.12.1 - 08/06/2024

- Updated EGUI to `0.27`.
- The readme has gifs again.
- Added `app.mouse.clean_button_state` to clean the state of a button.
- Added `xtask` to run project's script like building the examples for web.
- Fixed an issue with EGUI that makes text looks blurry.

## v0.12.0 - 19/02/2024

- Updated EGUI to `0.26`.
Expand Down
24 changes: 24 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Contributing to Notan

## Linux
> TODO

## MacOS
> TODO

## Windows (MSVC)

To be able to compile the Notan examples you will need to have the following pre-requirements in your system:

* [CMake](https://cmake.org/download/)
* [Python](https://www.python.org/downloads/)
* [Ninja](https://github.com/ninja-build/ninja/wiki/Pre-built-Ninja-packages)

If you want to use the wasm32 target you will need to execute some additional commands for it:
````cmd
rustup target add wasm32-unknown-unknown
cargo install -f wasm-bindgen-cli --version 0.2.87
cargo install wasm-opt
````

After this you will be able to use the PowerShell scripts in the `scripts` folder to compile the examples or the doc.
Loading
Loading