update deps
parent
5264e113c3
commit
9fa2bf5e6f
|
@ -237905,7 +237905,7 @@ void nk_glfw3_shutdown(struct nk_glfw* glfw)
|
|||
// - rlyeh, public domain
|
||||
//
|
||||
// changelog:
|
||||
// - ported to V4K api
|
||||
// - ported to FWK api
|
||||
// - namespaced symbols
|
||||
// - diverse win32 fixes
|
||||
// - adaptive cols/rows
|
||||
|
@ -238030,7 +238030,7 @@ static void browser_reload_directory_content(struct browser *browser, const char
|
|||
// remove last '/' if present. ok to overwrite absolute var, file_*() API returns writeable strings.
|
||||
char *dir = absolute; if( dir[ strlen(dir) - 1 ] == '/' ) dir[ strlen(dir) - 1 ] = '\0';
|
||||
|
||||
dir = file_name(dir); // /home/rlyeh/prj/v4k/art -> art
|
||||
dir = file_name(dir); // /home/rlyeh/prj/fwk/art -> art
|
||||
BROWSER_PRINTF("%s\n", dir);
|
||||
|
||||
if( dir[0] != '.' ) // skip special files, folders and internal files like .git or .art.zip
|
||||
|
@ -258319,7 +258319,7 @@ static int https_snprintf( char* s, size_t n, char const* format, ... )
|
|||
#undef _CRT_SECURE_NO_WARNINGS
|
||||
#define _CRT_SECURE_NO_WARNINGS
|
||||
#include <stdlib.h>
|
||||
#define HTTPS_MALLOC( ctx, size ) memset( MALLOC( size ), 0, size ) //< @r-lyeh: unify
|
||||
#define HTTPS_MALLOC( ctx, size ) ( CALLOC( 1, size ) ) //< @r-lyeh: unify
|
||||
#define HTTPS_FREE( ctx, ptr ) ( FREE( ptr ) ) //< @r-lyeh: unify
|
||||
#endif
|
||||
|
||||
|
@ -293226,7 +293226,7 @@ Public domain, BSD, MIT. Choose one.
|
|||
#define TLS_ECDSA_SUPPORTED
|
||||
#endif
|
||||
// suport ecdsa client-side
|
||||
// #define TLS_CLIENT_ECDSA
|
||||
#define TLS_CLIENT_ECDSA
|
||||
// TLS renegotiation is disabled by default (secured or not)
|
||||
// do not uncomment next line!
|
||||
// #define TLS_ACCEPT_SECURE_RENEGOTIATION
|
||||
|
|
|
@ -257,7 +257,7 @@ static int https_snprintf( char* s, size_t n, char const* format, ... )
|
|||
#undef _CRT_SECURE_NO_WARNINGS
|
||||
#define _CRT_SECURE_NO_WARNINGS
|
||||
#include <stdlib.h>
|
||||
#define HTTPS_MALLOC( ctx, size ) memset( MALLOC( size ), 0, size ) //< @r-lyeh: unify
|
||||
#define HTTPS_MALLOC( ctx, size ) ( CALLOC( 1, size ) ) //< @r-lyeh: unify
|
||||
#define HTTPS_FREE( ctx, ptr ) ( FREE( ptr ) ) //< @r-lyeh: unify
|
||||
#endif
|
||||
|
||||
|
@ -35164,7 +35164,7 @@ Public domain, BSD, MIT. Choose one.
|
|||
#define TLS_ECDSA_SUPPORTED
|
||||
#endif
|
||||
// suport ecdsa client-side
|
||||
// #define TLS_CLIENT_ECDSA
|
||||
#define TLS_CLIENT_ECDSA
|
||||
// TLS renegotiation is disabled by default (secured or not)
|
||||
// do not uncomment next line!
|
||||
// #define TLS_ACCEPT_SECURE_RENEGOTIATION
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// - rlyeh, public domain
|
||||
//
|
||||
// changelog:
|
||||
// - ported to V4K api
|
||||
// - ported to FWK api
|
||||
// - namespaced symbols
|
||||
// - diverse win32 fixes
|
||||
// - adaptive cols/rows
|
||||
|
@ -127,7 +127,7 @@ static void browser_reload_directory_content(struct browser *browser, const char
|
|||
// remove last '/' if present. ok to overwrite absolute var, file_*() API returns writeable strings.
|
||||
char *dir = absolute; if( dir[ strlen(dir) - 1 ] == '/' ) dir[ strlen(dir) - 1 ] = '\0';
|
||||
|
||||
dir = file_name(dir); // /home/rlyeh/prj/v4k/art -> art
|
||||
dir = file_name(dir); // /home/rlyeh/prj/fwk/art -> art
|
||||
BROWSER_PRINTF("%s\n", dir);
|
||||
|
||||
if( dir[0] != '.' ) // skip special files, folders and internal files like .git or .art.zip
|
||||
|
|
|
@ -220643,7 +220643,7 @@ void nk_glfw3_shutdown(struct nk_glfw* glfw)
|
|||
// - rlyeh, public domain
|
||||
//
|
||||
// changelog:
|
||||
// - ported to V4K api
|
||||
// - ported to FWK api
|
||||
// - namespaced symbols
|
||||
// - diverse win32 fixes
|
||||
// - adaptive cols/rows
|
||||
|
@ -220768,7 +220768,7 @@ static void browser_reload_directory_content(struct browser *browser, const char
|
|||
// remove last '/' if present. ok to overwrite absolute var, file_*() API returns writeable strings.
|
||||
char *dir = absolute; if( dir[ strlen(dir) - 1 ] == '/' ) dir[ strlen(dir) - 1 ] = '\0';
|
||||
|
||||
dir = file_name(dir); // /home/rlyeh/prj/v4k/art -> art
|
||||
dir = file_name(dir); // /home/rlyeh/prj/fwk/art -> art
|
||||
BROWSER_PRINTF("%s\n", dir);
|
||||
|
||||
if( dir[0] != '.' ) // skip special files, folders and internal files like .git or .art.zip
|
||||
|
@ -241057,7 +241057,7 @@ static int https_snprintf( char* s, size_t n, char const* format, ... )
|
|||
#undef _CRT_SECURE_NO_WARNINGS
|
||||
#define _CRT_SECURE_NO_WARNINGS
|
||||
#include <stdlib.h>
|
||||
#define HTTPS_MALLOC( ctx, size ) memset( MALLOC( size ), 0, size ) //< @r-lyeh: unify
|
||||
#define HTTPS_MALLOC( ctx, size ) ( CALLOC( 1, size ) ) //< @r-lyeh: unify
|
||||
#define HTTPS_FREE( ctx, ptr ) ( FREE( ptr ) ) //< @r-lyeh: unify
|
||||
#endif
|
||||
|
||||
|
@ -275964,7 +275964,7 @@ Public domain, BSD, MIT. Choose one.
|
|||
#define TLS_ECDSA_SUPPORTED
|
||||
#endif
|
||||
// suport ecdsa client-side
|
||||
// #define TLS_CLIENT_ECDSA
|
||||
#define TLS_CLIENT_ECDSA
|
||||
// TLS renegotiation is disabled by default (secured or not)
|
||||
// do not uncomment next line!
|
||||
// #define TLS_ACCEPT_SECURE_RENEGOTIATION
|
||||
|
|
|
@ -596,7 +596,7 @@ details > summary::-webkit-details-marker {
|
|||
|Version: | 2023.7 |
|
||||
|:--------------|:------------|
|
||||
|Branch: | main |
|
||||
|Commit: | 45 |
|
||||
|Commit: | 46 |
|
||||
<!--| Documentation last modified | { {LAST_MODIFIED} } |-->
|
||||
|
||||
# [V·4·K 2023.7 ](https://dev.v4.games/zaklaus/v4k)
|
||||
|
|
Loading…
Reference in New Issue