2 Commits

Author SHA1 Message Date
klemek 489a08e102 fix: small fix in --help
Clang Lint CI / lint (push) Successful in 54s
Clang Build CI / run (push) Successful in 57s
Clang Build CI / build-release (push) Successful in 1m13s
2026-05-03 21:54:49 +02:00
klemek 4c8c587970 docs: update README 2026-05-03 21:44:30 +02:00
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -14,7 +14,7 @@ Written in pure C without librairies.
### From release
See [Releases](https://github.com/klemek/margen/releases)
See [Releases](https://git.klemek.fr/klemek/margen/releases)
```sh
tar xvzf margen-x.y.z.tar.gz
@@ -27,7 +27,7 @@ make install
### From repository (PKGBUILD)
```sh
git clone https://github.com/klemek/margen
git clone https://git.klemek.fr/klemek/margen
cd margen
makepkg -si
```
@@ -36,7 +36,7 @@ makepkg -si
### From repository (dev version)
```sh
git clone https://github.com/klemek/margen
git clone https://git.klemek.fr/klemek/margen
cd margen
aclocal
autoconf
+2 -2
View File
@@ -20,7 +20,7 @@ static void print_help(int status_code) {
"[-w=WIDTH] "
"[-h=HEIGHT] "
"[-o=PATH] "
"[--seed=SEED]"
"[--seed=SEED] "
"[-p=PIXEL_SIZE] "
"[-s=SLOPE] "
"[-c=R,G,B] "
@@ -228,4 +228,4 @@ Parameters args_parse(int argc, char **argv) {
}
return params;
}
}