Skip to content

Commit

Permalink
Release v25.01r5618.
Browse files Browse the repository at this point in the history
  • Loading branch information
zufuliu committed Jan 19, 2025
1 parent ee1ba7e commit 55f90c8
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion matepath/res/matepath.exe.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity name="matepath" processorArchitecture="*" version="24.11.0.5548" type="win32"/>
<assemblyIdentity name="matepath" processorArchitecture="*" version="25.01.0.5618" type="win32"/>
<description>matepath File Browser</description>
<dependency>
<dependentAssembly>
Expand Down
12 changes: 6 additions & 6 deletions matepath/src/VersionRev.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#define VERSION_MINOR 24
#define VERSION_BUILD_NUM 11
#define VERSION_BUILD 11
#define VERSION_HASH TEXT("aa0c9398")
#define VERSION_REV 5548
#define VERSION_REV_FULL TEXT("r5548 (aa0c9398)")
#define VERSION_MINOR 25
#define VERSION_BUILD_NUM 1
#define VERSION_BUILD 01
#define VERSION_HASH TEXT("ee1ba7e6")
#define VERSION_REV 5618
#define VERSION_REV_FULL TEXT("r5618 (ee1ba7e6)")
2 changes: 1 addition & 1 deletion res/Notepad4.exe.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity name="Notepad4" processorArchitecture="*" version="24.11.0.5548" type="win32"/>
<assemblyIdentity name="Notepad4" processorArchitecture="*" version="25.01.0.5618" type="win32"/>
<description>Notepad4 Text Editor</description>
<dependency>
<dependentAssembly>
Expand Down
12 changes: 6 additions & 6 deletions src/VersionRev.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#define VERSION_MINOR 24
#define VERSION_BUILD_NUM 11
#define VERSION_BUILD 11
#define VERSION_HASH TEXT("aa0c9398")
#define VERSION_REV 5548
#define VERSION_REV_FULL TEXT("r5548 (aa0c9398)")
#define VERSION_MINOR 25
#define VERSION_BUILD_NUM 1
#define VERSION_BUILD 01
#define VERSION_HASH TEXT("ee1ba7e6")
#define VERSION_REV 5618
#define VERSION_REV_FULL TEXT("r5618 (ee1ba7e6)")
6 changes: 3 additions & 3 deletions version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ fi

# Update manifest file if version information was changed.
base_ver="[0-9][0-9]"
new_ver="`date +%m`.0.${ver}"
newmanifest="$(sed -Ee "0,/(${base_ver}\.)([0-9.]+)/s//\1${new_ver}/g" "$manifestfile")"
new_ver="`date +%y.%m`.0.${ver}"
newmanifest="$(sed -Ee "s/(${base_ver}\.[0-9.]+)/${new_ver}/g" "$manifestfile")"
if [[ "$newmanifest" != "$(<"$manifestfile")" ]]; then
# Update the revision number in the manifest file
echo "$newmanifest" > "$manifestfile"
Expand All @@ -104,7 +104,7 @@ if [[ $# -ne 0 ]]; then
echo "$version_info" > "$versionfile"
fi

newmanifest="$(sed -Ee "0,/(${base_ver}\.)([0-9.]+)/s//\1${new_ver}/g" "$manifestfile")"
newmanifest="$(sed -Ee "s/(${base_ver}\.[0-9.]+)/${new_ver}/g" "$manifestfile")"
if [[ "$newmanifest" != "$(<"$manifestfile")" ]]; then
echo "$newmanifest" > "$manifestfile"
fi
Expand Down

0 comments on commit 55f90c8

Please sign in to comment.