Skip to content

Commit

Permalink
Windows CI updates
Browse files Browse the repository at this point in the history
  • Loading branch information
atavism committed Oct 24, 2024
1 parent 03a9f84 commit 1025195
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
run: |
Get-FileHash "build/windows/${{inputs.arch}}/runner/Release/liblantern_x64.dll" -Algorithm SHA256
New-Item -Path "./dist/${{ env.APP_VERSION }}" -ItemType Directory -Force
flutter_distributor package --platform windows --targets "exe,msix" --skip-clean
flutter_distributor package --platform windows --targets exe --skip-clean
env:
SENTRY_AUTH_TOKEN: "${{ secrets.SENTRY_AUTH_TOKEN }}"
VERSION: "${{ env.version }}"
Expand All @@ -132,7 +132,7 @@ jobs:
ls -ltr "build/windows/${{inputs.arch}}/runner"
ls -ltr "build/windows/${{inputs.arch}}/runner/Release"
mv "dist/${{ env.APP_VERSION }}/lantern-${{ env.APP_VERSION }}-windows-setup.exe" lantern-installer${{inputs.installer-suffix}}.exe
mv "dist/${{ env.APP_VERSION }}/lantern-${{ env.APP_VERSION }}-windows.msix" lantern-installer${{inputs.installer-suffix}}.msix
# mv "dist/${{ env.APP_VERSION }}/lantern-${{ env.APP_VERSION }}-windows.msix" lantern-installer${{inputs.installer-suffix}}.msix
- name: Sign EXE with Azure Code Signing
uses: getlantern/trusted-signing-action@main
Expand All @@ -156,12 +156,12 @@ jobs:
path: |
lantern-installer${{inputs.installer-suffix}}.exe
- name: Upload msix artifact
uses: actions/upload-artifact@v4
with:
name: windows${{inputs.build-suffix}}-installer-msix
path: |
lantern-installer${{inputs.installer-suffix}}.msix
# - name: Upload msix artifact
# uses: actions/upload-artifact@v4
# with:
# name: windows${{inputs.build-suffix}}-installer-msix
# path: |
# lantern-installer${{inputs.installer-suffix}}.msix


upload-windows:
Expand Down
2 changes: 2 additions & 0 deletions lib/core/app/app_webview.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,14 @@ class _AppWebViewState extends State<AppWebView> {
isInspectable: true,
javaScriptEnabled: true,
supportZoom: true,
useWideViewPort: true,
loadWithOverviewMode: true,
builtInZoomControls: true,
displayZoomControls: false,
mediaPlaybackRequiresUserGesture: false,
allowsInlineMediaPlayback: true,
underPageBackgroundColor: Colors.white,
transparentBackground: true,
),
onProgressChanged: (controller, progress) {
appLogger.i("Loading progress: $progress%");
Expand Down

0 comments on commit 1025195

Please sign in to comment.