├── .gitignore ├── .idea ├── .gitignore ├── artifacts │ └── LogNote.xml ├── encodings.xml ├── kotlinc.xml ├── libraries │ ├── KotlinJavaRuntime.xml │ ├── flatlaf_2_1.xml │ └── flatlaf_3_5_1.xml ├── lognote_github.iml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── cmds ├── lognote.bat └── lognote.sh ├── libs ├── flatlaf-2.1.jar └── flatlaf-3.5.1.jar ├── logcmds └── logcat_package.sh ├── res └── images │ ├── appearance_flatdark.png │ ├── appearance_flatlight.png │ ├── apply.png │ ├── bottom.png │ ├── clear.png │ ├── connect.png │ ├── disconnect.png │ ├── filterscmds.png │ ├── filterscmdsitem.png │ ├── keeplog_off.png │ ├── keeplog_on.png │ ├── keeplog_on_dark.png │ ├── logo.png │ ├── pause_off.png │ ├── pause_on.png │ ├── pause_on_dark.png │ ├── refresh.png │ ├── retry_off.png │ ├── retry_on.png │ ├── retry_on_dark.png │ ├── save.png │ ├── scrollback.png │ ├── splitfile_off.png │ ├── splitfile_on.png │ ├── splitfile_on_dark.png │ ├── start.png │ ├── stop.png │ ├── toggle_off.png │ ├── toggle_on.png │ ├── toggle_on_warn.png │ ├── top.png │ ├── trigger_copy.png │ ├── trigger_down.png │ ├── trigger_edit.png │ ├── trigger_remove.png │ ├── trigger_result.png │ ├── trigger_start.png │ ├── trigger_stop.png │ └── trigger_up.png ├── src ├── META-INF │ └── MANIFEST.MF └── com │ └── blogspot │ └── cdcsutils │ └── lognote │ ├── AboutDialog.kt │ ├── AgingTestManager.kt │ ├── AppearanceSettingsDialog.kt │ ├── BookmarkManager.kt │ ├── ButtonPanel.kt │ ├── CheckUpdateDialog.kt │ ├── CmdManager.kt │ ├── ColorButton.kt │ ├── ColorComboBox.kt │ ├── ColorManager.kt │ ├── ColorToggleButton.kt │ ├── ConfigManager.kt │ ├── CustomListManager.kt │ ├── FilterComboBox.kt │ ├── FilterToggleButton.kt │ ├── FiltersManager.kt │ ├── FormatManager.kt │ ├── GoToDialog.kt │ ├── HelpGotoDialog.kt │ ├── Icons.kt │ ├── LogCmdManager.kt │ ├── LogCmdSettingsDialog.kt │ ├── LogColumnTable.kt │ ├── LogColumnTableModel.kt │ ├── LogPanel.kt │ ├── LogTable.kt │ ├── LogTableDialog.kt │ ├── LogTableModel.kt │ ├── Main.kt │ ├── MainUI.kt │ ├── PackageManager.kt │ ├── ProcessList.kt │ ├── PropertiesBase.kt │ ├── RecentFileManager.kt │ ├── Strings.kt │ ├── StringsEn.kt │ ├── StringsKo.kt │ ├── ToolSelectionDialog.kt │ ├── ToolSettingsDialog.kt │ ├── ToolsPane.kt │ ├── TooltipStrings.kt │ ├── TooltipStringsEn.kt │ ├── TooltipStringsKo.kt │ ├── Utils.kt │ └── VStatusPanel.kt └── test_log.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /out 3 | /config.xml 4 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/artifacts/LogNote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/.idea/artifacts/LogNote.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/libraries/KotlinJavaRuntime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/.idea/libraries/KotlinJavaRuntime.xml -------------------------------------------------------------------------------- /.idea/libraries/flatlaf_2_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/.idea/libraries/flatlaf_2_1.xml -------------------------------------------------------------------------------- /.idea/libraries/flatlaf_3_5_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/.idea/libraries/flatlaf_3_5_1.xml -------------------------------------------------------------------------------- /.idea/lognote_github.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/.idea/lognote_github.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/README.md -------------------------------------------------------------------------------- /cmds/lognote.bat: -------------------------------------------------------------------------------- 1 | start javaw -Dfile.encoding=utf8 -Xmx1024m -jar LogNote.jar 2 | 3 | -------------------------------------------------------------------------------- /cmds/lognote.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | java -Dfile.encoding=utf8 -Xmx2048m -jar LogNote.jar 4 | 5 | -------------------------------------------------------------------------------- /libs/flatlaf-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/libs/flatlaf-2.1.jar -------------------------------------------------------------------------------- /libs/flatlaf-3.5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/libs/flatlaf-3.5.1.jar -------------------------------------------------------------------------------- /logcmds/logcat_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/logcmds/logcat_package.sh -------------------------------------------------------------------------------- /res/images/appearance_flatdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/appearance_flatdark.png -------------------------------------------------------------------------------- /res/images/appearance_flatlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/appearance_flatlight.png -------------------------------------------------------------------------------- /res/images/apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/apply.png -------------------------------------------------------------------------------- /res/images/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/bottom.png -------------------------------------------------------------------------------- /res/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/clear.png -------------------------------------------------------------------------------- /res/images/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/connect.png -------------------------------------------------------------------------------- /res/images/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/disconnect.png -------------------------------------------------------------------------------- /res/images/filterscmds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/filterscmds.png -------------------------------------------------------------------------------- /res/images/filterscmdsitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/filterscmdsitem.png -------------------------------------------------------------------------------- /res/images/keeplog_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/keeplog_off.png -------------------------------------------------------------------------------- /res/images/keeplog_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/keeplog_on.png -------------------------------------------------------------------------------- /res/images/keeplog_on_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/keeplog_on_dark.png -------------------------------------------------------------------------------- /res/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/logo.png -------------------------------------------------------------------------------- /res/images/pause_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/pause_off.png -------------------------------------------------------------------------------- /res/images/pause_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/pause_on.png -------------------------------------------------------------------------------- /res/images/pause_on_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/pause_on_dark.png -------------------------------------------------------------------------------- /res/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/refresh.png -------------------------------------------------------------------------------- /res/images/retry_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/retry_off.png -------------------------------------------------------------------------------- /res/images/retry_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/retry_on.png -------------------------------------------------------------------------------- /res/images/retry_on_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/retry_on_dark.png -------------------------------------------------------------------------------- /res/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/save.png -------------------------------------------------------------------------------- /res/images/scrollback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/scrollback.png -------------------------------------------------------------------------------- /res/images/splitfile_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/splitfile_off.png -------------------------------------------------------------------------------- /res/images/splitfile_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/splitfile_on.png -------------------------------------------------------------------------------- /res/images/splitfile_on_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/splitfile_on_dark.png -------------------------------------------------------------------------------- /res/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/start.png -------------------------------------------------------------------------------- /res/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/stop.png -------------------------------------------------------------------------------- /res/images/toggle_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/toggle_off.png -------------------------------------------------------------------------------- /res/images/toggle_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/toggle_on.png -------------------------------------------------------------------------------- /res/images/toggle_on_warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/toggle_on_warn.png -------------------------------------------------------------------------------- /res/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/top.png -------------------------------------------------------------------------------- /res/images/trigger_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/trigger_copy.png -------------------------------------------------------------------------------- /res/images/trigger_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/trigger_down.png -------------------------------------------------------------------------------- /res/images/trigger_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/trigger_edit.png -------------------------------------------------------------------------------- /res/images/trigger_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/trigger_remove.png -------------------------------------------------------------------------------- /res/images/trigger_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/trigger_result.png -------------------------------------------------------------------------------- /res/images/trigger_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/trigger_start.png -------------------------------------------------------------------------------- /res/images/trigger_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/trigger_stop.png -------------------------------------------------------------------------------- /res/images/trigger_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/res/images/trigger_up.png -------------------------------------------------------------------------------- /src/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/AboutDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/AboutDialog.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/AgingTestManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/AgingTestManager.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/AppearanceSettingsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/AppearanceSettingsDialog.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/BookmarkManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/BookmarkManager.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/ButtonPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/ButtonPanel.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/CheckUpdateDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/CheckUpdateDialog.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/CmdManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/CmdManager.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/ColorButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/ColorButton.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/ColorComboBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/ColorComboBox.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/ColorManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/ColorManager.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/ColorToggleButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/ColorToggleButton.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/ConfigManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/ConfigManager.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/CustomListManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/CustomListManager.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/FilterComboBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/FilterComboBox.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/FilterToggleButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/FilterToggleButton.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/FiltersManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/FiltersManager.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/FormatManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/FormatManager.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/GoToDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/GoToDialog.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/HelpGotoDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/HelpGotoDialog.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/Icons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/Icons.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/LogCmdManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/LogCmdManager.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/LogCmdSettingsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/LogCmdSettingsDialog.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/LogColumnTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/LogColumnTable.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/LogColumnTableModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/LogColumnTableModel.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/LogPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/LogPanel.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/LogTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/LogTable.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/LogTableDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/LogTableDialog.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/LogTableModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/LogTableModel.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/Main.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/MainUI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/MainUI.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/PackageManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/PackageManager.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/ProcessList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/ProcessList.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/PropertiesBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/PropertiesBase.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/RecentFileManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/RecentFileManager.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/Strings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/Strings.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/StringsEn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/StringsEn.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/StringsKo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/StringsKo.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/ToolSelectionDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/ToolSelectionDialog.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/ToolSettingsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/ToolSettingsDialog.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/ToolsPane.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/ToolsPane.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/TooltipStrings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/TooltipStrings.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/TooltipStringsEn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/TooltipStringsEn.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/TooltipStringsKo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/TooltipStringsKo.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/Utils.kt -------------------------------------------------------------------------------- /src/com/blogspot/cdcsutils/lognote/VStatusPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/src/com/blogspot/cdcsutils/lognote/VStatusPanel.kt -------------------------------------------------------------------------------- /test_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdcsgit/lognote/HEAD/test_log.txt --------------------------------------------------------------------------------