Skip to content

Commit 34d1089

Browse files
committed
updated readme, manifest permissions
1 parent 3d7c18c commit 34d1089

File tree

2 files changed

+28
-15
lines changed

2 files changed

+28
-15
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ My motivation for this project is to create a simple but functional note taking
1010
One main consideration is that it is vector based, which should make it very flexible in editing and altering the contents.
1111

1212
**Disclaimer**
13-
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. ;)
13+
This is my first Rust and GTK project and I am learning as I go along. Its not unlikely to blow up your computer. ;)
1414

1515
## Feature Ideas:
1616
* Stroke history list widget
@@ -22,12 +22,13 @@ This is my first Rust and GTK project and I am learning as I go along. Expect bu
2222
## To-Do
2323
- [x] Switch geometry to [nalgebra](https://crates.io/crates/nalgebra) wherever possible. It can operate on f64 and has much more features than graphene.
2424
- [ ] Template deduplication when loading in .rnote save files.
25-
- [ ] PDF Import, Export and printing option
26-
- [ ] PNG Import, Export
25+
- [x] ~~PDF Import~~, PDF Export and printing option
26+
- [x] Picture import
27+
- [] Picture export
2728
- [ ] 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))
2829

2930
## Screenshots
30-
Rnote is a very early WIP project, so don't expect too much. :)
31+
Rnote is a WIP project, so don't expect too much. :)
3132

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

build-aux/com.github.flxzt.rnote.Devel.json

+23-11
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
"--socket=session-bus",
1717
"--device=dri",
1818
"--share=ipc",
19-
"--share=network",
20-
"--filesystem=home",
2119
"--filesystem=xdg-run/gvfsd",
2220
"--filesystem=xdg-config",
2321
"--env=RUST_BACKTRACE=1",
2422
"--env=RUST_LOG=rnote=trace",
25-
"--env=G_MESSAGES_DEBUG=all"
23+
"--env=G_MESSAGES_DEBUG=all",
24+
"--log-system-bus",
25+
"--log-session-bus"
2626
],
2727
"build-options": {
2828
"append-path": "/usr/lib/sdk/rust-stable/bin",
@@ -37,23 +37,35 @@
3737
"modules": [
3838
{
3939
"name": "libsass",
40-
"buildsystem": "meson",
4140
"sources": [
4241
{
43-
"type": "git",
44-
"url": "https://github.com/lazka/libsass.git",
45-
"branch": "meson"
42+
"type": "archive",
43+
"url": "https://github.com/sass/libsass/archive/3.6.4.tar.gz",
44+
"sha256": "f9484d9a6df60576e791566eab2f757a97fd414fce01dd41fc0a693ea5db2889"
45+
},
46+
{
47+
"type": "script",
48+
"dest-filename": "autogen.sh",
49+
"commands": [
50+
"autoreconf -si"
51+
]
4652
}
4753
]
4854
},
4955
{
5056
"name": "sassc",
51-
"buildsystem": "meson",
5257
"sources": [
5358
{
54-
"type": "git",
55-
"url": "https://github.com/lazka/sassc.git",
56-
"branch": "meson"
59+
"type": "archive",
60+
"url": "https://github.com/sass/sassc/archive/3.6.1.tar.gz",
61+
"sha256": "8cee391c49a102b4464f86fc40c4ceac3a2ada52a89c4c933d8348e3e4542a60"
62+
},
63+
{
64+
"type": "script",
65+
"dest-filename": "autogen.sh",
66+
"commands": [
67+
"autoreconf -si"
68+
]
5769
}
5870
]
5971
},

0 commit comments

Comments
 (0)