diff options
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | control | 2 | ||||
m--------- | pcre2 | 0 | ||||
-rw-r--r-- | ted.h | 2 | ||||
-rwxr-xr-x | update-windows-installer.py | 4 | ||||
-rw-r--r-- | windows_installer/ted/ted.vdproj | 6 |
6 files changed, 8 insertions, 7 deletions
@@ -347,6 +347,7 @@ Then run `make.bat release`. <tr><td>2.6.2</td> <td>fix cursor position issue, nicer logging, status in title bar</td> <td>2023 Sep 24</td></tr> <tr><td>2.7.0</td> <td>`.editorconfig` and local `.ted.cfg`</td> <td>2023 Oct 19</td></tr> <tr><td>2.7.1</td> <td>bug fixes, auto-detect indentation</td> <td>2024 Feb 13</td></tr> +<tr><td>2.7.2</td> <td>bug fixes, `sync` setting</td> <td>2024 Jul 17</td></tr> </table> ## License @@ -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 -Subproject 1e146e7343ed5bd893a1617d2b8c0072baa7a99 +Subproject 4fa5b8bd206135447f55e7f5f8d9294474051a4 @@ -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:" |