mirror of
https://github.com/rm-dr/daisy
synced 2025-07-05 01:59:30 -07:00
Compare commits
13 Commits
v1.1.1
...
32463ad6aa
Author | SHA1 | Date | |
---|---|---|---|
32463ad6aa | |||
413c34c440 | |||
a1d190b06e
|
|||
178708a4ac
|
|||
5bb8e2c4ce | |||
49b88af2bb
|
|||
a0fe0a9385
|
|||
7215afcc7e
|
|||
3ab559b240
|
|||
810e2a1267
|
|||
798c9ceae9 | |||
bab305e11d | |||
a6c3ffa68d |
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -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",
|
||||||
|
@ -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"
|
||||||
|
@ -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`
|
||||||
|
3
TODO.md
3
TODO.md
@ -6,9 +6,12 @@
|
|||||||
- push
|
- push
|
||||||
- merge
|
- merge
|
||||||
- git tag -a v1.0.0 -m "Version 1.0.0" on merge commit
|
- git tag -a v1.0.0 -m "Version 1.0.0" on merge commit
|
||||||
|
- delete branch?
|
||||||
- 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
|
||||||
|
15
shell.nix
15
shell.nix
@ -1,11 +1,22 @@
|
|||||||
|
{ nixpkgs ? import <nixpkgs> { }}:
|
||||||
let
|
let
|
||||||
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/f155f0cf4ea43c4e3c8918d2d327d44777b6cad4.tar.gz") {};
|
# If you set hash to an empty string, you'll get
|
||||||
|
# an error with the correct hash.
|
||||||
|
pinnedPkgs = nixpkgs.fetchFromGitHub {
|
||||||
|
owner = "NixOS";
|
||||||
|
repo = "nixpkgs";
|
||||||
|
rev = "4ecab3273592f27479a583fb6d975d4aba3486fe";
|
||||||
|
sha256 = "btHN1czJ6rzteeCuE/PNrdssqYD2nIA4w48miQAFloM=";
|
||||||
|
};
|
||||||
|
pkgs = import pinnedPkgs {};
|
||||||
|
|
||||||
in pkgs.mkShell {
|
in pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
cargo
|
cargo
|
||||||
rustc
|
rustc
|
||||||
rustfmt
|
rustfmt
|
||||||
m4
|
rust-analyzer
|
||||||
|
wasm-pack
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,7 +22,6 @@
|
|||||||
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
overflow: hidden;
|
|
||||||
|
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user