diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index e14bddf3..ec3777aa 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -2,6 +2,7 @@ name: Coverity on: push: + branches: [master] paths-ignore: - '.gitignore' - '.gitattributes' diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml index 7448aa80..34306e4b 100644 --- a/.github/workflows/mingw.yml +++ b/.github/workflows/mingw.yml @@ -13,6 +13,7 @@ on: - '**.txt' - '**.xml' pull_request: + branches: [master] paths-ignore: - '.gitignore' - '.gitattributes' @@ -56,9 +57,19 @@ jobs: fetch-depth: 0 submodules: recursive + - name: Set ALPHA + id: set_alpha + if: ${{ !startsWith(github.ref, 'refs/tags/') }} + run: echo "::set-output name=option::--enable-alpha" + + - name: Set BETA + id: set_beta + if: ${{ startsWith(github.ref, 'refs/tags/') && contains(github.ref, 'BETA') }} + run: echo "::set-output name=option::--enable-beta" + - name: Build run: | - ./configure --disable-debug + ./configure --disable-debug ${{ steps.set_alpha.outputs.option }} ${{ steps.set_beta.outputs.option }} make -j4 mv ./src/rufus.exe . strip ./rufus.exe diff --git a/.github/workflows/vs2019.yml b/.github/workflows/vs2019.yml index 63b7d237..e8638302 100644 --- a/.github/workflows/vs2019.yml +++ b/.github/workflows/vs2019.yml @@ -13,6 +13,7 @@ on: - '**.txt' - '**.xml' pull_request: + branches: [master] paths-ignore: - '.gitignore' - '.gitattributes' diff --git a/res/appstore/Package.appxmanifest b/res/appstore/Package.appxmanifest index 47c1ea19..95e2e92d 100644 --- a/res/appstore/Package.appxmanifest +++ b/res/appstore/Package.appxmanifest @@ -11,7 +11,7 @@ + Version="3.16.1825.0" /> Rufus diff --git a/src/rufus.rc b/src/rufus.rc index 8ba22546..c6841d93 100644 --- a/src/rufus.rc +++ b/src/rufus.rc @@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL IDD_DIALOG DIALOGEX 12, 12, 232, 326 STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU EXSTYLE WS_EX_ACCEPTFILES -CAPTION "Rufus 3.16.1824" +CAPTION "Rufus 3.16.1825" FONT 9, "Segoe UI Symbol", 400, 0, 0x0 BEGIN LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP @@ -395,8 +395,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 3,16,1824,0 - PRODUCTVERSION 3,16,1824,0 + FILEVERSION 3,16,1825,0 + PRODUCTVERSION 3,16,1825,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -414,13 +414,13 @@ BEGIN VALUE "Comments", "https://rufus.ie" VALUE "CompanyName", "Akeo Consulting" VALUE "FileDescription", "Rufus" - VALUE "FileVersion", "3.16.1824" + VALUE "FileVersion", "3.16.1825" VALUE "InternalName", "Rufus" VALUE "LegalCopyright", "© 2011-2021 Pete Batard (GPL v3)" VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html" VALUE "OriginalFilename", "rufus-3.16.exe" VALUE "ProductName", "Rufus" - VALUE "ProductVersion", "3.16.1824" + VALUE "ProductVersion", "3.16.1825" END END BLOCK "VarFileInfo"