Skip to content
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: 2 additions & 2 deletions .github/workflows/syrius_builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
build-macos:
runs-on: macos-12
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
name: windows-artifacts
path: syrius-alphanet-windows-amd64.zip
build-linux:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
Binary file modified lib/embedded_node/blobs/libznn.dll
Binary file not shown.
Binary file modified lib/embedded_node/blobs/libznn.dylib
Binary file not shown.
Binary file modified lib/embedded_node/blobs/libznn.so
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/utils/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const SizedBox kSpacingBetweenActionButtons = SizedBox(
const Size kAcceleratorProgressBarSize = Size(300.0, 10.0);

// Wallet version
const String kWalletVersion = '0.2.2';
const String kWalletVersion = '0.2.3';

// Boxes constants
const String kFavoriteTokensBox = 'favourite_tokens_box';
Expand Down
6 changes: 3 additions & 3 deletions macos/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@
"$(PROJECT_DIR)",
);
MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)";
MARKETING_VERSION = "v0.2.2-alphanet";
MARKETING_VERSION = "v0.2.3-alphanet";
PRODUCT_BUNDLE_IDENTIFIER = network.zenon.syrius;
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 5.0;
Expand Down Expand Up @@ -640,7 +640,7 @@
"$(PROJECT_DIR)",
);
MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)";
MARKETING_VERSION = "v0.2.2-alphanet";
MARKETING_VERSION = "v0.2.3-alphanet";
PRODUCT_BUNDLE_IDENTIFIER = network.zenon.syrius;
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
Expand All @@ -667,7 +667,7 @@
"$(PROJECT_DIR)",
);
MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)";
MARKETING_VERSION = "v0.2.2-alphanet";
MARKETING_VERSION = "v0.2.3-alphanet";
PRODUCT_BUNDLE_IDENTIFIER = network.zenon.syrius;
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 5.0;
Expand Down
4 changes: 2 additions & 2 deletions windows/runner/Runner.rc
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ IDI_APP_ICON ICON "resources\\app_icon.ico"
#ifdef FLUTTER_BUILD_NUMBER
#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER
#else
#define VERSION_AS_NUMBER 0,2,2
#define VERSION_AS_NUMBER 0,2,3
#endif

#ifdef FLUTTER_BUILD_NAME
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME
#else
#define VERSION_AS_STRING "v0.2.2-alphanet"
#define VERSION_AS_STRING "v0.2.3-alphanet"
#endif

VS_VERSION_INFO VERSIONINFO
Expand Down
Loading