Skip to content

Commit

Permalink
Update in docs for v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciej Lechowski committed May 25, 2020
1 parent 1624b19 commit 80f923e
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 16 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
xstarter change log

0.8.1
25/05/2020
* Make xstarter compile with gcc 10
* Fix buggy item highlighting
* Improve build script

0.8.0
27/08/2018
* Add -e option: execute an application and detach it from terminal
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ endif()

set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/../cmake")

set(PROJECT_VERSION "0.8.0")
set(PROJECT_VERSION "0.8.1")
if (CMAKE_BUILD_TYPE STREQUAL Debug)
set(CMAKE_C_FLAGS "-g -Wall -pedantic")
else()
Expand Down
16 changes: 6 additions & 10 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,23 @@

## Arch Linux (AUR)

You can use yaourt or similar:

`yaourt -S xstarter`

Alternatively, you can install it manually:
Use AUR to install it:

`git clone https://aur.archlinux.org/xstarter.git`

`cd xstarter && makepkg -is`

For more information, see https://aur.archlinux.org/packages/xstarter/
See xstarter in Arch Linux AUR: https://aur.archlinux.org/packages/xstarter/

## DEB package

Download `.deb` package
Download `.deb` package from https://github.com/lchsk/xstarter/releases

`apt install -f xstarter-*.deb`

## RPM package

Download `.rpm` package
Download `.rpm` package from https://github.com/lchsk/xstarter/releases

`dnf install xstarter-*.rpm`

Expand All @@ -40,8 +36,8 @@ In order to compile it, you need development versions of the following libraries

## Using archives

Download `.tar.gz` or `.zip` archive
Download `.tar.gz` or `.zip` archive from https://github.com/lchsk/xstarter/releases

Extract it

Run `./bin/xstarter` to open the application in the terminal. You can manually copy it to a directory included in your $PATH.
Run `./bin/xstarter` to open the application in the terminal. You can manually copy it to a directory included in your `$PATH`.
4 changes: 2 additions & 2 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Maciej Lechowski <[email protected]>
pkgname=xstarter
pkgver=0.8.0
pkgver=0.8.1
_gitname=xstarter
pkgrel=1
epoch=
Expand All @@ -20,7 +20,7 @@ backup=()
options=()
install=
changelog=
source=(https://github.com/lchsk/xstarter/releases/download/v0.8.0/xstarter-0.8.0-Linux.tar.gz)
source=(https://github.com/lchsk/xstarter/releases/download/v0.8.1/xstarter-0.8.1-Linux.tar.gz)
noextract=()
md5sums=(2ddeb05f8591ba7f204c46f7d5df0225)
validpgpkeys=()
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

It lives in terminal and works well with tiling window managers (e.g. xmonad, i3 etc).

Current version: 0.8.0
Current version: 0.8.1

| Branch | Build |
| --- | --- |
Expand Down
2 changes: 1 addition & 1 deletion src/settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define CONFIG_FILE "xstarter.conf"

#define PROGRAM_NAME "xstarter"
#define XSTARTER_VERSION "0.8.0"
#define XSTARTER_VERSION "0.8.1"

typedef struct {
bool verbose;
Expand Down
2 changes: 1 addition & 1 deletion xstarter.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" Manpage for xstarter.
.TH xstarter 1 "27 August 2018" "0.8.0" "xstarter man page"
.TH xstarter 1 "25 May 2020" "0.8.1" "xstarter man page"
.SH NAME
xstarter \- application launcher
.SH SYNOPSIS
Expand Down

0 comments on commit 80f923e

Please sign in to comment.