Compare commits

...

4 Commits

Author SHA1 Message Date
Laurent Demailly
31112da2a8
Merge 0b6cd75057 into b93f6ca661 2024-09-02 16:48:20 +02:00
vcaesar
b93f6ca661 Update: update CI and go mod 2024-08-26 16:42:12 -07:00
Laurent Demailly
0b6cd75057
Merge pull request #1 from ldemailly/ldemailly-patch-1
Correct order to match underlying one

Fixes  robotn#32
2022-02-06 01:40:05 -08:00
Laurent Demailly
0e2b0dd006
Correct order to match underlying one
Fixes #32 (maybe, need to test)
2022-02-06 01:26:39 -08:00
5 changed files with 8 additions and 8 deletions

View File

@ -10,10 +10,10 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- name: Set up Go 1.22.0 - name: Set up Go 1.23.0
uses: actions/setup-go@v1 uses: actions/setup-go@v1
with: with:
go-version: 1.22.0 go-version: 1.23.0
id: go id: go
- name: Check out code into the Go module directory - name: Check out code into the Go module directory

View File

@ -34,7 +34,7 @@ environment:
PATH: C:\msys64\mingw32\bin\;C:\Program Files (x86)\NSIS\;%PATH% PATH: C:\msys64\mingw32\bin\;C:\Program Files (x86)\NSIS\;%PATH%
# - COMPILER: MINGW_W64 # - COMPILER: MINGW_W64
# ARCHITECTURE: x64 # ARCHITECTURE: x64
GOVERSION: 1.22.0 GOVERSION: 1.23.0
# GOPATH: c:\gopath # GOPATH: c:\gopath
# scripts that run after cloning repository # scripts that run after cloning repository

2
go.mod
View File

@ -4,5 +4,5 @@ go 1.17
require ( require (
github.com/vcaesar/keycode v0.10.1 github.com/vcaesar/keycode v0.10.1
github.com/vcaesar/tt v0.20.0 github.com/vcaesar/tt v0.20.1
) )

4
go.sum
View File

@ -1,4 +1,4 @@
github.com/vcaesar/keycode v0.10.1 h1:0DesGmMAPWpYTCYddOFiCMKCDKgNnwiQa2QXindVUHw= github.com/vcaesar/keycode v0.10.1 h1:0DesGmMAPWpYTCYddOFiCMKCDKgNnwiQa2QXindVUHw=
github.com/vcaesar/keycode v0.10.1/go.mod h1:JNlY7xbKsh+LAGfY2j4M3znVrGEm5W1R8s/Uv6BJcfQ= github.com/vcaesar/keycode v0.10.1/go.mod h1:JNlY7xbKsh+LAGfY2j4M3znVrGEm5W1R8s/Uv6BJcfQ=
github.com/vcaesar/tt v0.20.0 h1:9t2Ycb9RNHcP0WgQgIaRKJBB+FrRdejuaL6uWIHuoBA= github.com/vcaesar/tt v0.20.1 h1:D/jUeeVCNbq3ad8M7hhtB3J9x5RZ6I1n1eZ0BJp7M+4=
github.com/vcaesar/tt v0.20.0/go.mod h1:GHPxQYhn+7OgKakRusH7KJ0M5MhywoeLb8Fcffs/Gtg= github.com/vcaesar/tt v0.20.1/go.mod h1:cH2+AwGAJm19Wa6xvEa+0r+sXDJBT0QgNQey6mwqLeU=

View File

@ -60,9 +60,9 @@ typedef enum _event_type {
EVENT_KEY_TYPED, EVENT_KEY_TYPED,
EVENT_KEY_PRESSED, EVENT_KEY_PRESSED,
EVENT_KEY_RELEASED, EVENT_KEY_RELEASED,
EVENT_MOUSE_CLICKED,
EVENT_MOUSE_PRESSED,
EVENT_MOUSE_RELEASED, EVENT_MOUSE_RELEASED,
EVENT_MOUSE_PRESSED,
EVENT_MOUSE_CLICKED,
EVENT_MOUSE_MOVED, EVENT_MOUSE_MOVED,
EVENT_MOUSE_DRAGGED, EVENT_MOUSE_DRAGGED,
EVENT_MOUSE_WHEEL EVENT_MOUSE_WHEEL