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
17 changes: 9 additions & 8 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,17 @@ jobs:
with:
pre-release: true
secrets: inherit
call-build-windows:
needs: call-tests
uses: ./.github/workflows/build-windows.yml
with:
pre-release: true
secrets: inherit
# call-build-windows:
# needs: call-tests
# uses: ./.github/workflows/build-windows.yml
# with:
# pre-release: true
# secrets: inherit

pre-release:
name: "Pre Release"
needs: [call-build-linux, call-build-windows]
# needs: [call-build-linux, call-build-windows]
needs: [call-build-linux]
runs-on: "ubuntu-latest"

steps:
Expand All @@ -52,4 +53,4 @@ jobs:
title: "Development Build"
files: |
${{ github.workspace }}/artifacts/linux-artifacts/*
${{ github.workspace }}/artifacts/windows-artifacts/*
# ${{ github.workspace }}/artifacts/windows-artifacts/*
15 changes: 8 additions & 7 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,17 @@ jobs:
with:
pre-release: true
secrets: inherit
call-build-windows:
needs: call-tests
uses: ./.github/workflows/build-windows.yml
with:
pre-release: true
secrets: inherit
# call-build-windows:
# needs: call-tests
# uses: ./.github/workflows/build-windows.yml
# with:
# pre-release: true
# secrets: inherit

verify-pull-request:
name: Verify Pull Request
needs: [call-tests, call-build-linux, call-build-windows]
# needs: [call-tests, call-build-linux, call-build-windows]
needs: [call-tests, call-build-linux]
runs-on: ubuntu-latest
steps:
- run: echo "Requirements passed, PR looks good!"
6 changes: 3 additions & 3 deletions .github/workflows/release-windows-store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ on:
# Enable manual run
workflow_dispatch:
# Build & deploy for published releases
release:
types:
- published
# release:
# types:
# - published

concurrency:
group: ci-release-${{ github.ref }}-1
Expand Down
17 changes: 9 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,17 @@ jobs:
with:
pre-release: false
secrets: inherit
call-build-windows:
needs: call-tests
uses: ./.github/workflows/build-windows.yml
with:
pre-release: false
secrets: inherit
# call-build-windows:
# needs: call-tests
# uses: ./.github/workflows/build-windows.yml
# with:
# pre-release: false
# secrets: inherit

release:
name: "Release"
needs: [call-build-linux, call-build-windows]
# needs: [call-build-linux, call-build-windows]
needs: [call-build-linux]
runs-on: "ubuntu-latest"

steps:
Expand All @@ -50,4 +51,4 @@ jobs:
prerelease: false
files: |
${{ github.workspace }}/artifacts/linux-artifacts/*
${{ github.workspace }}/artifacts/windows-artifacts/*
# ${{ github.workspace }}/artifacts/windows-artifacts/*
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
# os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@ Unfortunately no. [CRIU](https://criu.org/) looks very promising to allow us to

## Troubleshooting

If you use Microsoft Windows, issues are often resolved by running Nyrna as an administrator.
The Windows version is unlikely to receive further updates, and is not as stable
as the Linux version.

If you use Microsoft Windows, issues are often resolved by running Nyrna as an
administrator.


## Building
Expand Down
4 changes: 4 additions & 0 deletions lib/app/cubit/app_cubit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ Otherwise, [consider signing in using X11 instead](https://docs.fedoraproject.or

/// Fetches version data from the update service.
Future<void> _fetchVersionData() async {
// Windows version is not being supported for future updates, so we skip fetching
// version data for Windows so they don't get an "update available" message.
if (Platform.isWindows) return;

final versionInfo = await _updateService.getVersionInfo();
emit(
state.copyWith(
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: nyrna
description: Suspend any game or application.
publish_to: "none"
version: 2.26.0
version: 2.26.1

environment:
sdk: ">=3.8.0 <4.0.0"
Expand Down