Skip to content

Commit 0f2ac71

Browse files
authored
Merge branch 'main' into test
2 parents ec5c493 + aae12b2 commit 0f2ac71

File tree

3 files changed

+36
-43
lines changed

3 files changed

+36
-43
lines changed

.github/workflows/update-download-badges.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ jobs:
8787
curl -s -X PATCH "https://api.github.com/gists/$GIST_ID" \
8888
-H "Authorization: token $GIST_TOKEN" \
8989
-d "{\"files\": { \"$FILENAME\": { \"content\": $ESCAPED_CONTENT }}}"
90-
done
90+
done

LATEST_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
beta-1.55
1+
beta-1.69

README.md

Lines changed: 34 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,17 @@
44
<p align="center">A simple graphical frontend to easily install, update, and manage AppImages and other portable formats on Linux, powered by <a href="https://github.com/ivan-hc/AM">AM</a>.</p>
55

66
[![GitHub Downloads](https://img.shields.io/github/downloads/Shikakiben/AM-GUI/total?logo=github&label=GitHub%20Downloads)](https://github.com/Shikakiben/AM-GUI/releases/latest)
7-
[![AppImage badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/Shikakiben/1a767d8eb615ae6cb497fe90ce0076bb/raw/appimage.json)
8-
[![zsync badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/Shikakiben/1a767d8eb615ae6cb497fe90ce0076bb/raw/zsync.json)
7+
![AppImage badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/Shikakiben/1a767d8eb615ae6cb497fe90ce0076bb/raw/appimage.json)
8+
![zsync badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/Shikakiben/1a767d8eb615ae6cb497fe90ce0076bb/raw/zsync.json)
99
[![CI Build Status](https://github.com//Shikakiben/AM-GUI/actions/workflows/appimage.yml/badge.svg)](https://github.com/Shikakiben/AM-GUI/releases/latest)
10-
11-
<br>
1210

13-
<img src="screenshots/light.png" width="800"/>
11+
<p></p><img src="screenshots/light.png" width="800"/><p></p>
1412

1513
</div>
16-
<br>
17-
<br>
18-
<br>
19-
2014

2115
* [Latest Release](https://github.com/Shikakiben/AM-GUI/releases/latest) (AppImage — Beta)
2216

23-
**This AppImage bundles everything and should work on any linux distro, even on musl based ones.**
17+
**This AppImage bundles everything, and should work on any linux distro, even on musl based ones.**
2418

2519
Thanks to [Samueru-sama](https://github.com/Samueru-sama) and [fiftydinar](https://github.com/fiftydinar) for making AppImage builds quicker and easier with this [TEMPLATE](https://github.com/pkgforge-dev/TEMPLATE-AppImage) using the [Anylinux-AppImages](https://github.com/pkgforge-dev/Anylinux-AppImages) tools.
2620

@@ -30,69 +24,68 @@ If you already have [AM](https://github.com/ivan-hc/AM): use `am -i am-gui` or `
3024

3125
If not, download the [Latest Release](https://github.com/Shikakiben/AM-GUI/releases/latest) and follow the installation steps.
3226
To integrate AM-GUI into your system, reinstall it via the app (search "am-gui") and you may remove the downloaded release afterward.
33-
<br>
34-
<br>
3527

3628
---
3729

3830
⚠️ **This project is under development — some features may be incomplete or may not work.**
3931

4032
Please don't hesitate to report issues [here](https://github.com/Shikakiben/AM-GUI/issues) — your feedback is very helpful!
4133

42-
**All credit goes to [Ivan](https://github.com/ivan-hc) for his amazing work! I only handle the GUI, learning how to properly yell at GPT-4.1 to make sure that little f$@¤=# doesn't mess too much with the code.**
43-
44-
---
34+
**All credit goes to [Ivan](https://github.com/ivan-hc) for his amazing work! I only handle the GUI, learning how to properly yell at GPT-4.1 to make sure that little f$@¤=# doesn't mess too much with the code.**
4535

36+
---
4637

4738
## Development installation
4839

49-
- Requirements:
40+
1. #### Requirements
5041

51-
[Node.js](https://nodejs.org/) (>=20, 22 recommended)
42+
[Node.js](https://nodejs.org/) (20, 22 recommended)
5243

53-
If it's not available in your package manager, see: https://nodejs.org/en/download
44+
If it's not available in your package manager, see: https://nodejs.org/en/download
5445

55-
You may also need to install the following build tools:
46+
You may also need to install the following build tools:
5647

57-
*Debian/Ubuntu*:
58-
```bash
59-
sudo apt install build-essential python3 make gcc g++
60-
```
61-
*Fedora*:
62-
```bash
63-
sudo dnf install @development-tools python3
64-
```
48+
- #### Debian/Ubuntu
6549

50+
```sh
51+
#!/usr/bin/env bash
52+
sudo apt install build-essential python3 make gcc g++
53+
```
6654

67-
- Clone the repository and install:
55+
- #### Fedora
6856

69-
```bash
70-
git clone https://github.com/Shikakiben/AM-GUI.git
71-
cd AM-GUI
72-
npm install
73-
npx electron-rebuild
74-
```
57+
```sh
58+
#!/usr/bin/env bash
59+
sudo dnf install @development-tools python3
60+
```
7561

62+
1. Clone the repository and install:
7663

77-
- Launch the app:
64+
```sh
65+
#!/usr/bin/env bash
66+
git clone https://github.com/Shikakiben/AM-GUI.git
67+
cd AM-GUI
68+
npm install
69+
npx electron-rebuild
70+
```
7871

79-
```bash
80-
npm start
81-
```
72+
1. Launch the app:
8273

74+
```sh
75+
#!/usr/bin/env bash
76+
npm start
77+
```
8378

8479
---
8580

86-
8781
## Acknowledgements
8882

8983
Thanks to [Ivan](https://github.com/ivan-hc), [Samueru-sama](https://github.com/Samueru-sama) and all the [pkgforge community](https://github.com/pkgforge-dev) for their outstanding work building, managing and distributing AppImages and other portable formats on Linux.
9084

91-
9285
---
9386

9487
## License
9588

9689
This project is licensed under the **GNU General Public License v3.0 (GPLv3)**.
9790

98-
See the LICENSE file for details.
91+
See the `LICENSE` file for details.

0 commit comments

Comments
 (0)