Skip to content
This repository was archived by the owner on Nov 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ doc/api/
.flutter-plugins
.flutter-plugins-dependencies

### Agent files
AGENTS.md

1 change: 1 addition & 0 deletions lib/consts/enjin/canary/canary.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ export 'v1031.dart';
export 'v1032.dart';
export 'v1033.dart';
export 'v1050.dart';
export 'v1060.dart';
2 changes: 2 additions & 0 deletions lib/consts/enjin/canary/v1060.dart

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion lib/consts/enjin/enjin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'canary/canary.dart' as c;
import 'production/production.dart' as p;

String canaryLatest() {
return c.v1050;
return c.v1060;
}

String productionLatest() {
Expand Down Expand Up @@ -61,6 +61,8 @@ String canarySpec(specVersion) {
return c.v1033;
case 1050:
return c.v1050;
case 1060:
return c.v1060;
default:
return canaryLatest();
}
Expand Down
1 change: 1 addition & 0 deletions lib/consts/matrix/canary/canary.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ export 'v1020.dart';
export 'v1021.dart';
export 'v1022.dart';
export 'v1023.dart';
export 'v1030.dart';
2 changes: 2 additions & 0 deletions lib/consts/matrix/canary/v1030.dart

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion lib/consts/matrix/matrix.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'canary/canary.dart' as c;
import 'production/production.dart' as p;

String canaryLatest() {
return c.v1023;
return c.v1030;
}

String productionLatest() {
Expand Down Expand Up @@ -61,6 +61,8 @@ String canarySpec(specVersion) {
return c.v1022;
case 1023:
return c.v1023;
case 1030:
return c.v1030;
default:
return canaryLatest();
}
Expand Down
1 change: 1 addition & 0 deletions scripts/fetch_metadata.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ process_network() {
update_exports "$base" "$category" "$environment" "$version"

echo "$network: v$version -> lib/consts/$category/$environment/v$version.dart"
echo "REMINDER: Update lib/consts/$category/$category.dart to include case $version in the ${environment}Spec function"
}

command -v jq >/dev/null || {
Expand Down