diff --git a/CMakeLists.txt b/CMakeLists.txt index b63f509..cb86651 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/README.md b/README.md index 7182a70..9a09d7c 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/src/cli.c b/src/cli.c index 98b2626..fa35211 100644 --- a/src/cli.c +++ b/src/cli.c @@ -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);