Skip to content

Commit

Permalink
fixed calibration points selection
Browse files Browse the repository at this point in the history
added automatic build
  • Loading branch information
krjw-eyev committed Nov 11, 2022
1 parent 6eeaebf commit 66ea059
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 35 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/github-actions-release-android.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Release Android app

on:
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]
push:
branches: [ main ]
pull_request:
branches: [ main ]

workflow_dispatch:

Expand Down Expand Up @@ -38,6 +38,6 @@ jobs:
with:
artifacts: 'build/app/outputs/apk/release/skyle_ik-android.zip'
token: ${{ secrets.RELEASES_TOKEN }}
tag: '1.1.0'
tag: '1.1.1'
commit: main
allowUpdates: true
10 changes: 5 additions & 5 deletions .github/workflows/github-actions-release-ios.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Release iPadOS app

on:
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]
push:
branches: [ main ]
pull_request:
branches: [ main ]

workflow_dispatch:

Expand Down Expand Up @@ -35,6 +35,6 @@ jobs:
with:
artifacts: 'build/ios/iphoneos/skyle_ik-ios.zip'
token: ${{ secrets.RELEASES_TOKEN }}
tag: '1.1.0'
tag: '1.1.1'
commit: main
allowUpdates: true
10 changes: 5 additions & 5 deletions .github/workflows/github-actions-release-linux.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Release linux app

on:
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]
push:
branches: [ main ]
pull_request:
branches: [ main ]

workflow_dispatch:

Expand Down Expand Up @@ -35,6 +35,6 @@ jobs:
with:
artifacts: 'build/linux/x64/release/bundle/skyle_ik-linux.zip'
token: ${{ secrets.RELEASES_TOKEN }}
tag: '1.1.0'
tag: '1.1.1'
commit: main
allowUpdates: true
10 changes: 5 additions & 5 deletions .github/workflows/github-actions-release-macos.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Release macOS app

on:
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]
push:
branches: [ main ]
pull_request:
branches: [ main ]

workflow_dispatch:

Expand Down Expand Up @@ -34,6 +34,6 @@ jobs:
with:
artifacts: 'build/macos/Build/Products/Release/skyle_ik-macos/skyle_ik-macos.zip'
token: ${{ secrets.RELEASES_TOKEN }}
tag: '1.1.0'
tag: '1.1.1'
commit: main
allowUpdates: true
10 changes: 5 additions & 5 deletions .github/workflows/github-actions-release-windows.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Release Windows app

on:
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]
push:
branches: [ main ]
pull_request:
branches: [ main ]

workflow_dispatch:

Expand Down Expand Up @@ -33,6 +33,6 @@ jobs:
with:
artifacts: 'build/windows/runner/Release/skyle_ik-windows.zip'
token: ${{ secrets.RELEASES_TOKEN }}
tag: '1.1.0'
tag: '1.1.1'
commit: main
allowUpdates: true
15 changes: 11 additions & 4 deletions lib/ui/main/main_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,18 @@ class _CalibrationPointsSelection extends ConsumerWidget {
properties: GazeButtonProperties(
key: GlobalKey(),
backgroundColor: backgroundColor,
borderColor: borderColor,
gazeInteractive: points != item,
child: CalibrationPointsView(
points: item.array,
color: Colors.yellow,
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
border: Border.all(
color: borderColor,
width: 3,
)),
child: CalibrationPointsView(
points: item.array,
color: Colors.yellow,
),
),
route: MainRoutes.home.path,
),
Expand Down
10 changes: 5 additions & 5 deletions macos/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- device_info_plus_macos (0.0.1):
- device_info_plus (0.0.1):
- FlutterMacOS
- FlutterMacOS (1.0.0)
- path_provider_macos (0.0.1):
Expand All @@ -10,15 +10,15 @@ PODS:
- FlutterMacOS

DEPENDENCIES:
- device_info_plus_macos (from `Flutter/ephemeral/.symlinks/plugins/device_info_plus_macos/macos`)
- device_info_plus (from `Flutter/ephemeral/.symlinks/plugins/device_info_plus/macos`)
- FlutterMacOS (from `Flutter/ephemeral`)
- path_provider_macos (from `Flutter/ephemeral/.symlinks/plugins/path_provider_macos/macos`)
- shared_preferences_macos (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences_macos/macos`)
- window_size (from `Flutter/ephemeral/.symlinks/plugins/window_size/macos`)

EXTERNAL SOURCES:
device_info_plus_macos:
:path: Flutter/ephemeral/.symlinks/plugins/device_info_plus_macos/macos
device_info_plus:
:path: Flutter/ephemeral/.symlinks/plugins/device_info_plus/macos
FlutterMacOS:
:path: Flutter/ephemeral
path_provider_macos:
Expand All @@ -29,7 +29,7 @@ EXTERNAL SOURCES:
:path: Flutter/ephemeral/.symlinks/plugins/window_size/macos

SPEC CHECKSUMS:
device_info_plus_macos: 1ad388a1ef433505c4038e7dd9605aadd1e2e9c7
device_info_plus: 5401765fde0b8d062a2f8eb65510fb17e77cf07f
FlutterMacOS: ae6af50a8ea7d6103d888583d46bd8328a7e9811
path_provider_macos: 3c0c3b4b0d4a76d2bf989a913c2de869c5641a19
shared_preferences_macos: a64dc611287ed6cbe28fd1297898db1336975727
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A simple example application to calibrate the Skyle eye-tracker.

publish_to: 'none'

version: 1.0.0+1
version: 1.1.1

environment:
sdk: '>=2.18.0 <3.0.0'
Expand Down

0 comments on commit 66ea059

Please sign in to comment.