Add web site into Readme

This commit is contained in:
Sergey Kalinin 2018-02-13 13:53:09 +03:00
parent a64b6b0e9a
commit c8c09d2a73
8 changed files with 17 additions and 24 deletions

View File

@ -6,6 +6,11 @@
######################################################### #########################################################
0.4.5 0.4.5
13.02.2018
- Added gray theme
- Fixed work with file from directory (FileBrowser function).
08.02.2018 08.02.2018
- Auto indent added for () [] braces - Auto indent added for () [] braces
- File Browser added. Now we will edited any file without project - File Browser added. Now we will edited any file without project

7
README
View File

@ -1,7 +1,7 @@
###################################################### ######################################################
# Tcl/Tk Project Manager # # Tcl/Tk Project Manager #
# Distributed under GPL # # Distributed under GPL #
# Author: Sergey Kalinin # Author: Sergey Kalinin, http://nuk-svk.ru #
###################################################### ######################################################
ABOUT ABOUT
@ -46,3 +46,4 @@ dederer-a@mail.ru

View File

@ -382,23 +382,3 @@ proc SetVarLang {lang} {
} }
} }

View File

@ -220,7 +220,7 @@ proc FindNext {text {incr 1}} {
} }
## FIND FUNCTION PROCEDURE ## ## FIND FUNCTION PROCEDURE ##
proc FindProc {text findString node} { proc FindProc {text findString node} {
global noteBook global noteBook editor
set pos "0.0" set pos "0.0"
$text see $pos $text see $pos
set line [lindex [split $pos "."] 0] set line [lindex [split $pos "."] 0]
@ -234,6 +234,8 @@ proc FindProc {text findString node} {
set x [expr {$x + [string length $findString]}] set x [expr {$x + [string length $findString]}]
$text tag remove sel 1.0 end $text tag remove sel 1.0 end
$text tag add sel $pos $line.$x $text tag add sel $pos $line.$x
#$text tag configure sel -background $editor(selectbg) -foreground $editor(fg)
$text tag raise sel
focus -force $text focus -force $text
Position Position
return 1 return 1
@ -1244,3 +1246,4 @@ GetOp

View File

@ -396,3 +396,4 @@ focus -force $tree

View File

@ -749,3 +749,4 @@ proc GetExtention {node} {

View File

@ -564,3 +564,4 @@ proc GetTreeForNode {node} {
} }
} }

View File

@ -74,3 +74,4 @@ set color(sql) "#ffff828f0000"