Skip to content

Commit 55f90c8

Browse files
committed
Release v25.01r5618.
1 parent ee1ba7e commit 55f90c8

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

matepath/res/matepath.exe.manifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
22
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
3-
<assemblyIdentity name="matepath" processorArchitecture="*" version="24.11.0.5548" type="win32"/>
3+
<assemblyIdentity name="matepath" processorArchitecture="*" version="25.01.0.5618" type="win32"/>
44
<description>matepath File Browser</description>
55
<dependency>
66
<dependentAssembly>

matepath/src/VersionRev.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#define VERSION_MINOR 24
2-
#define VERSION_BUILD_NUM 11
3-
#define VERSION_BUILD 11
4-
#define VERSION_HASH TEXT("aa0c9398")
5-
#define VERSION_REV 5548
6-
#define VERSION_REV_FULL TEXT("r5548 (aa0c9398)")
1+
#define VERSION_MINOR 25
2+
#define VERSION_BUILD_NUM 1
3+
#define VERSION_BUILD 01
4+
#define VERSION_HASH TEXT("ee1ba7e6")
5+
#define VERSION_REV 5618
6+
#define VERSION_REV_FULL TEXT("r5618 (ee1ba7e6)")

res/Notepad4.exe.manifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
22
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
3-
<assemblyIdentity name="Notepad4" processorArchitecture="*" version="24.11.0.5548" type="win32"/>
3+
<assemblyIdentity name="Notepad4" processorArchitecture="*" version="25.01.0.5618" type="win32"/>
44
<description>Notepad4 Text Editor</description>
55
<dependency>
66
<dependentAssembly>

src/VersionRev.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#define VERSION_MINOR 24
2-
#define VERSION_BUILD_NUM 11
3-
#define VERSION_BUILD 11
4-
#define VERSION_HASH TEXT("aa0c9398")
5-
#define VERSION_REV 5548
6-
#define VERSION_REV_FULL TEXT("r5548 (aa0c9398)")
1+
#define VERSION_MINOR 25
2+
#define VERSION_BUILD_NUM 1
3+
#define VERSION_BUILD 01
4+
#define VERSION_HASH TEXT("ee1ba7e6")
5+
#define VERSION_REV 5618
6+
#define VERSION_REV_FULL TEXT("r5618 (ee1ba7e6)")

version.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ fi
8989

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

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

0 commit comments

Comments
 (0)