diff --git a/0.76_My_PuTTY/tree234.c b/0.76_My_PuTTY/tree234.c index c0935e5..17cdf64 100644 --- a/0.76_My_PuTTY/tree234.c +++ b/0.76_My_PuTTY/tree234.c @@ -534,8 +534,10 @@ void *findrelpos234(tree234 * t, void *e, cmpfn234 cmp, void *toret; /* Only LT / GT relations are permitted with a null query element. */ +#ifndef MOD_PERSO assert(!(equal_permitted && !e)); - +#endif + if (cmp == NULL) cmp = t->cmp; diff --git a/0.76_My_PuTTY/version.h b/0.76_My_PuTTY/version.h index 8587cf1..73f3e43 100644 --- a/0.76_My_PuTTY/version.h +++ b/0.76_My_PuTTY/version.h @@ -1,5 +1,5 @@ #define RELEASE 0.76 #define TEXTVER "Release 0.76" #define SSHVER "-Release-0.76" -#define BINARY_VERSION 0,76,0,1 +#define BINARY_VERSION 0,76,0,2 #define SOURCE_COMMIT "unavailable" diff --git a/0.76_My_PuTTY/windows/version_minor.txt b/0.76_My_PuTTY/windows/version_minor.txt index d00491f..0cfbf08 100644 --- a/0.76_My_PuTTY/windows/version_minor.txt +++ b/0.76_My_PuTTY/windows/version_minor.txt @@ -1 +1 @@ -1 +2 diff --git a/0.76_My_PuTTY/windows/wincons.c b/0.76_My_PuTTY/windows/wincons.c index 7722708..876550c 100644 --- a/0.76_My_PuTTY/windows/wincons.c +++ b/0.76_My_PuTTY/windows/wincons.c @@ -72,6 +72,9 @@ int console_verify_ssh_host_key( ssh2_pick_default_fingerprint(fingerprints); fprintf(stderr, common_fmt, keytype, fingerprints[fptype_default]); + #ifdef MOD_PERSO + if( !GetAutoStoreSSHKeyFlag() ) +#endif if (console_batch_mode) { fputs(console_abandoned_msg, stderr); return 0; @@ -84,7 +87,7 @@ int console_verify_ssh_host_key( line[0] = '\0'; /* fail safe if ReadFile returns no data */ - #ifdef MOD_PERSO +#ifdef MOD_PERSO if( GetAutoStoreSSHKeyFlag() ) { fprintf( stderr, "\nAutostore key is on\n" ); strcpy(line,"y\r\n"); diff --git a/0.76_My_PuTTY/windows/winpgen.c b/0.76_My_PuTTY/windows/winpgen.c index bb3b614..2b39566 100644 --- a/0.76_My_PuTTY/windows/winpgen.c +++ b/0.76_My_PuTTY/windows/winpgen.c @@ -1034,7 +1034,9 @@ void load_key_file(HWND hwnd, struct MainDlgState *state, ret = -2; break; } +#ifndef MOD_PERSO assert(passphrase != NULL); +#endif } else passphrase = dupstr(""); if (type == SSH_KEYTYPE_SSH1) { diff --git a/docs/bitcoin.html b/docs/bitcoin.html index b69b7bc..1c0ae05 100644 --- a/docs/bitcoin.html +++ b/docs/bitcoin.html @@ -3,14 +3,32 @@ -
-

Please Donate To Bitcoin Address: [[address]]

Donation of [[value]] BTC Received. Thank You.
[[error]]
+
+
+
+ +
+ +
-
-
-Bitcoin address:

1KUrsJJidB3GrWFcSgX8tHbYbBn8svtnPb

- - -
+
+
+ Bitcoin address:

3ArLJcH48sS2AWsXwkSosgNNuh7V9ySpKc

+ +
diff --git a/docs/bitcoin.png b/docs/bitcoin.png index a062748..05ebaff 100644 Binary files a/docs/bitcoin.png and b/docs/bitcoin.png differ diff --git a/docs/bitcoin_donate.png b/docs/bitcoin_donate.png new file mode 100644 index 0000000..1d2a792 Binary files /dev/null and b/docs/bitcoin_donate.png differ diff --git a/docs/pages/0.75.md b/docs/pages/0.75.md index a366cd5..29a28fa 100644 --- a/docs/pages/0.75.md +++ b/docs/pages/0.75.md @@ -8,6 +8,8 @@ Almost one year between 0.75 PuTTY version and the previous one. It means many l Here are the patches that are not available anymore in KiTTY * [TuTTY](http://putty.dwalin.ru/) color patch (underlined text in terminal is displayed with different colour) +* [ADB](https://github.com/sztupy/adbputty) patch +* Github Actions automatic build (I know it is note related) Don't hesitate to contact me if you discover something else weird. diff --git a/docs/version.txt b/docs/version.txt index b7bfce2..7668f5e 100644 --- a/docs/version.txt +++ b/docs/version.txt @@ -1 +1 @@ -0.76.0.1 \ No newline at end of file +0.76.0.2 \ No newline at end of file diff --git a/kitty.c b/kitty.c index 96ecefa..8ea7390 100644 --- a/kitty.c +++ b/kitty.c @@ -1301,7 +1301,7 @@ void CreateDefaultIniFile_old( void ) { writeINI( KittyIniFile, INIT_SECTION, "#antiidledelay", "60" ) ; writeINI( KittyIniFile, INIT_SECTION, "#autostoresshkey", "no" ) ; #if (defined MOD_BACKGROUNDIMAGE) && (!defined FLJ) - writeINI( KittyIniFile, INIT_SECTION, "backgroundimage", "no" ) ; + writeINI( KittyIniFile, INIT_SECTION, "bgimage", "no" ) ; #endif writeINI( KittyIniFile, INIT_SECTION, "#bcdelay", "0" ) ; writeINI( KittyIniFile, INIT_SECTION, "capslock", "no" ) ; @@ -5223,7 +5223,7 @@ void LoadParameters( void ) { if( ReadParameter( INIT_SECTION, "autostoresshkey", buffer ) ) { if( !stricmp( buffer, "YES" ) ) SetAutoStoreSSHKeyFlag( 1 ) ; } #if (defined MOD_BACKGROUNDIMAGE) && (!defined FLJ) //if( debug_flag ) - if( ReadParameter( INIT_SECTION, "backgroundimage", buffer ) ) { + if( ReadParameter( INIT_SECTION, "bgimage", buffer ) ) { if( !stricmp( buffer, "NO" ) ) SetBackgroundImageFlag( 0 ) ; if( !stricmp( buffer, "YES" ) ) SetBackgroundImageFlag( 1 ) ; // Broken en 0.71 ==> on desactive } diff --git a/kitty_ini.txt b/kitty_ini.txt index 5b720ae..8565cbd 100644 --- a/kitty_ini.txt +++ b/kitty_ini.txt @@ -67,7 +67,7 @@ autoreconnect=yes ;autostoresshkey=no ; backgroundimage: enable/disable the background image feature -backgroundimage=no +bgimage=no ; bcdelay: time delay between each character in automatic features (autocommand, login script, user function ...) ;bcdelay=0