You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- finds git root and uses that as base dir
- prefers current directory for manifest search
- hopefully improved how some imports are done
- fix how manifest auto-selection failure is handled
- fix docs and cargo.toml
Copy file name to clipboardExpand all lines: README.md
+18-5Lines changed: 18 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,19 @@
1
1
# Flatplay
2
2
3
-
Early days.
3
+
Flatplay is a simple CLI tool to build and run Flatpak applications. It's designed to be easy to integrate into your workflows with editors like Zed or neovim.
4
+
5
+
Note that this is a **work in progress** and you might encounter issues along the way.
6
+
7
+
## External Dependencies
8
+
9
+
Flatplay relies on the following external commands to be available on your system:
10
+
11
+
-`git`
12
+
-`gdbus`
13
+
-`flatpak`
14
+
-`flatpak-builder`
15
+
16
+
## Installation & Usage
4
17
5
18
```bash
6
19
# Install into ~/.local/bin (or XDG_BIN_HOME)
@@ -57,7 +70,7 @@ Add the following tasks to your `tasks.json` file (you can open it with the `zed
57
70
}
58
71
```
59
72
60
-
Next, add new bindings to your `keymaps.json` file (you can open it with the `zed: open keypam` action):
73
+
Next, add new bindings to your `keymaps.json` file (you can open it with the `zed: open keymap` action):
61
74
62
75
```json
63
76
{
@@ -74,7 +87,7 @@ Then you can run any of the tasks by pressing `Alt-Shift-T`, or use `Ctrl-Alt-B`
74
87
75
88
# Some notes
76
89
77
-
- A lot of the code is almost directly borrowed from [`flatpak-vscode`](https://github.com/bilelmoussaoui/flatpak-vscode).
78
-
- Not all features are properly implemented yet. The focus so far has been just on getting something working to conveniently work on [Wordbook](https://github.com/mufeedali/Wordbook) while using anything that's not VS Code.
79
-
- I hope to improve it over time and I hope Bilal forgives me for the sins I've committed here.
90
+
- A lot of the logic is borrowed from [`flatpak-vscode`](https://github.com/bilelmoussaoui/flatpak-vscode).
91
+
- There will be bugs and missing features. Please report them, or better yet, send a PR.
80
92
- I'm not a Rust programmer.
93
+
- I hope to improve it over time and I hope Bilal forgives me for the sins I've committed here.
0 commit comments