Skip to content

Commit

Permalink
Tagging the 0.76.1.2 release of the KiTTY project.
Browse files Browse the repository at this point in the history
  • Loading branch information
cyd01 committed Jan 1, 2023
1 parent 67490c3 commit bdbd6ab
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion 0.76b_My_PuTTY/version.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define RELEASE 0.76
#define TEXTVER "Release 0.76"
#define SSHVER "-Release-0.76"
#define BINARY_VERSION 0,76,0,9
#define BINARY_VERSION 0,76,1,2
#define SOURCE_COMMIT "unavailable"
2 changes: 1 addition & 1 deletion 0.76b_My_PuTTY/windows/version_minor.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0
2
12 changes: 7 additions & 5 deletions 0.76b_My_PuTTY/windows/window.c
Original file line number Diff line number Diff line change
Expand Up @@ -7665,7 +7665,7 @@ if( !get_param("PUTTY") && conf_get_int(conf, CONF_disablealtgr) ) {
return -1;
}

#ifdef MOD_PERSO
#ifdef MOD_PERSO1
/* Creer un titre de fenetre a partir d'un schema donne
%%f: le folder auquel apprtient le session
%%h: le hostname
Expand Down Expand Up @@ -7769,7 +7769,7 @@ void set_title_internal(TermWin *tw, const char *title) {
}

static void wintw_set_title(TermWin *tw, const char *title_in) {
char *buffer, fmt[256]="%s" ;
char *buffer, fmt[1024]="%s" ;
char *title ;

if( title_in==NULL ) { return ; }
Expand Down Expand Up @@ -7811,9 +7811,11 @@ static void wintw_set_title(TermWin *tw, const char *title_in) {
}
if( GetProtectFlag() ) if( strstr(buffer, " (PROTECTED)")==NULL ) { strcat( buffer, " (PROTECTED)" ) ; }
if( conf_get_bool(conf, CONF_alwaysontop) ) if( strstr(buffer, " (ONTOP)")==NULL ) { strcat( buffer, " (ONTOP)" ) ; }
if( conf_get_bool(conf, CONF_ssh_tunnel_print_in_title) ) if( strstr(buffer, " (SOCKS: ")==NULL ) {
make_title( fmt, " (SOCKS: %s)", "%%d") ;
strcat( buffer, fmt ) ;
if( conf_get_bool(conf, CONF_ssh_tunnel_print_in_title) ) {
if( strstr(buffer, " (SOCKS: ")==NULL ) {
make_title( fmt, " (SOCKS: %s)", "%%d") ;
strcat( buffer, fmt ) ;
}
}
set_title_internal( tw, buffer ) ;
free(title);
Expand Down
2 changes: 1 addition & 1 deletion docs/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.76.1.0
0.76.1.2

0 comments on commit bdbd6ab

Please # to comment.