Skip to content

Commit

Permalink
Update version to 5.1.90
Browse files Browse the repository at this point in the history
  • Loading branch information
grulja committed Oct 29, 2024
1 parent 77ec947 commit f3529ef
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ project(MediaWriter)
cmake_minimum_required(VERSION 3.17)

set(MEDIAWRITER_MAJOR_VERSION "5")
set(MEDIAWRITER_MINOR_VERSION "0")
set(MEDIAWRITER_MINOR_VERSION "1")
# MICRO_VERSION >= 50 means a development version
set(MEDIAWRITER_MICRO_VERSION "50")
set(MEDIAWRITER_MICRO_VERSION "90")
set(MEDIAWRITER_VERSION "${MEDIAWRITER_MAJOR_VERSION}.${MEDIAWRITER_MINOR_VERSION}.${MEDIAWRITER_MICRO_VERSION}")

set(QT_MIN_VERSION "6.6.0")
Expand All @@ -25,7 +25,7 @@ include(GNUInstallDirs)
include(FeatureSummary)


if (${MEDIAWRITER_MICRO_VERSION} GREATER_EQUAL 50)
if (${MEDIAWRITER_MICRO_VERSION} GREATER_EQUAL 50 AND ${MEDIAWRITER_MICRO_VERSION} LESS 90)
execute_process(COMMAND git rev-parse --short HEAD OUTPUT_VARIABLE MEDIAWRITER_LAST_COMMIT OUTPUT_STRIP_TRAILING_WHITESPACE)
add_definitions(-DMEDIAWRITER_VERSION="${MEDIAWRITER_VERSION}-${MEDIAWRITER_LAST_COMMIT}")
else()
Expand Down
4 changes: 2 additions & 2 deletions dist/win/mediawriter.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ XPStyle on
# This is the size (in kB) of all the files copied into "Program Files"
#!define INSTALLSIZE

VIProductVersion "0.5.50.0"
VIProductVersion "0.5.1.90"
VIAddVersionKey "ProductName" "${APPNAME}"
VIAddVersionKey "Comments" "${DESCRIPTION}"
VIAddVersionKey "CompanyName" "${COMPANYNAME}"
VIAddVersionKey "LegalCopyright" "${COMPANYNAME}"
VIAddVersionKey "FileDescription" "${APPNAME}"
VIAddVersionKey "FileVersion" "0.5.50"
VIAddVersionKey "FileVersion" "0.5.2"

;Set the name of the uninstall log
!define UninstLog "uninstall.log"
Expand Down
4 changes: 2 additions & 2 deletions dist/win/mediawriter_native.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ XPStyle on
# This is the size (in kB) of all the files copied into "Program Files"
#!define INSTALLSIZE

VIProductVersion "0.5.50.0"
VIProductVersion "0.5.1.90"
VIAddVersionKey "ProductName" "${APPNAME}"
VIAddVersionKey "Comments" "${DESCRIPTION}"
VIAddVersionKey "CompanyName" "${COMPANYNAME}"
VIAddVersionKey "LegalCopyright" "${COMPANYNAME}"
VIAddVersionKey "FileDescription" "${APPNAME}"
VIAddVersionKey "FileVersion" "0.5.50"
VIAddVersionKey "FileVersion" "0.5.2"

;Set the name of the uninstall log
!define UninstLog "uninstall.log"
Expand Down
2 changes: 1 addition & 1 deletion src/app/data/org.fedoraproject.MediaWriter.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,6 @@
<update_contact>[email protected]</update_contact>
<content_rating type="oars-1.1"/>
<releases>
<release version="5.0.1" date="2022-05-13"/>
<release version="5.1.90" date="2024-10-29"/>
</releases>
</component>
4 changes: 2 additions & 2 deletions src/app/data/org.fedoraproject.MediaWriter.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
<update_contact>[email protected]</update_contact>
<content_rating type="oars-1.1"/>
<releases>
<release version="5.1.3" date="2024-09-18"
<url>https://github.com/FedoraQt/MediaWriter/releases/tag/5.1.3</url>
<release version="5.1.90" date="2024-10-29"/>
<url>https://github.com/FedoraQt/MediaWriter/releases/tag/5.1.90</url>
</release>
</releases>
</component>

0 comments on commit f3529ef

Please sign in to comment.