Skip to content

Commit

Permalink
fixes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
vvvrrooomm committed Jan 6, 2021
1 parent b55ac8f commit a7c282b
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.9.0+z2
current_version = 2.9.0

[bumpversion:file:pylib/openrazer/client/__init__.py]

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ MODULEDIR?=/lib/modules/$(shell uname -r)/kernel/drivers/hid
PYTHONDIR?=$(shell python3 -c 'import sys; print(sys.path[-1])')

DKMS_NAME?=openrazer-driver
DKMS_VER?=2.9.0+z2
DKMS_VER?=2.9.0


# Build all target
Expand Down
2 changes: 1 addition & 1 deletion daemon/openrazer_daemon/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This class is the main core of the daemon, this serves a basic dbus module to control the main bit of the daemon
"""
__version__ = '2.9.0+z2'
__version__ = '2.9.0'

import configparser
import logging
Expand Down
2 changes: 1 addition & 1 deletion daemon/openrazer_daemon/hardware/keyboards.py
Original file line number Diff line number Diff line change
Expand Up @@ -1137,7 +1137,7 @@ class RazerBladeEarly2020Base(_RippleKeyboard):
HAS_MATRIX = True
MATRIX_DIMS = [1, 16]
METHODS = ['get_device_type_keyboard', 'set_fan_speed', 'set_fan_mode', 'get_fan_speed', 'get_fan_mode', 'set_wave_effect', 'set_static_effect',
'set_reactive_effect', 'set_none_effect', 'set_breath_random_effect', 'set_breath_single_effect',
'set_spectrum_effect', 'set_reactive_effect', 'set_none_effect', 'set_breath_random_effect', 'set_breath_single_effect',
'set_breath_dual_effect', 'set_custom_effect', 'set_key_row',
'set_starlight_random_effect', 'set_starlight_single_effect', 'set_starlight_dual_effect',
'set_ripple_effect', 'set_ripple_effect_random_colour']
Expand Down
2 changes: 1 addition & 1 deletion daemon/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

setup(
name="openrazer_daemon",
version="2.9.0+z2",
version="2.9.0",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
)
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
openrazer (2.9.0+z2) bionic; urgency=high
openrazer (2.9.0) bionic; urgency=high

* local version

Expand Down
2 changes: 1 addition & 1 deletion driver/razercommon.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#include <linux/usb/input.h>

#define DRIVER_VERSION "2.9.0+z2"
#define DRIVER_VERSION "2.9.0"
#define DRIVER_LICENSE "GPL v2"
#define DRIVER_AUTHOR "Terry Cain <terry@terrys-home.co.uk>"

Expand Down
2 changes: 1 addition & 1 deletion install_files/dkms/dkms.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE_NAME="openrazer-driver"
PACKAGE_VERSION="2.9.0+z2"
PACKAGE_VERSION="2.9.0"
AUTOINSTALL="yes"
MAKE="KERNELDIR=/lib/modules/${kernelver}/build make driver"

Expand Down
2 changes: 1 addition & 1 deletion pylib/openrazer/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from openrazer.client.device import RazerDeviceFactory as _RazerDeviceFactory
from openrazer.client import constants

__version__ = '2.9.0+z2'
__version__ = '2.9.0'


class DaemonNotFound(Exception):
Expand Down
2 changes: 1 addition & 1 deletion pylib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="openrazer",
version="2.9.0+z2",
version="2.9.0",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
extras_require={
"dev": [
Expand Down

0 comments on commit a7c282b

Please sign in to comment.