Skip to content

Commit

Permalink
Fixed VERSIONINFO resource for more compatibility with older Windows
Browse files Browse the repository at this point in the history
versions.
Changed config dialog appearance a bit.
  • Loading branch information
Alexander Tokarev committed Dec 3, 2010
1 parent 9cc5099 commit ca127c0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 16 deletions.
10 changes: 3 additions & 7 deletions tutty/trunk/MSVC/tutty/tutty.dsp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tutty/trunk/MSVC/tuttytel/tuttytel.dsp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions tutty/trunk/config.c
Expand Up @@ -2293,18 +2293,15 @@ void setup_config_box(Config *cfg, struct controlbox *b, struct sesslist *sessli
if (!midsession) {
s = ctrl_getset(b, "Connection", "script",
"Login script options");
ctrl_columns(s, 2, 20, 80);
c = ctrl_checkbox(s, "Enable", 'e',
c = ctrl_checkbox(s, "Enable chat-script processing", 'e',
HELPCTX(connection_script),
dlg_stdcheckbox_handler,
I(offsetof(Config, secondary)));
c->generic.column = 0;
c = ctrl_editbox(s, "Script:", 'i', 84,
HELPCTX(connection_script),
dlg_stdeditbox_handler,
I(offsetof(Config, secondaryscript)),
I(sizeof(((Config *) 0)->secondaryscript)));
c->generic.column = 1;
};

/*
Expand Down
2 changes: 0 additions & 2 deletions tutty/trunk/windows/VERSION.RC2
Expand Up @@ -41,8 +41,6 @@

#if defined SNAPSHOT

#include "build.h"

/* Make SVN_REV mandatory for snapshots, to avoid issuing binary
* version numbers that look like full releases. */
#ifndef SVN_REV
Expand Down
1 change: 1 addition & 0 deletions tutty/trunk/windows/tutty.rc
@@ -1,4 +1,5 @@
#include "rcstuff.h"
#include "build.h"

#define APPNAME "TuTTY"
#define APPDESC "SSH, Telnet and Rlogin client based on PuTTY"
Expand Down
1 change: 1 addition & 0 deletions tutty/trunk/windows/tuttytel.rc
@@ -1,4 +1,5 @@
#include "rcstuff.h"
#include "build.h"

#define APPNAME "TuTTYtel"
#define APPDESC "Telnet and Rlogin client based on PuTTYtel"
Expand Down

0 comments on commit ca127c0

Please sign in to comment.