[READ-ONLY] Mirror of https://github.com/probablykasper/cpc. Text calculator with support for units and conversion cpc.kasper.space
calculator cli conversion converter library math package units units-converter wasm website
0

Configure Feed

Select the types of activity you want to include in your feed.

v1.3.1

Kasper (Jan 14, 2021, 6:03 PM +0100) d0d37e98 c5afa7e0

+9 -5
+5 -2
CHANGELOG.md
··· 1 + ## 1.3.1 - 2021 Jan 14 2 + - Fix spelling of `Celsius` (@joseluis) 3 + 1 4 ## 1.3.0 - 2020 Nov 29 2 5 - Added unit of mass `Stone` 3 6 - Added keyword `pounds-force` (used for `PoundsPerSquareInch`) ··· 28 31 - Fixed error caused by consecutive percentage signs 29 32 30 33 ## 1.0.2 - 2020 Oct 12 31 - - Fix parsing of unit `Quarter` (#1) 32 - - Use division instead of multiplication when dividing numbers of the same unit `Quarter` (#1) 34 + - Fix parsing of unit `Quarter` (@ethwu) 35 + - Use division instead of multiplication when dividing numbers of the same unit `Quarter` (@ethwu) 33 36 34 37 ## 1.0.1 - 2020 Aug 20 35 38 - Fixed the library not working
+1 -1
Cargo.lock
··· 14 14 15 15 [[package]] 16 16 name = "cpc" 17 - version = "1.3.0" 17 + version = "1.3.1" 18 18 dependencies = [ 19 19 "decimal_fixes_mirror", 20 20 ]
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "cpc" 3 - version = "1.3.0" 3 + version = "1.3.1" 4 4 description = "evaluates math expressions, with support for units and conversion between units" 5 5 authors = ["Kasper Henningsen"] 6 6 edition = "2018"
+2 -1
README.md
··· 191 191 192 192 ### Cross-compiling 193 193 1. [Install Docker](https://docs.docker.com/get-docker/) 194 - 2. Install `cross`: 194 + 2. Install [cross](https://github.com/rust-embedded/cross): 195 195 ``` 196 196 cargo install cross 197 197 ``` ··· 202 202 - Note that building for `x86_64-apple-darwin` only works on macOS 203 203 - For more targets, check out [the targets `cross` supports](https://github.com/rust-embedded/cross#supported-targets) 204 204 - If you run `cross build` in parallel, you might get a `cargo not found` error 205 + 205 206 The compiled binaries will now be available inside `target/<target>/release/`. The filename will be either `cpc` or `cpc.exe`. 206 207 207 208 ### Releasing a new version