diff --git a/CHANGES.md b/CHANGES.md index 6c24811e..d012c704 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changes +### QDriverStation 17.01.1 + +- Fix issue in which joystick input was not detected + ### QDriverStation 17.01 - Transition to LibDS-C, which does not depend on Qt and is more efficient diff --git a/etc/deploy/linux/debian/changelog b/etc/deploy/linux/debian/changelog index aaa26890..ad172a6c 100644 --- a/etc/deploy/linux/debian/changelog +++ b/etc/deploy/linux/debian/changelog @@ -1,3 +1,9 @@ +qdriverstation (17.01.1) stable; urgency=low + + * Fix issue in which joystick input is not detected + + -- Alex Spataru Wen, 18 Jan 2017 01:00:00 +0100 + qdriverstation (17.01) stable; urgency=low * Switch to the new LibDS-C platform diff --git a/etc/deploy/linux/make_deb.sh b/etc/deploy/linux/make_deb.sh index 25be580d..97c0106b 100644 --- a/etc/deploy/linux/make_deb.sh +++ b/etc/deploy/linux/make_deb.sh @@ -2,7 +2,7 @@ # Variables license=mit -project="qdriverstation-17.01" +project="qdriverstation-17.01.1" authorEmail="alex_spataru@outlook.com" # Remove old build (if found) diff --git a/etc/deploy/linux/snapcraft/snapcraft.yaml b/etc/deploy/linux/snapcraft/snapcraft.yaml index 0fa05326..4b7c9bc5 100644 --- a/etc/deploy/linux/snapcraft/snapcraft.yaml +++ b/etc/deploy/linux/snapcraft/snapcraft.yaml @@ -1,5 +1,5 @@ name: qdriverstation -version: 17.01 +version: 17.01.1 summary: Open source clone of the FRC Driver Station description: | The QDriverStation is a cross-platform and open-source alternative to the FRC Driver Station. diff --git a/src/versions.h b/src/versions.h index 9ac5f7b9..41794df0 100644 --- a/src/versions.h +++ b/src/versions.h @@ -26,7 +26,7 @@ #include // *INDENT-OFF* -static const QString APP_VERSION = "17.01"; +static const QString APP_VERSION = "17.01.1"; static const QString APP_COMPANY = "FRC Utilities"; static const QString APP_DSPNAME = "QDriverStation"; static const QString CONTACT_URL = "alex_spataru@outlook.com";