Skip to content

Commit 0121765

Browse files
committed
Update documentation on the state of the project, etc...
- Create mdbook for the project, add documentation generation to the CI - Change repo name to `flatpak-ext` - Update author email to -.dev variant
1 parent 8a6376c commit 0121765

File tree

9 files changed

+54
-36
lines changed

9 files changed

+54
-36
lines changed

.github/workflows/docs.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: github pages
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-20.04
12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
steps:
15+
- uses: actions/checkout@v2
16+
17+
- name: Setup mdBook
18+
uses: peaceiris/actions-mdbook@v2
19+
with:
20+
mdbook-version: '0.4.10'
21+
# mdbook-version: 'latest'
22+
23+
- run: mdbook build docs
24+
25+
- name: Deploy
26+
uses: peaceiris/actions-gh-pages@v3
27+
if: ${{ github.ref == 'refs/heads/main' }}
28+
with:
29+
github_token: ${{ secrets.GITHUB_TOKEN }}
30+
publish_dir: ./docs/book

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "flatpak-ext"
33
version = "0.2.0"
44
edition = "2021"
5-
authors = ["Ryan Brue <[email protected]>"]
5+
authors = ["Ryan Brue <ryanbrue.dev@gmail.com>"]
66
readme = "README.md"
7-
homepage = "https://ryanabx.github.io/flatrun"
8-
repository = "https://github.com/ryanabx/flatrun"
7+
homepage = "https://linux-packaging-rs.github.io/flatpak-ext"
8+
repository = "https://github.com/linux-packaging-rs/flatpak-ext"
99
license = "MIT"
1010

1111
[lib]

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
| | |
2-
| --- | --- |
3-
| <img src="flatpak-ext.svg" alt="drawing" width="64"/> | <h2>Flatpak-ext: Tools to extend flatpak </h2> |
4-
51
Flatpak-ext is a binary that allows you to do extra things with flatpak, including:
62

3+
> **NOTE (2024/09/16):** This project is currently being revived, which will take some time! I've learned a lot about rust since starting this project and I hope to clean it up a lot and add more features and better documentation.
4+
75
* Running flatpaks without installing them **[Implemented]**
86
* More functionality coming soon!
97

docs/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
book

docs/book.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[book]
2+
authors = ["Ryan Brue"]
3+
language = "en"
4+
multilingual = false
5+
src = "src"
6+
title = "flatpak-ext: Extended tools for Flatpak!"

docs/index.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

docs/src/SUMMARY.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Summary
2+
3+
- [Introduction](./index.md)
4+
5+
# Commands
6+
7+
- [flatpak-ext run](./flatpak-ext-run.md)
File renamed without changes.

docs/src/index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# flatpak-ext
2+
3+
https://github.com/linux-packaging-rs/flatpak-ext
4+
5+
> **NOTE (2024/09/16):** This project is currently being revived, which will take some time! I've learned a lot about rust since starting this project and I hope to clean it up a lot and add more features and better documentation.

0 commit comments

Comments
 (0)