From ea7d1c13a365d17affe33117e439ed99738d0cdd Mon Sep 17 00:00:00 2001 From: Alex Smith Date: Fri, 15 Mar 2019 13:39:00 +0000 Subject: [PATCH] Update to version 1.3 --- README.md | 6 +++--- data/gamemoded.8.in | 2 +- meson.build | 2 +- scripts/mkrelease.sh | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5904147..df11e35 100644 --- a/README.md +++ b/README.md @@ -44,12 +44,12 @@ ACCEPT_KEYWORDS="**" emerge --ask ~games-util/gamemode-9999 ``` ### Build and Install GameMode -Then clone, build and install a release version of GameMode at 1.2: +Then clone, build and install a release version of GameMode at 1.3: ```bash git clone https://github.com/FeralInteractive/gamemode.git cd gamemode -git checkout 1.2 # omit to build the master branch +git checkout 1.3 # omit to build the master branch ./bootstrap.sh ``` @@ -72,7 +72,7 @@ Or edit the Steam launch options: gamemoderun %command% ``` -Note: for older versions of GameMode (1.2) use this string in place of `gamemoderun`: +Note: for older versions of GameMode (before 1.3) use this string in place of `gamemoderun`: ``` LD_PRELOAD="$LD_PRELOAD:/usr/\$LIB/libgamemodeauto.so.0" ``` diff --git a/data/gamemoded.8.in b/data/gamemoded.8.in index 511462b..424202e 100644 --- a/data/gamemoded.8.in +++ b/data/gamemoded.8.in @@ -1,6 +1,6 @@ .\" Manpage for gamemoded. .\" Contact linux-contact@feralinteractive.com to correct errors or typos. -.TH gamemoded 8 "21 July 2018" "1.3-dev" "gamemoded man page" +.TH gamemoded 8 "15 March 2019" "1.3" "gamemoded man page" .SH NAME gamemoded \- optimises system performance on demand .SH SYNOPSIS diff --git a/meson.build b/meson.build index 86caf06..aa04493 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project( 'gamemode', 'c', default_options : ['c_std=c11', 'warning_level=3'], - version: '1.3-dev', + version: '1.3', license: 'BSD', ) diff --git a/scripts/mkrelease.sh b/scripts/mkrelease.sh index b872fef..5a12a31 100755 --- a/scripts/mkrelease.sh +++ b/scripts/mkrelease.sh @@ -11,7 +11,7 @@ git submodule init git submodule update # Bump in tandem with meson.build, run script once new tag is up. -VERSION="1.3-dev" +VERSION="1.3" NAME="gamemode" ./scripts/git-archive-all.sh --format tar --prefix ${NAME}-${VERSION}/ --verbose -t HEAD ${NAME}-${VERSION}.tar