From d37fe5d5d27d91a28776baf2593fefc0b749cc85 Mon Sep 17 00:00:00 2001 From: pommicket Date: Wed, 17 Jul 2024 23:23:22 -0700 Subject: Bump version, update to latest pcre2 --- README.md | 1 + control | 2 +- pcre2 | 2 +- ted.h | 2 +- update-windows-installer.py | 4 ++-- windows_installer/ted/ted.vdproj | 6 +++--- 6 files changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4ca6a47..06422a9 100644 --- a/README.md +++ b/README.md @@ -347,6 +347,7 @@ Then run `make.bat release`. 2.6.2 fix cursor position issue, nicer logging, status in title bar 2023 Sep 24 2.7.0 `.editorconfig` and local `.ted.cfg` 2023 Oct 19 2.7.1 bug fixes, auto-detect indentation 2024 Feb 13 +2.7.2 bug fixes, `sync` setting 2024 Jul 17 ## License diff --git a/control b/control index 5ad3ace..9525107 100644 --- a/control +++ b/control @@ -1,5 +1,5 @@ Package: ted -Version: 2.7.1 +Version: 2.7.2 Section: text Priority: optional Architecture: amd64 diff --git a/pcre2 b/pcre2 index 1e146e7..4fa5b8b 160000 --- a/pcre2 +++ b/pcre2 @@ -1 +1 @@ -Subproject commit 1e146e7343ed5bd893a1617d2b8c0072baa7a992 +Subproject commit 4fa5b8bd206135447f55e7f5f8d9294474051a44 diff --git a/ted.h b/ted.h index 21e2c06..19121a7 100644 --- a/ted.h +++ b/ted.h @@ -22,7 +22,7 @@ extern "C" { #include "command.h" /// Version number -#define TED_VERSION "2.7.1" +#define TED_VERSION "2.7.2" /// Maximum path size ted handles. #define TED_PATH_MAX 1024 /// Config filename diff --git a/update-windows-installer.py b/update-windows-installer.py index 495e032..b329b31 100755 --- a/update-windows-installer.py +++ b/update-windows-installer.py @@ -5,9 +5,9 @@ import uuid import re -from datetime import datetime +import datetime -timestamp = datetime.utcnow() +timestamp = datetime.datetime.now(datetime.UTC) # will break in 2100. FUCK YOU PEOPEL OF THE FUTURE!! version_start = '%02d.%02d.%02d' % (timestamp.year % 100, timestamp.month, timestamp.day) product_code = str(uuid.uuid4()).upper() diff --git a/windows_installer/ted/ted.vdproj b/windows_installer/ted/ted.vdproj index 385dad1..fe1ecda 100644 --- a/windows_installer/ted/ted.vdproj +++ b/windows_installer/ted/ted.vdproj @@ -620,15 +620,15 @@ { "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:ted" - "ProductCode" = "8:{E8F7AF2B-C5BA-45C9-B402-06D279188DC1}" - "PackageCode" = "8:{D91C8E8F-A641-4035-98CB-DFFC707A9BFC}" + "ProductCode" = "8:{952FA867-111C-443C-9AFB-DA084083F038}" + "PackageCode" = "8:{BBBD2CF3-16E0-47E6-B64F-C1C73261D9F2}" "UpgradeCode" = "8:{844F6C2B-DF3B-4A81-9BD5-603401BBA651}" "AspNetVersion" = "8:2.0.50727.0" "RestartWWWService" = "11:FALSE" "RemovePreviousVersions" = "11:TRUE" "DetectNewerInstalledVersion" = "11:FALSE" "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:24.02.1301" + "ProductVersion" = "8:24.07.1801" "Manufacturer" = "8:ted" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:" -- cgit v1.2.3