Compare commits

..

16 Commits

Author SHA1 Message Date
Mark 2531524ffd
Updated makefile 2023-09-22 11:22:36 -07:00
Mark e5525adcca
Updated todo 2023-09-22 11:05:58 -07:00
Mark a61cbf29e5
Makefile edits 2023-09-22 11:05:30 -07:00
Mark 39ab47530e
Merge pull request #9 from rm-dr/dev
Merge v1.1.4
2023-09-22 11:01:55 -07:00
Mark be28669416
Sync with master 2023-09-22 11:00:28 -07:00
Mark 7658ff76ef
Version bump 2023-09-22 10:59:35 -07:00
Mark e9d392b80b
Fixed linelocation inside user functions 2023-09-22 10:58:51 -07:00
Mark 63d4a01095
Merge pull request #8 from rm-dr/dev
Merge v1.1.3
2023-09-22 10:48:59 -07:00
Mark 6a025cbf1a
Version bump 2023-09-22 10:47:38 -07:00
Mark 8a6c623ef2
Updated TODO 2023-09-22 10:47:25 -07:00
Mark a1db2b6bb0
Fixed space key 2023-09-22 10:46:01 -07:00
Mark c2d3e613d4
Added mobile warning 2023-09-22 10:41:01 -07:00
Mark 96a34dc05d
Added makefile 2023-09-22 10:26:46 -07:00
Mark 42fdcd5853
Minor cleanup 2023-09-22 10:26:37 -07:00
Mark cffb3726cc
Character checks, minor cleanup 2023-09-22 10:08:28 -07:00
Mark ef74b67f90
Moved server files to /server 2023-09-22 10:08:10 -07:00
23 changed files with 83 additions and 35 deletions

2
Cargo.lock generated
View File

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

View File

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

19
Makefile Normal file
View File

@ -0,0 +1,19 @@
release:
cargo build --release
test:
cargo test
run:
cargo run
wasm:
wasm-pack build --release --target web --out-dir server/pkg
publish:
cargo test
cargo publish
docker: wasm
docker build ./server -t git.betalupi.com/mark/daisy --no-cache
docker push git.betalupi.com/mark/daisy

View File

@ -1,4 +1,4 @@
![](./site/misc/readme-banner.png)
![](./server/site/resources/readme-banner.png)
A high-precision scientific calculator with support for units, derivatives, and more.

18
TODO.md
View File

@ -1,47 +1,34 @@
## Version Bump checklist
- TODO: build and publish script
- update Cargo.toml
- run cargo test
- commit
- push
- merge
- git tag -a v1.0.0 -m "Version 1.0.0" on merge commit
- delete branch?
- cargo publish
- Update packages
- Build wasm & push changes
- Squash merge
- Update AUR package
## Pre-release
- Tuple operations
- we don't need vectors as arguments to operators
- Fix linelocation when evaluating functions
## Parser
- Should functions be operators?
- Binary, hex, octal numbers
## General
- Better tests (assignment, many expressions in one context)
- Optional config file
- Optional history file
- evaluate straight from command line
- Package for debian, nix
## Internals
- Non-recursive treeify
- Faster factorial function. Maybe use gamma instead?
- Arbitrary precision float (rug doesn't offer arbitrary exponents)
- Arbitrary precision floats
## Math Features
- Mean, Median, Min
- Arbitrary base logarithm
- Derivatives
- CAS features (trig, roots and powers)
- Complex numbers
- acot/acoth functions
- Sums and products with functional arguments
@ -51,8 +38,7 @@
- Fix terminal color detection
- Live syntax/output (like firefox js terminal)
- Syntax highlighting
- fish-style tab completion
- Numbered expressions, history recall
- Numbered history recall
- Enable/disable unit sets (defaults?)
- Consistent unit ordering

2
server/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/site/node_modules
/pkg

View File

@ -7,7 +7,7 @@ networks:
services:
daisy:
build: ./.
build: .
container_name: daisy
restart: unless-stopped

View File

@ -100,6 +100,11 @@
<a href="https://aur.archlinux.org/packages/daisy" target="_blank" rel="noopener noreferrer">AUR</a>
</div>
<script>
var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
if (mobile) { alert("This site may not work on mobile."); }
</script>
<script type="module">
// See wasm-pack docs
// Build with `wasm-pack build --release --target web --out-dir pkg`

17
server/site/package-lock.json generated Normal file
View File

@ -0,0 +1,17 @@
{
"name": "site",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"xterm": "^5.3.0"
}
},
"node_modules/xterm": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/xterm/-/xterm-5.3.0.tgz",
"integrity": "sha512-8QqjlekLUFTrU6x7xck1MsPzPA571K5zNqWm0M0oroYEWVOptZ0+ubQSkQ3uxIEhcIHRujJy6emDWX4A7qyFzg=="
}
}
}

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

3
site/.gitignore vendored
View File

@ -1,3 +0,0 @@
/node_modules
/package-lock.json
/pkg

View File

@ -19,6 +19,7 @@ pub fn eval_operator(context: &mut Context, g: &Expression) -> Result<Option<Exp
if args.len() != 1 {panic!()};
let a = &args[0];
let mut args_ll = op_loc.clone();
if sh_vars.len() == 1 {
if let Expression::Tuple(l, v) = a {
@ -28,6 +29,7 @@ pub fn eval_operator(context: &mut Context, g: &Expression) -> Result<Option<Exp
))
};
args_ll += a.get_linelocation();
context.add_shadow(sh_vars[0].clone(), Some(a.clone()));
} else {
let Expression::Tuple(l, v) = a else {
@ -46,18 +48,28 @@ pub fn eval_operator(context: &mut Context, g: &Expression) -> Result<Option<Exp
let mut i = 0;
while i < sh_vars.len() {
args_ll += v[i].get_linelocation();
context.add_shadow(sh_vars[i].clone(), Some(v[i].clone()));
i += 1;
}
}
let r = evaluate(context, &exp)?;
let r = evaluate(context, &exp);
context.clear_shadow();
match r {
Ok(mut r) => {
r.set_linelocation(&args_ll);
return Ok(Some(r));
},
Err( (_, err) ) => {
return Err((args_ll, err));
}
}
},
Operator::Negative => {
if args.len() != 1 { panic!() };
let args = &args[0];

View File

@ -68,9 +68,7 @@ cfg_if::cfg_if! {
return format!("\r\n{}", daisy_prompt(state));
}
if in_str.trim() == "quit" {
return "[quit]".to_string();
} else {
let r = crate::do_string( unsafe { &mut (*state).context }, &in_str);
match r {
@ -78,7 +76,6 @@ cfg_if::cfg_if! {
out += t;
}
}
}
},
"\x7F" => { unsafe { (*state).promptbuffer.backspace(); } },
@ -91,7 +88,20 @@ cfg_if::cfg_if! {
//'\x04' | '\x03'
//=> { break 'outer; },
_ => { unsafe { (*state).promptbuffer.add_char(s.chars().next().unwrap()); } },
// Only process sane characters
_ => {
let c = s.chars().next().unwrap();
match c {
'a'..='z' | 'A'..='Z' | '0'..='9'
|'!'|'@'|'#'|'$'|'%'|'^'|'&'|'*'|'('|')'
|'?'|'~'|','|'.'|'['|']'|' '
|'<'|'>'|'/'|'_'|'-'|':'|'|'|'='|'+'|';'
=> { unsafe { (*state).promptbuffer.add_char(c); } },
_ => {}
}
},
};
let t = unsafe { (*state).promptbuffer.write_prompt(&mut (*state).context) };

View File

@ -120,7 +120,7 @@ pub fn main() -> Result<(), std::io::Error> {
// Only process sane characters
'a'..='z' | 'A'..='Z' | '0'..='9'
|'!'|'@'|'#'|'$'|'%'|'^'|'&'|'*'|'('|')'
|'?'|'~'|','|'.'|'['|']'
|'?'|'~'|','|'.'|'['|']'|' '
|'<'|'>'|'/'|'_'|'-'|':'|'|'|'='|'+'|';'
=> { pb.add_char(*q); },