mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-07 16:17:23 +02:00
Update to 1.1 ready for release
This commit is contained in:
parent
eac854b753
commit
fb2f3c628a
11
CHANGELOG
11
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
|
1.0
|
||||||
|
|
||||||
Fixed and cleaned up README file
|
Fixed and cleaned up README file
|
||||||
|
@ -22,8 +22,9 @@ pacman -S meson systemd git
|
|||||||
# Fedora
|
# Fedora
|
||||||
dnf install meson systemd-devel pkg-config git
|
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
|
git clone https://github.com/FeralInteractive/gamemode.git
|
||||||
cd gamemode-1.0
|
cd gamemode
|
||||||
|
git checkout 1.1
|
||||||
./bootstrap.sh
|
./bootstrap.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.\" Manpage for gamemoded.
|
.\" Manpage for gamemoded.
|
||||||
.\" Contact linux-contact@feralinteractive.com to correct errors or typos.
|
.\" 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
|
.SH NAME
|
||||||
gamemoded \- optimises system performance on demand
|
gamemoded \- optimises system performance on demand
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Maintainer: Ysblokje <ysblokje at gmail dot com>
|
# Maintainer: Ysblokje <ysblokje at gmail dot com>
|
||||||
pkgname=('gamemode-git')
|
pkgname=('gamemode-git')
|
||||||
pkgver=1.0
|
pkgver=1.1
|
||||||
pkgrel=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."
|
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')
|
arch=('x86_64')
|
||||||
|
@ -2,7 +2,7 @@ project(
|
|||||||
'gamemode',
|
'gamemode',
|
||||||
'c',
|
'c',
|
||||||
default_options : ['c_std=c11'],
|
default_options : ['c_std=c11'],
|
||||||
version: '1.0',
|
version: '1.1',
|
||||||
license: 'BSD',
|
license: 'BSD',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ git submodule init
|
|||||||
git submodule update
|
git submodule update
|
||||||
|
|
||||||
# Bump in tandem with meson.build, run script once new tag is up.
|
# Bump in tandem with meson.build, run script once new tag is up.
|
||||||
VERSION="1.0"
|
VERSION="1.1"
|
||||||
|
|
||||||
NAME="gamemode"
|
NAME="gamemode"
|
||||||
./scripts/git-archive-all.sh --format tar --prefix ${NAME}-${VERSION}/ --verbose -t HEAD ${NAME}-${VERSION}.tar
|
./scripts/git-archive-all.sh --format tar --prefix ${NAME}-${VERSION}/ --verbose -t HEAD ${NAME}-${VERSION}.tar
|
||||||
|
Loading…
x
Reference in New Issue
Block a user