-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Support for SpaceMouse Enterprise + button remapping table for these. - Fix crashes for devices reporting more than 32 buttons and 8 axes. - Add Github Workflows support
- Loading branch information
Showing
6 changed files
with
88 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
release: | ||
types: | ||
- created | ||
|
||
jobs: | ||
build-linux: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Check out repository code | ||
uses: "actions/checkout@v3" | ||
- name: Install dependencies | ||
if: matrix.os == 'ubuntu-latest' || matrix.os == 'debian-latest' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get -y install libsdl1.2-dev | ||
- name: Build | ||
run: | | ||
make |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
#define NDOFDEF_VERSION_H_ | ||
|
||
#define NDOFDEV_MAJOR 0 | ||
#define NDOFDEV_MINOR 13 | ||
#define NDOFDEV_MINOR 14 | ||
|
||
#endif |