Skip to content

Commit 6eb9f12

Browse files
authored
Add actuating methods as a check (#344)
1 parent cbebf35 commit 6eb9f12

File tree

15 files changed

+6299
-21
lines changed

15 files changed

+6299
-21
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ buf:
1515
buf generate buf.build/viamrobotics/api:${API_VERSION}
1616
buf generate buf.build/googleapis/googleapis
1717
buf generate buf.build/protocolbuffers/wellknowntypes --path google/protobuf/any.proto
18+
buf generate buf.build/protocolbuffers/wellknowntypes --path google/protobuf/descriptor.proto
1819
buf generate buf.build/protocolbuffers/wellknowntypes --path google/protobuf/duration.proto
1920
buf generate buf.build/protocolbuffers/wellknowntypes --path google/protobuf/empty.proto
2021
buf generate buf.build/protocolbuffers/wellknowntypes --path google/protobuf/struct.proto
2122
buf generate buf.build/protocolbuffers/wellknowntypes --path google/protobuf/timestamp.proto
2223
buf generate buf.build/protocolbuffers/wellknowntypes --path google/protobuf/wrappers.proto
24+
buf generate buf.build/grpc/grpc --path grpc/reflection/v1/reflection.proto
2325
# There's a bug in dart protoc where it doesn't understand that `call` is already taken
2426
$(SED) 's/yield\* call(call, await request);/yield\* this\.call(call, await request);/g' ./lib/src/gen/proto/rpc/webrtc/v1/signaling.pbgrpc.dart
2527
dart run tool/export_protos.dart

example/viam_example_app/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
*.swp
66
.DS_Store
77
.atom/
8+
.build/
89
.buildlog/
910
.history
1011
.svn/
12+
.swiftpm/
1113
migrate_working_dir/
1214

1315
# IntelliJ related

example/viam_example_app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
ignoresPersistentStateOnLaunch = "NO"
6060
debugDocumentVersioning = "YES"
6161
debugServiceExtension = "internal"
62+
enableGPUValidationMode = "1"
6263
allowLocationSimulation = "YES">
6364
<BuildableProductRunnable
6465
runnableDebuggingMode = "0">

example/viam_example_app/macos/Runner/AppDelegate.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,8 @@ class AppDelegate: FlutterAppDelegate {
66
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
77
return true
88
}
9+
10+
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
11+
return true
12+
}
913
}

0 commit comments

Comments
 (0)