Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
fix fs_file_size on windows
  • Loading branch information
pommicket committed Sep 24, 2023
1 parent 523029f commit c8914d4
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,7 @@ Then run `make.bat release`.
<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, &amp; more</td> <td>2023 Sep 10</td></tr>
<tr><td>2.6.1</td> <td>LSP-related bugfixes</td> <td>2023 Sep 14</td></tr>
<tr><td>2.6.2</td> <td>fix cursor position issue, nicer logging, status in title bar</td> <td>2023 Sep 24</td></tr>
</table>

## License
Expand Down
2 changes: 1 addition & 1 deletion control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: ted
Version: 2.6.1
Version: 2.6.2
Section: text
Priority: optional
Architecture: amd64
Expand Down
2 changes: 1 addition & 1 deletion make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions os-win.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion ted.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions windows_installer/ted/ted.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -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:"
Expand Down

0 comments on commit c8914d4

Please sign in to comment.