Skip to content

Commit

Permalink
bruig: fix runner and version script
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlyp authored and miki-totefu committed Aug 17, 2023
1 parent 4790538 commit 4c5a946
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bruig/flutterui/bruig/windows/runner/Runner.rc
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "com.example" "\0"
VALUE "FileDescription", "A new Flutter project." "\0"
VALUE "FileVersion", VERSION_AS_STRING "0.1.8"
VALUE "FileVersion", VERSION_AS_STRING "\0"
VALUE "InternalName", "bisonrelay" "\0"
VALUE "LegalCopyright", "Copyright (C) 2023 Comapany Zero. All rights reserved." "\0"
VALUE "OriginalFilename", "bisonrelay.exe" "\0"
VALUE "ProductName", "bisonrelay" "\0"
VALUE "ProductVersion", VERSION_AS_STRING "0.1.8"
VALUE "ProductVersion", VERSION_AS_STRING "\0"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions scripts/bumpversion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ sed -Ei 's/Version = ".+"/Version = "'$VERSION'"/' brclient/internal/version/ver
sed -Ei 's/Version = ".+"/Version = "'$VERSION'"/' brserver/internal/version/version.go
sed -Ei 's/version: .+/version: '$VERSION'/' bruig/flutterui/bruig/pubspec.yaml
sed -Ei 's/msix_version: .+/msix_version: '$VERSION'.0/' bruig/flutterui/bruig/pubspec.yaml
sed -Ei 's/VERSION_AS_STRING ".+"/VERSION_AS_STRING "'$VERSION'"/' bruig/flutterui/bruig/windows/runner/Runner.rc
sed -Ei 's/VERSION_AS_NUMBER [0-9,]+/VERSION_AS_NUMBER '$VERSION_NB_LIST'/' bruig/flutterui/bruig/windows/runner/Runner.rc
sed -Ei 's/define VERSION_AS_STRING ".+"/define VERSION_AS_STRING "'$VERSION'"/' bruig/flutterui/bruig/windows/runner/Runner.rc
sed -Ei 's/define VERSION_AS_NUMBER [0-9,]+/define VERSION_AS_NUMBER '$VERSION_NB_LIST'/' bruig/flutterui/bruig/windows/runner/Runner.rc

0 comments on commit 4c5a946

Please sign in to comment.