Skip to content

Commit

Permalink
SQLyog 13.3.0 GA
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhyawy committed Jul 25, 2024
1 parent 756d02b commit e30fffa
Show file tree
Hide file tree
Showing 99 changed files with 3,051 additions and 1,319 deletions.
2 changes: 1 addition & 1 deletion build/SQLyogCommunity.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
</ClCompile>
<Link>
<AdditionalDependencies>shfolder.lib;version.lib;Ws2_32.lib;odbc32.lib;odbccp32.lib;wsock32.lib;comctl32.lib;htmlhelp.lib;wininet.lib;imm32.lib;gdiplus.lib;ole32.lib;msimg32.lib;sqlite3.lib;mariadbclient.lib;HTMLayout.lib;pcre.lib;Rpcrt4.lib;shlwapi.lib;vld.lib;winmm.lib;cryptlib.lib;tinyxml2.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>shfolder.lib;version.lib;Ws2_32.lib;odbc32.lib;odbccp32.lib;wsock32.lib;comctl32.lib;htmlhelp.lib;wininet.lib;imm32.lib;gdiplus.lib;ole32.lib;msimg32.lib;sqlite3.lib;mariadbclient.lib;HTMLayout.lib;pcre.lib;Rpcrt4.lib;shlwapi.lib;vld.lib;winmm.lib;cryptlib.lib;tinyxml2.lib;secur32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
<IgnoreSpecificDefaultLibraries>LIBCD.lib;msvcrt.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
Expand Down
2 changes: 1 addition & 1 deletion include/AppInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

#define SQLITE_APPVERSION_MAJOR "10"
#define SQLITE_APPVERSION_MINOR "5"
#define COMPANY_COPYRIGHT "(c) 2001-2023 Webyog Inc."
#define COMPANY_COPYRIGHT "(c) 2001-2024 Webyog Inc."

#define FILEVER MAJOR_VERSION_INT ## , ## MINOR_VERSION_INT ## , ## UPDATE_VERSION_INT ## , ## RELEASE_VERSION_INT
#define STRFILEVER MAJOR_VERSION "." MINOR_VERSION "." STRINGIZE(UPDATE_VERSION_INT) "." STRINGIZE(RELEASE_VERSION_INT)
Expand Down
9 changes: 9 additions & 0 deletions include/MySQLVersionHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,15 @@ wyBool IsMariaDB10309(Tunnel * tunnel, PMYSQL mysql);
//MariaDB 10.5.2 for new privileges
wyBool IsMariaDB100502(Tunnel * tunnel, PMYSQL mysql);

//MariaDB 10.5.0 for new privileges
wyBool IsMariaDB100500(Tunnel * tunnel, PMYSQL mysql);

//MariaDB 10.7.0 for new privileges
wyBool IsMariaDB100700(Tunnel * tunnel, PMYSQL mysql);

//MariaDB 10.10.0 for new privileges
wyBool IsMariaDB101000(Tunnel * tunnel, PMYSQL mysql);

//MySQL 5.7.0 for Virtual/Stored columns
wyBool IsMySQL57(Tunnel * tunnel, PMYSQL mysql);

Expand Down
20 changes: 19 additions & 1 deletion include/TabFields.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,15 @@ class TabFields
//is mariadb version>=10.3.9
wyBool m_ismariadb10309;

//is mariadb version>=10.10.0
wyBool m_ismariadb1010;

//is mariadb version>=10.5.0
wyBool m_ismariadb105;

//is mariadb version>=10.7.0
wyBool m_ismariadb107;

//is mysql version>=5.7
wyBool m_ismysql57;

Expand Down Expand Up @@ -573,7 +582,16 @@ class TabFields
@param index : Index
@returns wyTrue
*/
wyBool HandleSetEnumValidation(HWND &hwndgrid, wyUInt32 &row, wyUInt32 &index);
wyBool HandleSetEnumValidation(HWND &hwndgrid, wyUInt32 &row, wyUInt32 &index);

/// Handles the Inet4, Inet6 and Uiud datatype validation
/**
@param hwndgrid : HANDLE to grid window
@param row : Row number
@param index : Index
@returns wyTrue
*/
wyBool HandleInet4andInet6andUuidValidation(HWND &hwndgrid, wyUInt32 &row, wyUInt32 &index);

/// Handles if duplicate field name is present
/**
Expand Down
4 changes: 2 additions & 2 deletions include/Version.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MAJOR_VERSION_INT 13
#define MINOR_VERSION_INT 2
#define UPDATE_VERSION_INT 1
#define MINOR_VERSION_INT 3
#define UPDATE_VERSION_INT 0
#define RELEASE_VERSION_INT 0
#define EXTRAINFO ""
Loading

0 comments on commit e30fffa

Please sign in to comment.