From 1b49244e6427effb62bae8a05038c22e6bec423f Mon Sep 17 00:00:00 2001 From: pommicket Date: Sun, 10 Sep 2023 14:03:37 -0400 Subject: a --- README.md | 1 + control | 2 +- development.md | 2 +- keywords.py | 2 +- main.c | 2 ++ ted.h | 2 +- update-windows-installer.py | 2 ++ windows_installer/ted/ted.vdproj | 6 +++--- 8 files changed, 12 insertions(+), 7 deletions(-) mode change 100644 => 100755 update-windows-installer.py diff --git a/README.md b/README.md index 0ecd0c1..aacb3ef 100644 --- a/README.md +++ b/README.md @@ -324,6 +324,7 @@ Then, open windows\_installer\\ted\\ted.sln, and build. 2.4.3 Some font related fixes 2023 Aug 1 2.5 Rename symbol, document links, bug fixes 2023 Aug 15 2.5.1 Bug fixes 2023 Aug 26 +2.6 LSP diagnostics, LSP over TCP, GDScript support, & more 2023 Sep 10 ## License diff --git a/control b/control index 386a638..5f0cf8b 100644 --- a/control +++ b/control @@ -1,5 +1,5 @@ Package: ted -Version: 2.5.1 +Version: 2.6 Section: text Priority: optional Architecture: amd64 diff --git a/development.md b/development.md index e3e0519..ab5a369 100644 --- a/development.md +++ b/development.md @@ -143,6 +143,6 @@ When releasing a new version of `ted`: - Update `Version` in `control` for the `.deb` file. - Run `make ted.deb` on Debian/Ubuntu. - Run `make.bat release` on Windows. -- Run `python update-windows-installer.py`. +- Run `python3 update-windows-installer.py`. - Build `ted.msi`. - Create a new release on GitHub with `ted.deb` and `ted.msi`. diff --git a/keywords.py b/keywords.py index eaf3918..779484b 100755 --- a/keywords.py +++ b/keywords.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 # creates lists of keywords for all languages # to make keyword lookup more efficient, the lists are split up by their first letter diff --git a/main.c b/main.c index 930d6da..e586015 100644 --- a/main.c +++ b/main.c @@ -1,4 +1,6 @@ /* +TODO: +- what's wrong with clangd diagnostics? FUTURE FEATURES: - autodetect indentation (tabs vs spaces) - custom file/build command associations diff --git a/ted.h b/ted.h index 67272b9..1ef3562 100644 --- a/ted.h +++ b/ted.h @@ -22,7 +22,7 @@ extern "C" { #include "command.h" /// Version number -#define TED_VERSION "2.5.1" +#define TED_VERSION "2.6" /// Maximum path size ted handles. #define TED_PATH_MAX 1024 /// Config filename diff --git a/update-windows-installer.py b/update-windows-installer.py old mode 100644 new mode 100755 index eb272a3..495e032 --- a/update-windows-installer.py +++ b/update-windows-installer.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + # update windows installer ProductVersion/ProductCode/PackageCode # this needs to be done for every release of ted diff --git a/windows_installer/ted/ted.vdproj b/windows_installer/ted/ted.vdproj index 91afebf..785cb4d 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:{D45DA042-74C5-4BC5-8B7B-018B58C2DDB1}" - "PackageCode" = "8:{2488749C-919C-497F-A65A-D3ED805AC5B5}" + "ProductCode" = "8:{6F007966-582C-49F8-8EC7-81A9AC6ADD5E}" + "PackageCode" = "8:{C0778A28-595F-4295-926B-8766F6D9C6BC}" "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:23.08.2601" + "ProductVersion" = "8:23.09.1000" "Manufacturer" = "8:ted" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:" -- cgit v1.2.3