diff --git a/CHANGELOG b/CHANGELOG index 00b0e86..f776f37 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +1.1 + +gamemode_query_status function +'-r' (request) and '-s' (status) for gamemoded +User defined script plugins in the config file +User defined reaper thread frequency +Various code refactors and fixes +systemd status messages +release management scripts +inih moved to a git submodule + 1.0 Fixed and cleaned up README file diff --git a/README.md b/README.md index 166a6da..f5c0043 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,9 @@ pacman -S meson systemd git # Fedora dnf install meson systemd-devel pkg-config git -wget https://github.com/FeralInteractive/gamemode/archive/1.0.tar.gz && tar -xvf 1.0.tar.gz -cd gamemode-1.0 +git clone https://github.com/FeralInteractive/gamemode.git +cd gamemode +git checkout 1.1 ./bootstrap.sh ``` diff --git a/data/gamemoded.1 b/data/gamemoded.1 index 7483282..ca6a1b1 100644 --- a/data/gamemoded.1 +++ b/data/gamemoded.1 @@ -1,6 +1,6 @@ .\" Manpage for gamemoded. .\" Contact linux-contact@feralinteractive.com to correct errors or typos. -.TH gamemoded 1 "6 March 2018" "1.0" "gamemoded man page" +.TH gamemoded 1 "6 March 2018" "1.1" "gamemoded man page" .SH NAME gamemoded \- optimises system performance on demand .SH SYNOPSIS diff --git a/example/archlinux/gamemode-git/PKGBUILD b/example/archlinux/gamemode-git/PKGBUILD index 999ebd3..a71d696 100644 --- a/example/archlinux/gamemode-git/PKGBUILD +++ b/example/archlinux/gamemode-git/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Ysblokje pkgname=('gamemode-git') -pkgver=1.0 +pkgver=1.1 pkgrel=1 pkgdesc="GameMode is a daemon/lib combo for Linux that allows games to request a set of optimisations be temporarily applied to the host OS." arch=('x86_64') diff --git a/meson.build b/meson.build index 1680d7e..85194de 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project( 'gamemode', 'c', default_options : ['c_std=c11'], - version: '1.0', + version: '1.1', license: 'BSD', ) diff --git a/scripts/mkrelease.sh b/scripts/mkrelease.sh index 4b67658..4ea1e4c 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.0" +VERSION="1.1" NAME="gamemode" ./scripts/git-archive-all.sh --format tar --prefix ${NAME}-${VERSION}/ --verbose -t HEAD ${NAME}-${VERSION}.tar