From c8914d4aee5b03191587dd9b4ae2836df48665fb Mon Sep 17 00:00:00 2001 From: pommicket Date: Sun, 24 Sep 2023 10:40:38 -0400 Subject: bump version fix fs_file_size on windows --- README.md | 1 + control | 2 +- make.bat | 2 +- os-win.c | 1 + ted.h | 2 +- windows_installer/ted/ted.vdproj | 6 +++--- 6 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 24998c8..bf957ae 100644 --- a/README.md +++ b/README.md @@ -325,6 +325,7 @@ Then run `make.bat release`. 2.5.1 Bug fixes 2023 Aug 26 2.6 LSP diagnostics, LSP over TCP, GDScript support, & more 2023 Sep 10 2.6.1 LSP-related bugfixes 2023 Sep 14 +2.6.2 fix cursor position issue, nicer logging, status in title bar 2023 Sep 24 ## License diff --git a/control b/control index f94bfbd..4fea99c 100644 --- a/control +++ b/control @@ -1,5 +1,5 @@ Package: ted -Version: 2.6.1 +Version: 2.6.2 Section: text Priority: optional Architecture: amd64 diff --git a/make.bat b/make.bat index 52ade8d..30de8a4 100644 --- a/make.bat +++ b/make.bat @@ -23,7 +23,7 @@ if _%1 == _ ( ) if _%1 == _release ( cl main.c ted.res /O2 /wd4702 %C_FLAGS% /Fe:ted - devenv windows_installer\ted\ted.vdproj /build "Release|Default" + devenv windows_installer\ted\ted.vdproj /nologo /build "Release|Default" copy /y windows_installer\ted\Release\ted.msi ) if _%1 == _release_with_debug_info cl main.c ted.res /DEBUG /Zi /O2 /wd4702 %C_FLAGS% /Fe:ted diff --git a/os-win.c b/os-win.c index 1ee6fd6..85d6b89 100644 --- a/os-win.c +++ b/os-win.c @@ -51,6 +51,7 @@ int64_t fs_file_size(const char *path) { size = large.QuadPart; } CloseHandle(file); + return size; } FsDirectoryEntry **fs_list_directory(const char *dirname) { diff --git a/ted.h b/ted.h index 27e6cc2..43e2409 100644 --- a/ted.h +++ b/ted.h @@ -22,7 +22,7 @@ extern "C" { #include "command.h" /// Version number -#define TED_VERSION "2.6.1" +#define TED_VERSION "2.6.2" /// 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 f927065..e526036 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:{57EBA176-3202-422A-93DC-234C762F5565}" - "PackageCode" = "8:{B63C253B-5AAA-40CC-B743-1B7CBD0C23CC}" + "ProductCode" = "8:{E112FE60-927A-478C-B2D3-8FFA1D615091}" + "PackageCode" = "8:{623D5160-702F-454D-925C-3339A5819551}" "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.09.1401" + "ProductVersion" = "8:23.09.2400" "Manufacturer" = "8:ted" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:" -- cgit v1.2.3