├── .github └── ISSUE_TEMPLATE │ └── feature_request.md ├── .gitignore ├── BUILD.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── Themes ├── dark-blue.json ├── dark.json ├── light-fire.json ├── light.json ├── monokai.json ├── neutral-green.json ├── ocean.json ├── vulcano.json └── winter.json ├── app_data_ ├── data.json └── version.json ├── config.json ├── images ├── bell-default.png ├── bell-update.png ├── close.png ├── logo.ico ├── play.png ├── png-logo.png ├── run.png ├── ss.png ├── ss2.png └── ss3.png ├── requirements.txt └── src ├── Core ├── edit_manager.py ├── file_manager.py ├── misc_manager.py ├── run.py ├── session.py ├── templates.py ├── theme_manager.py ├── view_manager.py └── web.py ├── GUI ├── diff.py ├── gui.py ├── info_win.py ├── kilo_tools.py ├── minimap.py ├── paint.py ├── profile.py ├── right_panel.py ├── status_bar.py ├── tab_bar.py ├── text_editor.py └── treeview.py ├── Server ├── client.py ├── competitive_companion.py └── server.py ├── Tools ├── kilonova.py ├── pbinfo.py └── scrap.py ├── Update └── internal.py └── main.py /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/BUILD.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Themes/dark-blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/Themes/dark-blue.json -------------------------------------------------------------------------------- /Themes/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/Themes/dark.json -------------------------------------------------------------------------------- /Themes/light-fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/Themes/light-fire.json -------------------------------------------------------------------------------- /Themes/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/Themes/light.json -------------------------------------------------------------------------------- /Themes/monokai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/Themes/monokai.json -------------------------------------------------------------------------------- /Themes/neutral-green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/Themes/neutral-green.json -------------------------------------------------------------------------------- /Themes/ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/Themes/ocean.json -------------------------------------------------------------------------------- /Themes/vulcano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/Themes/vulcano.json -------------------------------------------------------------------------------- /Themes/winter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/Themes/winter.json -------------------------------------------------------------------------------- /app_data_/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/app_data_/data.json -------------------------------------------------------------------------------- /app_data_/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.6.0" 3 | } -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/config.json -------------------------------------------------------------------------------- /images/bell-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/images/bell-default.png -------------------------------------------------------------------------------- /images/bell-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/images/bell-update.png -------------------------------------------------------------------------------- /images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/images/close.png -------------------------------------------------------------------------------- /images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/images/logo.ico -------------------------------------------------------------------------------- /images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/images/play.png -------------------------------------------------------------------------------- /images/png-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/images/png-logo.png -------------------------------------------------------------------------------- /images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/images/run.png -------------------------------------------------------------------------------- /images/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/images/ss.png -------------------------------------------------------------------------------- /images/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/images/ss2.png -------------------------------------------------------------------------------- /images/ss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/images/ss3.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/Core/edit_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Core/edit_manager.py -------------------------------------------------------------------------------- /src/Core/file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Core/file_manager.py -------------------------------------------------------------------------------- /src/Core/misc_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Core/misc_manager.py -------------------------------------------------------------------------------- /src/Core/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Core/run.py -------------------------------------------------------------------------------- /src/Core/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Core/session.py -------------------------------------------------------------------------------- /src/Core/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Core/templates.py -------------------------------------------------------------------------------- /src/Core/theme_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Core/theme_manager.py -------------------------------------------------------------------------------- /src/Core/view_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Core/view_manager.py -------------------------------------------------------------------------------- /src/Core/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Core/web.py -------------------------------------------------------------------------------- /src/GUI/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/GUI/diff.py -------------------------------------------------------------------------------- /src/GUI/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/GUI/gui.py -------------------------------------------------------------------------------- /src/GUI/info_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/GUI/info_win.py -------------------------------------------------------------------------------- /src/GUI/kilo_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/GUI/kilo_tools.py -------------------------------------------------------------------------------- /src/GUI/minimap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/GUI/minimap.py -------------------------------------------------------------------------------- /src/GUI/paint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/GUI/paint.py -------------------------------------------------------------------------------- /src/GUI/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/GUI/profile.py -------------------------------------------------------------------------------- /src/GUI/right_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/GUI/right_panel.py -------------------------------------------------------------------------------- /src/GUI/status_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/GUI/status_bar.py -------------------------------------------------------------------------------- /src/GUI/tab_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/GUI/tab_bar.py -------------------------------------------------------------------------------- /src/GUI/text_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/GUI/text_editor.py -------------------------------------------------------------------------------- /src/GUI/treeview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/GUI/treeview.py -------------------------------------------------------------------------------- /src/Server/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Server/client.py -------------------------------------------------------------------------------- /src/Server/competitive_companion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Server/competitive_companion.py -------------------------------------------------------------------------------- /src/Server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Server/server.py -------------------------------------------------------------------------------- /src/Tools/kilonova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Tools/kilonova.py -------------------------------------------------------------------------------- /src/Tools/pbinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Tools/pbinfo.py -------------------------------------------------------------------------------- /src/Tools/scrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Tools/scrap.py -------------------------------------------------------------------------------- /src/Update/internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/Update/internal.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HojdaAdelin/CodeNimble/HEAD/src/main.py --------------------------------------------------------------------------------