Skip to content

Commit aa2cef4

Browse files
author
Arthur Beck
committed
Implemented a LOT - early cat printer support added, uploaded jetbrains mono files, and added moving, copying, duplicating, recolored a little, removed D=delete keybind
1 parent fbe0c64 commit aa2cef4

14 files changed

+779
-42
lines changed

Cargo.toml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
11
[package]
22
name = "notation"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
edition = "2024"
55

66
[dependencies]
7+
btleplug = { version = "0.11.8", optional = true }
78
color-eyre = "0.6.5"
89
crossterm = "0.29.0"
910
dirs = "6.0.0"
11+
fontdue = { version = "0.9.3", optional = true, features = ["std"] }
1012
ratatui = "0.29.0"
1113
ron = "0.10.1"
14+
rustpython = { version = "0.4.0", optional = true }
1215
serde = { version = "1.0.219", features = ["derive"] }
16+
smol = { version = "2.0.2", optional = true }
1317
time = { version = "0.3.41", features = ["formatting", "local-offset", "serde"] }
18+
uuid = { version = "1.18.0", optional = true }
19+
20+
[features]
21+
default = ["cat_printer"]
22+
cat_printer = ["dep:btleplug", "dep:uuid", "async", "fonts"]
23+
async = ["dep:smol"]
24+
fonts = ["dep:fontdue"]

fonts/ttf/AUTHORS.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This is the official list of project authors for copyright purposes.
2+
# This file is distinct from the CONTRIBUTORS.txt file.
3+
# See the latter for an explanation.
4+
#
5+
# Names should be added to this file as:
6+
# Name or Organization <email address>
7+
8+
JetBrains <>
9+
Philipp Nurullin <[email protected]>
10+
Konstantin Bulenkov <[email protected]>

fonts/ttf/JetBrainsMonoNL-Bold.ttf

206 KB
Binary file not shown.
209 KB
Binary file not shown.
208 KB
Binary file not shown.
210 KB
Binary file not shown.
203 KB
Binary file not shown.
207 KB
Binary file not shown.
205 KB
Binary file not shown.
209 KB
Binary file not shown.

0 commit comments

Comments
 (0)