docs: prepare for 0.1.2-dev release

This commit is contained in:
Masahiko AMANO 2022-12-26 11:56:00 +03:00
parent 4f57a32c77
commit 7c773a7398
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.23)
project(tanabata
VERSION 0.1.1
VERSION 0.1.2
HOMEPAGE_URL https://github.com/H1K0/tanabata
LANGUAGES C)

View File

@ -34,7 +34,7 @@ Tanabata FM is a file manager for Linux that will let you enjoy the Tanabata fes
## Usage
First of all, compile the source code or just download [this executable file](https://github.com/H1K0/tanabata/releases/download/v0.1.1-dev/tfm). For better experience, move the executable to the `/usr/bin` directory (totally safe unless you have another app named `tfm`) or add the directory with it to `PATH`.
First of all, compile the source code or just download [this executable file](https://github.com/H1K0/tanabata/releases/download/v0.1.2-dev/tfm). For better experience, move the executable to the `/usr/bin` directory (totally safe unless you have another app named `tfm`) or add the directory with it to `PATH`.
Then just open the terminal and run `tfm -h`. If you are running it for the first time, run it with `sudo` or manually create the `/etc/tfm` directory and check its permissions. This is the directory where TFM stores its config file. If everything is set up properly, you should get the following.

View File

@ -321,7 +321,7 @@ int cli(int argc, char **argv) {
}
return 0;
case 'V':
printf("0.1.1-dev\n");
printf("0.1.2-dev\n");
return 0;
case 'I':
abspath = realpath(optarg, abspath);