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
4 changes: 3 additions & 1 deletion lib/consts/matrix/matrix.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ String canaryLatest() {
}

String productionLatest() {
return p.v1012;
return p.v1014;
}

String metadata(network, specVersion) {
Expand Down Expand Up @@ -80,6 +80,8 @@ String productionSpec(specVersion) {
return p.v1006;
case 1012:
return p.v1012;
case 1014:
return p.v1014;
default:
return productionLatest();
}
Expand Down
1 change: 1 addition & 0 deletions lib/consts/matrix/production/production.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ export 'v1004.dart';
export 'v1005.dart';
export 'v1006.dart';
export 'v1012.dart';
export 'v1014.dart';
2 changes: 2 additions & 0 deletions lib/consts/matrix/production/v1014.dart

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/handler/general.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ int getLatestSpecVersion(network) {
if (network == 'canary' || network == 'canary-matrixchain') {
return 1013;
}
return 1012;
return 1014;
}

Future<dynamic> handleRequest(Request request) async {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: platform_decoder
description: Enjin Platform Decoder
version: 2.1.1
version: 2.2.0
publish_to: none

environment:
Expand Down
Loading