Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/putup-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,6 @@ jobs:
dist/*.exe dist/*.zip dist/*.sha256sum dist/*.sha512sum
else
gh release create "$TAG" --repo "$REPO" \
--title "Tera Term $TAG" --prerelease --generate-notes \
--title "Tera Term $TAG" --latest --generate-notes \
dist/*.exe dist/*.zip dist/*.sha256sum dist/*.sha512sum
fi
8 changes: 7 additions & 1 deletion teraterm/common/tt-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,16 @@

#pragma once

// MAJOR/MINOR/PATCH track the UPSTREAM base this fork is built from -- they are
// read as upstream-semantic by ttset RunningVersion, the TERATERM.INI Version
// key, the ttpcmn filemap name and the TTL cur_major/cur_minor macros, so they
// move only on a rebase. The fork's own release number lives in SUBSTR and
// increments independently. No spaces: svnrev.pl splices SUBSTR straight into
// the installer/zip filenames.
#define TT_VERSION_MAJOR 5
#define TT_VERSION_MINOR 8
#define TT_VERSION_PATCH 0
#define TT_VERSION_SUBSTR "agent"
#define TT_VERSION_SUBSTR "agent-1.0.0"
//#undef TT_VERSION_SUBSTR
// SUBSTR が不要な時は undef する
// 使用例 "dev", "RC", "RC2"
Expand Down
Loading