diff options
author | pommicket <pommicket@gmail.com> | 2023-09-10 14:03:37 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-09-10 14:03:37 -0400 |
commit | 1b49244e6427effb62bae8a05038c22e6bec423f (patch) | |
tree | 6b4ffc93e4aea86bd091e08afd3a1237198c8a49 | |
parent | dbc89bb7dfef89ed0e4188ba10459914078f5804 (diff) |
a
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | control | 2 | ||||
-rw-r--r-- | development.md | 2 | ||||
-rwxr-xr-x | keywords.py | 2 | ||||
-rw-r--r-- | main.c | 2 | ||||
-rw-r--r-- | ted.h | 2 | ||||
-rwxr-xr-x[-rw-r--r--] | update-windows-installer.py | 2 | ||||
-rw-r--r-- | windows_installer/ted/ted.vdproj | 6 |
8 files changed, 12 insertions, 7 deletions
@@ -324,6 +324,7 @@ Then, open windows\_installer\\ted\\ted.sln, and build. <tr><td>2.4.3</td> <td>Some font related fixes</td> <td>2023 Aug 1</td></tr> <tr><td>2.5</td> <td>Rename symbol, document links, bug fixes</td> <td>2023 Aug 15</td></tr> <tr><td>2.5.1</td> <td>Bug fixes</td> <td>2023 Aug 26</td></tr> +<tr><td>2.6</td> <td>LSP diagnostics, LSP over TCP, GDScript support, & more</td> <td>2023 Sep 10</td></tr> </table> ## License @@ -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 @@ -1,4 +1,6 @@ /* +TODO: +- what's wrong with clangd diagnostics? FUTURE FEATURES: - autodetect indentation (tabs vs spaces) - custom file/build command associations @@ -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 index eb272a3..495e032 100644..100755 --- 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:" |