├── LogCatch_winLauncher.vbs ├── README.md ├── config └── text_color_tags.list ├── old_stuff ├── LogCatch_macLauncher.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── applet │ │ ├── PkgInfo │ │ └── Resources │ │ ├── Scripts │ │ └── main.scpt │ │ ├── applet.icns │ │ ├── applet.rsrc │ │ └── description.rtfd │ │ └── TXT.rtf ├── Please_create_windows_shortcut_lancher_by_yourself.txt ├── icon.png ├── lc_icon.gif ├── lc_icon.png ├── logcatch.bat ├── logcatch.vbs ├── menu.gif ├── menu.png ├── menu2.gif └── screenshot.png ├── runOnShell ├── screenshot_on_mac.png ├── src ├── LogCatch.tcl ├── codes.tcl ├── icon_logcatch.gif ├── importPath.tcl ├── reading │ ├── logtype.tcl │ ├── readLog_brief.tcl │ ├── readLog_long.tcl │ ├── readLog_none.tcl │ ├── readLog_process.tcl │ ├── readLog_studio.tcl │ ├── readLog_tag.tcl │ ├── readLog_threadtime.tcl │ ├── readLog_time.tcl │ └── readLog_time_eclipse.tcl ├── setup_path_for_windows.bat ├── text_color_loader.tcl └── ui │ └── windows.tcl ├── tk_version.sh ├── tk_version_1.sh └── tk_version_2.sh /LogCatch_winLauncher.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/LogCatch_winLauncher.vbs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/README.md -------------------------------------------------------------------------------- /config/text_color_tags.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/config/text_color_tags.list -------------------------------------------------------------------------------- /old_stuff/LogCatch_macLauncher.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/LogCatch_macLauncher.app/Contents/Info.plist -------------------------------------------------------------------------------- /old_stuff/LogCatch_macLauncher.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/LogCatch_macLauncher.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /old_stuff/LogCatch_macLauncher.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /old_stuff/LogCatch_macLauncher.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/LogCatch_macLauncher.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /old_stuff/LogCatch_macLauncher.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/LogCatch_macLauncher.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /old_stuff/LogCatch_macLauncher.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/LogCatch_macLauncher.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /old_stuff/LogCatch_macLauncher.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/LogCatch_macLauncher.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /old_stuff/Please_create_windows_shortcut_lancher_by_yourself.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/Please_create_windows_shortcut_lancher_by_yourself.txt -------------------------------------------------------------------------------- /old_stuff/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/icon.png -------------------------------------------------------------------------------- /old_stuff/lc_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/lc_icon.gif -------------------------------------------------------------------------------- /old_stuff/lc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/lc_icon.png -------------------------------------------------------------------------------- /old_stuff/logcatch.bat: -------------------------------------------------------------------------------- 1 | wish src\LogCatch.tcl --dir src & 2 | -------------------------------------------------------------------------------- /old_stuff/logcatch.vbs: -------------------------------------------------------------------------------- 1 | Set ws = CreateObject("Wscript.Shell") 2 | 3 | ws.run "cmd /c logcatch.bat", vbhide 4 | -------------------------------------------------------------------------------- /old_stuff/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/menu.gif -------------------------------------------------------------------------------- /old_stuff/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/menu.png -------------------------------------------------------------------------------- /old_stuff/menu2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/menu2.gif -------------------------------------------------------------------------------- /old_stuff/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/old_stuff/screenshot.png -------------------------------------------------------------------------------- /runOnShell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/runOnShell -------------------------------------------------------------------------------- /screenshot_on_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/screenshot_on_mac.png -------------------------------------------------------------------------------- /src/LogCatch.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/LogCatch.tcl -------------------------------------------------------------------------------- /src/codes.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/codes.tcl -------------------------------------------------------------------------------- /src/icon_logcatch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/icon_logcatch.gif -------------------------------------------------------------------------------- /src/importPath.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/importPath.tcl -------------------------------------------------------------------------------- /src/reading/logtype.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/reading/logtype.tcl -------------------------------------------------------------------------------- /src/reading/readLog_brief.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/reading/readLog_brief.tcl -------------------------------------------------------------------------------- /src/reading/readLog_long.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/reading/readLog_long.tcl -------------------------------------------------------------------------------- /src/reading/readLog_none.tcl: -------------------------------------------------------------------------------- 1 | # none 2 | proc getLogLevel {line} { 3 | return V 4 | } 5 | -------------------------------------------------------------------------------- /src/reading/readLog_process.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/reading/readLog_process.tcl -------------------------------------------------------------------------------- /src/reading/readLog_studio.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/reading/readLog_studio.tcl -------------------------------------------------------------------------------- /src/reading/readLog_tag.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/reading/readLog_tag.tcl -------------------------------------------------------------------------------- /src/reading/readLog_threadtime.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/reading/readLog_threadtime.tcl -------------------------------------------------------------------------------- /src/reading/readLog_time.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/reading/readLog_time.tcl -------------------------------------------------------------------------------- /src/reading/readLog_time_eclipse.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/reading/readLog_time_eclipse.tcl -------------------------------------------------------------------------------- /src/setup_path_for_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/setup_path_for_windows.bat -------------------------------------------------------------------------------- /src/text_color_loader.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/text_color_loader.tcl -------------------------------------------------------------------------------- /src/ui/windows.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikey8706/LogCatch/HEAD/src/ui/windows.tcl -------------------------------------------------------------------------------- /tk_version.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tk_version_1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # the next line restarts using wish \ 3 | -------------------------------------------------------------------------------- /tk_version_2.sh: -------------------------------------------------------------------------------- 1 | 2 | puts $tk_patchLevel 3 | 4 | exit 0 5 | --------------------------------------------------------------------------------