4 Commits

Author SHA1 Message Date
5bb8e2c4ce Merge 1.0.2 (#7)
* Fixed page scrolling

* Updated TODO

* Fixed a link

* Minor edits

* Version bump
2023-09-21 19:50:52 -07:00
798c9ceae9 Merge pull request #6 from rm-dr/dev
Merge v1.1.1
2023-09-21 19:37:34 -07:00
bab305e11d Merge pull request #4 from rm-dr/dev
Merge 1.1.0
2023-09-20 11:19:34 -07:00
a6c3ffa68d Merge v1.0.1 2023-08-17 10:30:26 -07:00
5 changed files with 5 additions and 4 deletions

2
Cargo.lock generated
View File

@ -28,7 +28,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]] [[package]]
name = "daisycalc" name = "daisycalc"
version = "1.1.1" version = "1.1.2"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"num", "num",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "daisycalc" name = "daisycalc"
version = "1.1.1" version = "1.1.2"
edition = "2021" edition = "2021"
build = "buildscript/main.rs" build = "buildscript/main.rs"
license = "GPL-3.0-only" license = "GPL-3.0-only"

View File

@ -4,7 +4,7 @@ A high-precision scientific calculator with support for units, derivatives, and
Many features are missing, this is still under development. Many features are missing, this is still under development.
**Web demo: [here](daisy.betalupi.com)** **Web demo: [here](https://daisy.betalupi.com) (won't work on mobile)**
# 📦 Installation # 📦 Installation
- **Cargo:** `cargo install daisycalc` - **Cargo:** `cargo install daisycalc`

View File

@ -9,6 +9,8 @@
- cargo publish - cargo publish
- Update packages - Update packages
- Build wasm & push changes - Build wasm & push changes
- Squash merge
- Update AUR package
## Pre-release ## Pre-release

View File

@ -22,7 +22,6 @@
margin: 0; margin: 0;
padding: 0; padding: 0;
overflow: hidden;
height: 100vh; height: 100vh;
} }