5 Commits

Author SHA1 Message Date
49b88af2bb Version bump 2023-09-21 19:49:31 -07:00
a0fe0a9385 Minor edits 2023-09-21 19:49:12 -07:00
7215afcc7e Fixed a link 2023-09-21 19:43:40 -07:00
3ab559b240 Updated TODO 2023-09-21 19:43:00 -07:00
810e2a1267 Fixed page scrolling 2023-09-21 19:42:53 -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;
} }