Skip to content

Commit

Permalink
updated readme, manifest permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Sep 30, 2021
1 parent 3d7c18c commit 34d1089
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 15 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ My motivation for this project is to create a simple but functional note taking
One main consideration is that it is vector based, which should make it very flexible in editing and altering the contents.

**Disclaimer**
This is my first Rust and GTK project and I am learning as I go along. Expect bugs and crashes. It also could blow up your computer. ;)
This is my first Rust and GTK project and I am learning as I go along. Its not unlikely to blow up your computer. ;)

## Feature Ideas:
* Stroke history list widget
Expand All @@ -22,12 +22,13 @@ This is my first Rust and GTK project and I am learning as I go along. Expect bu
## To-Do
- [x] Switch geometry to [nalgebra](https://crates.io/crates/nalgebra) wherever possible. It can operate on f64 and has much more features than graphene.
- [ ] Template deduplication when loading in .rnote save files.
- [ ] PDF Import, Export and printing option
- [ ] PNG Import, Export
- [x] ~~PDF Import~~, PDF Export and printing option
- [x] Picture import
- [] Picture export
- [ ] Implement bezier curve stroke with variable stroke width (see this paper: [Quadratic bezier offsetting with selective subdivision](https://microbians.com/math/Gabriel_Suchowolski_Quadratic_bezier_offsetting_with_selective_subdivision.pdf))

## Screenshots
Rnote is a very early WIP project, so don't expect too much. :)
Rnote is a WIP project, so don't expect too much. :)

![2021-08-10-rnote.jpg](./resources/screenshots/main-window.png)

Expand Down
34 changes: 23 additions & 11 deletions build-aux/com.github.flxzt.rnote.Devel.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"--socket=session-bus",
"--device=dri",
"--share=ipc",
"--share=network",
"--filesystem=home",
"--filesystem=xdg-run/gvfsd",
"--filesystem=xdg-config",
"--env=RUST_BACKTRACE=1",
"--env=RUST_LOG=rnote=trace",
"--env=G_MESSAGES_DEBUG=all"
"--env=G_MESSAGES_DEBUG=all",
"--log-system-bus",
"--log-session-bus"
],
"build-options": {
"append-path": "/usr/lib/sdk/rust-stable/bin",
Expand All @@ -37,23 +37,35 @@
"modules": [
{
"name": "libsass",
"buildsystem": "meson",
"sources": [
{
"type": "git",
"url": "https://github.com/lazka/libsass.git",
"branch": "meson"
"type": "archive",
"url": "https://github.com/sass/libsass/archive/3.6.4.tar.gz",
"sha256": "f9484d9a6df60576e791566eab2f757a97fd414fce01dd41fc0a693ea5db2889"
},
{
"type": "script",
"dest-filename": "autogen.sh",
"commands": [
"autoreconf -si"
]
}
]
},
{
"name": "sassc",
"buildsystem": "meson",
"sources": [
{
"type": "git",
"url": "https://github.com/lazka/sassc.git",
"branch": "meson"
"type": "archive",
"url": "https://github.com/sass/sassc/archive/3.6.1.tar.gz",
"sha256": "8cee391c49a102b4464f86fc40c4ceac3a2ada52a89c4c933d8348e3e4542a60"
},
{
"type": "script",
"dest-filename": "autogen.sh",
"commands": [
"autoreconf -si"
]
}
]
},
Expand Down

0 comments on commit 34d1089

Please sign in to comment.