From 76ee7fd309819b3a80b2921327ff45bdf72026e1 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sat, 18 Feb 2023 15:50:07 -0500 Subject: [PATCH 1/3] ci: rename windows artifacts --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c7ab32ed1b2..055c71f7065 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -813,8 +813,8 @@ jobs: cpack -G ZIP # move - mv ./cpack_artifacts/Sunshine.exe ../artifacts/sunshine-windows.exe - mv ./cpack_artifacts/Sunshine.zip ../artifacts/sunshine-windows.zip + mv ./cpack_artifacts/Sunshine.exe ../artifacts/sunshine-windows-installer.exe + mv ./cpack_artifacts/Sunshine.zip ../artifacts/sunshine-windows-portable.zip - name: Upload Artifacts uses: actions/upload-artifact@v3 From 3b08316b8c7bfb0e683db44a7ecfa56fdd246fb2 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sun, 19 Feb 2023 14:58:29 -0500 Subject: [PATCH 2/3] docs: update windows artifact names --- docs/source/about/installation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/about/installation.rst b/docs/source/about/installation.rst index aa1c03ec7c0..c509229f75d 100644 --- a/docs/source/about/installation.rst +++ b/docs/source/about/installation.rst @@ -254,7 +254,7 @@ Windows Installer ^^^^^^^^^ -#. Download and install ``sunshine-windows.exe`` +#. Download and install ``sunshine-windows-installer.exe`` .. Attention:: You should carefully select or unselect the options you want to install. Do not blindly install or enable features. @@ -264,7 +264,7 @@ menu. Different versions of Windows may provide slightly different steps for uni Standalone ^^^^^^^^^^ -#. Download and extract ``sunshine-windows.zip`` +#. Download and extract ``sunshine-windows-portable.zip`` To uninstall, delete the extracted directory which contains the ``sunshine.exe`` file. From e164d23b033b10004d4ffcd89a3e930cd825220f Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Mon, 20 Feb 2023 16:54:54 -0500 Subject: [PATCH 3/3] cmake: update version number --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bb027c6d434..3c9c03411f6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.18) # `CMAKE_CUDA_ARCHITECTURES` requires 3.18 -project(Sunshine VERSION 0.18.3 +project(Sunshine VERSION 0.18.4 DESCRIPTION "Sunshine is a self-hosted game stream host for Moonlight." HOMEPAGE_URL "https://app.lizardbyte.dev")