Skip to content

Commit

Permalink
Merge pull request #387 from fzyzcjy/feat/12097
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
fzyzcjy authored May 30, 2024
2 parents 3f6c9c0 + cabf202 commit 5245ffa
Show file tree
Hide file tree
Showing 15 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:

- uses: ruby/setup-ruby@v1
with:
ruby-version: "2.7.0"
ruby-version: "2.7.8"
bundler-cache: true

- name: setup-cocoapods
Expand Down
2 changes: 1 addition & 1 deletion packages/convenient_test_dev/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies:
path: ^1.8.0
path_provider: ^2.0.9
recase: ^4.0.0
test_api: '>=0.5.1 <0.7.0'
test_api: '>=0.5.1 <0.8.0'
tuple: ^2.0.0
web_socket_channel: ^2.1.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class HomePageLogEntryWidget extends StatelessWidget {
break;
default:
backgroundColor = null;
textColor = Theme.of(context).colorScheme.onBackground;
textColor = Theme.of(context).colorScheme.onSurface;
break;
}

Expand Down Expand Up @@ -278,7 +278,7 @@ class HomePageLogEntryWidget extends StatelessWidget {
'[${expand ? "Collapse" : "Expand"}]',
style: TextStyle(
fontSize: 12,
color: Theme.of(context).colorScheme.onBackground),
color: Theme.of(context).colorScheme.onSurface),
),
),
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class StateIndicatorWidget extends StatelessWidget {
switch (state) {
case SimplifiedStateEnum.pending:
return Icon(Icons.hourglass_empty,
color: Theme.of(context).colorScheme.onBackground, size: 14);
color: Theme.of(context).colorScheme.onSurface, size: 14);
// return Center(
// child: SizedBox(
// width: 12,
Expand Down
4 changes: 2 additions & 2 deletions packages/convenient_test_manager/lib/pages/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class _Body extends StatelessWidget {
child: SizedBox(
height: 32,
child: Material(
color: Theme.of(context).colorScheme.background,
color: Theme.of(context).colorScheme.surface,
child: OutlinedButton(
onPressed: () => homePageStore.expandSecondaryPanel = true,
child: const Text('Expand secondary panel'),
Expand Down Expand Up @@ -149,7 +149,7 @@ class _Body extends StatelessWidget {
style: TextStyle(
fontSize: 15,
height: 1.8,
color: Theme.of(context).colorScheme.onBackground),
color: Theme.of(context).colorScheme.onSurface),
child: child,
),
const SizedBox(height: 20),
Expand Down
4 changes: 2 additions & 2 deletions packages/convenient_test_manager/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ dependencies:
path_provider: ^2.0.9
protobuf: ^3.0.0
scrollable_positioned_list: ^0.3.2
test_api: ^0.6.0
tuple: ^2.0.0
test_api: '>=0.5.1 <0.8.0'
tuple: ^2.0.0

dependency_overrides:
convenient_test:
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions packages/convenient_test_manager_dart/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ dependencies:
protobuf: ^3.0.0
recase: ^4.0.0
synchronized: ^3.0.0
test_api: ^0.6.0
vm_service: '>=11.3.0 <14.0.0'
test_api: '>=0.5.1 <0.8.0'
vm_service: '>=11.3.0 <15.0.0'

dependency_overrides:
convenient_test_common_dart:
Expand Down

0 comments on commit 5245ffa

Please sign in to comment.