diff --git a/tools/linux_submitter.dart b/tools/linux_submitter.dart index cd1f294..52bd692 100644 --- a/tools/linux_submitter.dart +++ b/tools/linux_submitter.dart @@ -19,7 +19,7 @@ class SnapStoreSubmitter { runVmCommand( 'cd "$repoPath" && export SNAPCRAFT_STORE_CREDENTIALS=${Config.snapcraftLoginCredentials} && snapcraft upload --release=stable build/app.snap'); var vmSnapPath = '$repoPath/build/app.snap'; - var localSnapPath = '${Config.localRepoPath}/build/AirDash.snap'; + var localSnapPath = '${Config.localRepoPath}/build/airdash.snap'; linuxVmHelper.fetchVmFile(vmSnapPath, localSnapPath); }); } diff --git a/tools/microsoft_store_submitter.dart b/tools/microsoft_store_submitter.dart index e74edcf..14f3d73 100644 --- a/tools/microsoft_store_submitter.dart +++ b/tools/microsoft_store_submitter.dart @@ -105,7 +105,7 @@ class MicrosoftStoreSubmitter { package['fileStatus'] = 'PendingDelete'; } applicationPackages.add({ - 'fileName': 'AirDash.msix', + 'fileName': 'airdash.msix', 'fileStatus': 'PendingUpload', 'version': '${version.join('.')}.0', }); @@ -117,7 +117,7 @@ class MicrosoftStoreSubmitter { String submissionId, String url, List version) async { var zipFile = File('build/upload.zip'); runLocalCommand( - 'zip ${zipFile.path} ${Config.localRepoPath}/build/AirDash.msix -j'); + 'zip ${zipFile.path} ${Config.localRepoPath}/build/airdash.msix -j'); var msixBytes = await zipFile.readAsBytes(); var headers = { diff --git a/tools/scripts.dart b/tools/scripts.dart index 7b93a65..8d28384 100644 --- a/tools/scripts.dart +++ b/tools/scripts.dart @@ -58,7 +58,7 @@ release() async { runLocalCommand( 'fastlane run build_mac_app export_team_id:"${Config.appStoreTeamId}" workspace:macos/Runner.xcworkspace output_directory:build'); runLocalCommand( - 'xcrun altool --upload-app --type macos -f build/AirDash.pkg --apiKey ${Config.appStoreConnectApiKeyName} --apiIssuer ${Config.appStoreConnectIssuerId}'); + 'xcrun altool --upload-app --type macos -f build/airdash.pkg --apiKey ${Config.appStoreConnectApiKeyName} --apiIssuer ${Config.appStoreConnectIssuerId}'); runLocalCommand('flutter build ipa'); runLocalCommand( @@ -67,7 +67,7 @@ release() async { runLocalCommand('flutter build appbundle'); runLocalCommand('flutter build apk'); runLocalCommand( - 'cp build/app/outputs/flutter-apk/app-release.apk build/AirDash.apk'); + 'cp build/app/outputs/flutter-apk/app-release.apk build/airdash.apk'); runLocalCommand( 'fastlane upload_to_play_store --aab ${Config.localAabPath} --package_name io.flown.airdash --json_key ${Config.googlePlayKeyPath}'); @@ -77,11 +77,11 @@ release() async { await MicrosoftStoreSubmitter().submit(); //await SnapStoreSubmitter().buildAndSubmit(); - runLocalCommand('npx appdmg appdmg.json ./build/AirDash.dmg'); + runLocalCommand('npx appdmg appdmg.json ./build/airdash.dmg'); runLocalCommand( - 'gh release create v${version.join('.')} build/AirDash.dmg build/AirDash.apk --notes "See what\'s new in the [release notes](https://github.com/simonbengtsson/airdash/blob/master/CHANGELOG.md). Some distribution files are included as assets in this release, but the update will soon be available in all supported app stores."'); + 'gh release create v${version.join('.')} build/airdash.dmg build/airdash.apk --notes "See what\'s new in the [release notes](https://github.com/simonbengtsson/airdash/blob/master/CHANGELOG.md). Some distribution files are included as assets in this release, but the update will soon be available in all supported app stores."'); // runLocalCommand( - // 'gh release create v${version.join('.')} build/AirDash.snap build/AirDash.msix build/AirDash.apk --notes "See what\'s new in the [release notes](https://github.com/simonbengtsson/airdash/blob/master/CHANGELOG.md). Some distribution files are included as assets in this release, but the update will soon be available in all supported app stores."'); + // 'gh release create v${version.join('.')} build/airdash.snap build/airdash.msix build/airdash.apk --notes "See what\'s new in the [release notes](https://github.com/simonbengtsson/airdash/blob/master/CHANGELOG.md). Some distribution files are included as assets in this release, but the update will soon be available in all supported app stores."'); var endedAt = DateTime.now(); var endedAtTimeStr = endedAt.toIso8601String().substring(11, 19); diff --git a/tools/tools_config.dart b/tools/tools_config.dart index 489dc6b..942415c 100644 --- a/tools/tools_config.dart +++ b/tools/tools_config.dart @@ -29,7 +29,7 @@ class Config { static final windowsVmRepoPath = _env('WINDOWS_VM_REPO_PATH'); static final windowsVmOutputPath = '$windowsVmRepoPath\\build\\stdout.txt'; static final windowsVmMsixPath = - '$windowsVmRepoPath\\build\\windows\\runner\\Release\\AirDash.msix'; + '$windowsVmRepoPath\\build\\windows\\runner\\Release\\airdash.msix'; static final localWindowsVmPath = _env('WINDOWS_VM_PATH'); static final localStdoutPath = '$localRepoPath/build/stdout.txt'; diff --git a/tools/windows_builder.dart b/tools/windows_builder.dart index ae6b7bc..34ae241 100644 --- a/tools/windows_builder.dart +++ b/tools/windows_builder.dart @@ -10,7 +10,7 @@ class WindowsAppBuilder { runWinCommand('cd "$repoPath" && git reset --hard && git pull -r'); runWinCommand('cd "$repoPath" && flutter pub get'); runWinCommand('cd "$repoPath" && flutter pub run msix:create'); - var localMsixPath = '${Config.localRepoPath}/build/AirDash.msix'; + var localMsixPath = '${Config.localRepoPath}/build/airdash.msix'; fetchWindowsFile(Config.windowsVmMsixPath, localMsixPath); }); }