diff options
author | pommicket <pommicket@gmail.com> | 2025-09-30 13:22:53 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-30 13:22:53 -0400 |
commit | 5784112d13024f4f4b68c237324754d54f12cbad (patch) | |
tree | 879906a2f45b68388b9fee0631a512ccd035b7d3 | |
parent | ee9e965fa28ee9d1d38b67e30b179488cbbca4eb (diff) |
Bump version
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | lsp-parse.c | 2 | ||||
-rw-r--r-- | ted.h | 2 | ||||
-rw-r--r-- | windows_installer/ted/ted.vdproj | 6 |
4 files changed, 6 insertions, 5 deletions
@@ -368,6 +368,7 @@ Then run `make.bat release`. <tr><td>2.8.2</td> <td>Fix syntax highlighting bug</td> <td>2025 Jun 27</td></tr> <tr><td>2.8.3</td> <td>Fix annoying auto-indent behaviour</td> <td>2025 Sep 1</td></tr> <tr><td>2.8.4</td> <td>Keep cursor pos on reload, other small improvements</td> <td>2025 Sep 28</td></tr> +<tr><td>2.9.0</td> <td>LSP code actions, bug fixes</td> <td>2025 Sep 30</td></tr> </table> ## License diff --git a/lsp-parse.c b/lsp-parse.c index 3c956e9..5881ec3 100644 --- a/lsp-parse.c +++ b/lsp-parse.c @@ -1109,7 +1109,7 @@ static bool parse_command(LSP *lsp, LSPResponse *response, const JSON *json, JSO command_out->kind = LSP_COMMAND_WORKSPACE_EDIT; return true; } - fprintf(stderr, "Unrecognized command: %s\n", command); + eprint("Unrecognized command: %s\n", command); (void)command_out; return false; } @@ -22,7 +22,7 @@ extern "C" { #include "command.h" /// Version number -#define TED_VERSION "2.8.4" +#define TED_VERSION "2.9.0" /// Maximum path size ted handles. #define TED_PATH_MAX 1024 /// Config filename diff --git a/windows_installer/ted/ted.vdproj b/windows_installer/ted/ted.vdproj index 9bf631c..b9e5a67 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:{C36CA9E0-6E99-42B9-9F94-8869D5DFD9D9}" - "PackageCode" = "8:{4EF1D7F9-DEA9-44C7-9CDA-9B26348DE375}" + "ProductCode" = "8:{943A950E-7D69-4097-B889-3015A528059E}" + "PackageCode" = "8:{F551F5C0-E284-4DC1-B334-88F6AAFE255B}" "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:25.09.2800" + "ProductVersion" = "8:25.09.3000" "Manufacturer" = "8:ted" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:" |