summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimeon Simeonov2020-04-14 15:29:38 +0200
committerSimeon Simeonov2020-04-14 15:29:38 +0200
commitbebb9072ae8dd5467618403d8697701d9f58ce8b (patch)
tree05fbd9902ebc048c851fecc250687adf3e8cb781
parenteba48b7cec388325b237fd1b5a3c6d2e04deba12 (diff)
Fix documentation and release version typo
-rw-r--r--CHANGELOG2
-rw-r--r--I3LOCK_VERSION2
-rw-r--r--README.md60
-rw-r--r--configure.ac2
4 files changed, 59 insertions, 7 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 85615ab..21c9c4b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,3 @@
12020-03-19 i3lock-extended 1.2.12 12020-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
diff --git a/README.md b/README.md
index dec2154..7529f4c 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
1## i3lock-extended 1# i3lock-extended
2 2
3i3lock-extended is a fork of i3lock (https://github.com/i3/i3lock). 3i3lock-extended is a fork of i3lock (https://github.com/i3/i3lock).
4It was started by Simeon Simeonov (https://simeon.simeonov.no) as a small hack, 4It was started by Simeon Simeonov (sgs @ Freenode) as a small hack,
5implementing a LED-clock on top of an existing and robust screensaver. 5implementing a LED-clock on top of an existing and robust screensaver.
6 6
7i3lock-extended adds some additional functionality and is a free-software 7i3lock-extended adds some additional functionality and is a free-software
@@ -12,7 +12,7 @@ The original README.md file from i3lock, containing installation instructions
12can be found as INSTALL.md. 12can 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.
24Please refer to the manual page for more details and information about the different parameters\! 24Please refer to the manual page for more details and information about the different parameters\!
25 25
26 26
27### Versioning 27## Versioning
28 28
29i3lock-extended will merge the changes and fixes coming to i3lock in the 29i3lock-extended will merge the changes and fixes coming to i3lock in the
30future. 30future.
@@ -32,3 +32,55 @@ future.
32In order to create more clarity the version format for i3lock-extended will be: 32In 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
34extended revision if used]. 34extended 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
71i3lock-extended is hosted on GitHub: https://github.com/blackm0re/i3lock-extended
72
73
74## Author
75
76Simeon Simeonov - sgs @ Freenode
77
78
79## [License](https://github.com/blackm0re/i3lock-extended/blob/master/LICENSE)
80
81Copyright 2020 Simeon Simeonov
82
83Licensed under the GPLv3: http://www.gnu.org/licenses/gpl-3.0.html
84
85This software includes software copyrighted by Michael Stapelberg and
86distributed 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
4AC_PREREQ([2.69]) 4AC_PREREQ([2.69])
5AC_INIT([i3lock-extended], [1.2.12], [https://simeon.simeonov.no]) 5AC_INIT([i3lock-extended], [1.2.12.1], [https://simeon.simeonov.no])
6# For AX_EXTEND_SRCDIR 6# For AX_EXTEND_SRCDIR
7AX_ENABLE_BUILDDIR 7AX_ENABLE_BUILDDIR
8AM_INIT_AUTOMAKE([foreign subdir-objects -Wall no-dist-gzip dist-bzip2]) 8AM_INIT_AUTOMAKE([foreign subdir-objects -Wall no-dist-gzip dist-bzip2])