Commit b70fcb44 authored by runge's avatar runge

x11vnc: -nap is now the default, version str 0.7.1.

parent 5c13bd0c
2005-02-21 Karl Runge <runge@karlrunge.com>
* -nap is now the default, disable with -nonap
* set version to 0.7.1, word tune -help, etc.
2005-02-14 Karl Runge <runge@karlrunge.com> 2005-02-14 Karl Runge <runge@karlrunge.com>
* cleanup -users stuff, add "lurk=" mode * cleanup -users stuff, add "lurk=" mode
* support cde in -solid * support cde in -solid
......
This diff is collapsed.
...@@ -477,7 +477,7 @@ if {$beginner_mode} { ...@@ -477,7 +477,7 @@ if {$beginner_mode} {
set helptext(gui) " set helptext(gui) "
tkx11vnc is a simple frontend to x11vnc. It is currently running in tkx11vnc is a simple frontend to x11vnc. It is currently running in
\"ez\" or \"simple\" mode. For many more options run it in normal \"ez\" or \"simple\" mode. For many more options run it in normal
mode buy toggling \"Misc -> simple_gui\". mode by toggling \"Misc -> simple_gui\".
All menu items have a (?) button one can click on to get more information All menu items have a (?) button one can click on to get more information
about the option or command. about the option or command.
...@@ -666,6 +666,7 @@ proc active_when_starting {item} { ...@@ -666,6 +666,7 @@ proc active_when_starting {item} {
proc help_win {item} { proc help_win {item} {
global helptext helpremote menu_var global helptext helpremote menu_var
global query_ans query_aro global query_ans query_aro
global beginner_mode
set ok 0 set ok 0
set text "Help on $item:\n\n" set text "Help on $item:\n\n"
...@@ -686,7 +687,9 @@ proc help_win {item} { ...@@ -686,7 +687,9 @@ proc help_win {item} {
} elseif {[active_when_starting $item]} { } elseif {[active_when_starting $item]} {
append text " + Can be set at x11vnc startup.\n"; append text " + Can be set at x11vnc startup.\n";
} else { } else {
append text " - Cannot be set at x11vnc startup.\n"; if {! $beginner_mode} {
append text " - Cannot be set at x11vnc startup.\n";
}
} }
append text "\n" append text "\n"
......
...@@ -483,7 +483,7 @@ ...@@ -483,7 +483,7 @@
" set helptext(gui) \"\n" " set helptext(gui) \"\n"
"tkx11vnc is a simple frontend to x11vnc. It is currently running in\n" "tkx11vnc is a simple frontend to x11vnc. It is currently running in\n"
"\\\"ez\\\" or \\\"simple\\\" mode. For many more options run it in normal\n" "\\\"ez\\\" or \\\"simple\\\" mode. For many more options run it in normal\n"
"mode buy toggling \\\"Misc -> simple_gui\\\".\n" "mode by toggling \\\"Misc -> simple_gui\\\".\n"
"\n" "\n"
"All menu items have a (?) button one can click on to get more information\n" "All menu items have a (?) button one can click on to get more information\n"
"about the option or command.\n" "about the option or command.\n"
...@@ -672,6 +672,7 @@ ...@@ -672,6 +672,7 @@
"proc help_win {item} {\n" "proc help_win {item} {\n"
" global helptext helpremote menu_var\n" " global helptext helpremote menu_var\n"
" global query_ans query_aro\n" " global query_ans query_aro\n"
" global beginner_mode\n"
"\n" "\n"
" set ok 0\n" " set ok 0\n"
" set text \"Help on $item:\\n\\n\"\n" " set text \"Help on $item:\\n\\n\"\n"
...@@ -692,7 +693,9 @@ ...@@ -692,7 +693,9 @@
" } elseif {[active_when_starting $item]} {\n" " } elseif {[active_when_starting $item]} {\n"
" append text \" + Can be set at x11vnc startup.\\n\";\n" " append text \" + Can be set at x11vnc startup.\\n\";\n"
" } else {\n" " } else {\n"
" append text \" - Cannot be set at x11vnc startup.\\n\";\n" " if {! $beginner_mode} {\n"
" append text \" - Cannot be set at x11vnc startup.\\n\";\n"
" }\n"
" }\n" " }\n"
" append text \"\\n\"\n" " append text \"\\n\"\n"
"\n" "\n"
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment