diff options
| author | Simeon Simeonov | 2020-04-14 15:29:38 +0200 |
|---|---|---|
| committer | Simeon Simeonov | 2020-04-14 15:29:38 +0200 |
| commit | bebb9072ae8dd5467618403d8697701d9f58ce8b (patch) | |
| tree | 05fbd9902ebc048c851fecc250687adf3e8cb781 | |
| parent | eba48b7cec388325b237fd1b5a3c6d2e04deba12 (diff) | |
Fix documentation and release version typo
| -rw-r--r-- | CHANGELOG | 2 | ||||
| -rw-r--r-- | I3LOCK_VERSION | 2 | ||||
| -rw-r--r-- | README.md | 60 | ||||
| -rw-r--r-- | configure.ac | 2 |
4 files changed, 59 insertions, 7 deletions
| @@ -1,3 +1,3 @@ | |||
| 1 | 2020-03-19 i3lock-extended 1.2.12 | 1 | 2020-03-19 i3lock-extended 1.2.12.1 |
| 2 | 2 | ||
| 3 | • Initial import and functionality | 3 | • Initial import and functionality |
diff --git a/I3LOCK_VERSION b/I3LOCK_VERSION index f8f4f03..6205d7c 100644 --- a/I3LOCK_VERSION +++ b/I3LOCK_VERSION | |||
| @@ -1 +1 @@ | |||
| 1.12.1 | 1.2.12.1 | ||
| @@ -1,7 +1,7 @@ | |||
| 1 | ## i3lock-extended | 1 | # i3lock-extended |
| 2 | 2 | ||
| 3 | i3lock-extended is a fork of i3lock (https://github.com/i3/i3lock). | 3 | i3lock-extended is a fork of i3lock (https://github.com/i3/i3lock). |
| 4 | It was started by Simeon Simeonov (https://simeon.simeonov.no) as a small hack, | 4 | It was started by Simeon Simeonov (sgs @ Freenode) as a small hack, |
| 5 | implementing a LED-clock on top of an existing and robust screensaver. | 5 | implementing a LED-clock on top of an existing and robust screensaver. |
| 6 | 6 | ||
| 7 | i3lock-extended adds some additional functionality and is a free-software | 7 | i3lock-extended adds some additional functionality and is a free-software |
| @@ -12,7 +12,7 @@ The original README.md file from i3lock, containing installation instructions | |||
| 12 | can be found as INSTALL.md. | 12 | can be found as INSTALL.md. |
| 13 | 13 | ||
| 14 | 14 | ||
| 15 | ### Additional features | 15 | ## Additional features |
| 16 | 16 | ||
| 17 | - LED-clock | 17 | - LED-clock |
| 18 | - Digital clock | 18 | - Digital clock |
| @@ -24,7 +24,7 @@ i3lock-extended includes all of the original code and features of i3lock. | |||
| 24 | Please refer to the manual page for more details and information about the different parameters\! | 24 | Please refer to the manual page for more details and information about the different parameters\! |
| 25 | 25 | ||
| 26 | 26 | ||
| 27 | ### Versioning | 27 | ## Versioning |
| 28 | 28 | ||
| 29 | i3lock-extended will merge the changes and fixes coming to i3lock in the | 29 | i3lock-extended will merge the changes and fixes coming to i3lock in the |
| 30 | future. | 30 | future. |
| @@ -32,3 +32,55 @@ future. | |||
| 32 | In order to create more clarity the version format for i3lock-extended will be: | 32 | In order to create more clarity the version format for i3lock-extended will be: |
| 33 | \<extended version starting from 1>.\<i3lock version that is merged in\>[a-z | 33 | \<extended version starting from 1>.\<i3lock version that is merged in\>[a-z |
| 34 | extended revision if used]. | 34 | extended revision if used]. |
| 35 | |||
| 36 | |||
| 37 | ## Installation | ||
| 38 | |||
| 39 | ### Gentoo | ||
| 40 | |||
| 41 | ```bash | ||
| 42 | layman -a sgs | ||
| 43 | emerge x11-misc/i3lock-extended | ||
| 44 | ``` | ||
| 45 | |||
| 46 | |||
| 47 | ### From source | ||
| 48 | |||
| 49 | ```bash | ||
| 50 | wget https://simeon.simeonov.no/programs/i3lock_extended/downloads/i3lock-extended-\<version\>.tar.xz | ||
| 51 | tar Jxvf i3lock-extended-\<version\>.tar.xz && cd i3lock-extended-\<version\> | ||
| 52 | ./configure --prefix=/usr --sysconfdir=/etc --disable-sanitizers | ||
| 53 | make | ||
| 54 | # make install | ||
| 55 | ``` | ||
| 56 | |||
| 57 | |||
| 58 | ### From git | ||
| 59 | |||
| 60 | ```bash | ||
| 61 | git clone https://github.com/blackm0re/i3lock-extended.git && cd i3lock-extended | ||
| 62 | autoreconf --force --install | ||
| 63 | ./configure --prefix=/usr --sysconfdir=/etc --disable-sanitizers | ||
| 64 | make | ||
| 65 | # make install | ||
| 66 | ``` | ||
| 67 | |||
| 68 | |||
| 69 | ## Support and contributing | ||
| 70 | |||
| 71 | i3lock-extended is hosted on GitHub: https://github.com/blackm0re/i3lock-extended | ||
| 72 | |||
| 73 | |||
| 74 | ## Author | ||
| 75 | |||
| 76 | Simeon Simeonov - sgs @ Freenode | ||
| 77 | |||
| 78 | |||
| 79 | ## [License](https://github.com/blackm0re/i3lock-extended/blob/master/LICENSE) | ||
| 80 | |||
| 81 | Copyright 2020 Simeon Simeonov | ||
| 82 | |||
| 83 | Licensed under the GPLv3: http://www.gnu.org/licenses/gpl-3.0.html | ||
| 84 | |||
| 85 | This software includes software copyrighted by Michael Stapelberg and | ||
| 86 | distributed under a different license: See LICENSE for more information! | ||
diff --git a/configure.ac b/configure.ac index 5fe3e33..2646504 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | # Run autoreconf -fi to generate a configure script from this file. | 2 | # Run autoreconf -fi to generate a configure script from this file. |
| 3 | 3 | ||
| 4 | AC_PREREQ([2.69]) | 4 | AC_PREREQ([2.69]) |
| 5 | AC_INIT([i3lock-extended], [1.2.12], [https://simeon.simeonov.no]) | 5 | AC_INIT([i3lock-extended], [1.2.12.1], [https://simeon.simeonov.no]) |
| 6 | # For AX_EXTEND_SRCDIR | 6 | # For AX_EXTEND_SRCDIR |
| 7 | AX_ENABLE_BUILDDIR | 7 | AX_ENABLE_BUILDDIR |
| 8 | AM_INIT_AUTOMAKE([foreign subdir-objects -Wall no-dist-gzip dist-bzip2]) | 8 | AM_INIT_AUTOMAKE([foreign subdir-objects -Wall no-dist-gzip dist-bzip2]) |
