diff --git a/.vscode/launch.json b/.vscode/launch.json index d8dea1a7..4d693b06 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -63,7 +63,7 @@ "name": "Python: DumbPaintTool", "type": "debugpy", "request": "launch", - "program": "tools/dumbPaintTool.py", + "program": "apps/dumbPaintTool.py", "console": "integratedTerminal", "justMyCode": true, "env": { @@ -73,7 +73,7 @@ "name": "Python: DumbPaintTool File", "type": "debugpy", "request": "launch", - "program": "tools/dumbPaintTool.py", + "program": "apps/dumbPaintTool.py", "console": "integratedTerminal", "justMyCode": true, "env": { diff --git a/README.md b/README.md index ab3729a7..3a6fc0bf 100644 --- a/README.md +++ b/README.md @@ -54,10 +54,10 @@ Be inspired by [the Tutorials](https://github.com/ceccopierangiolieugenio/pyTerm ## [Api Definitions](https://ceccopierangiolieugenio.github.io/pyTermTk-Docs/index.html#api-reference) Don't get bored by the [Api Definitions](https://ceccopierangiolieugenio.github.io/pyTermTk-Docs/index.html#api-reference) -## [ttkDesigner](https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/tools/ttkDesigner) +## [ttkDesigner](https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/ttkDesigner) Smell deliciousness with the official [pyTermTk](https://github.com/ceccopierangiolieugenio/pyTermTk) tool for designing and building Text-based user interfaces ([TUI](https://en.wikipedia.org/wiki/Text-based_user_interface)s) -## [theDumbPaintTool](https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/tools/dumbPaintTool) +## [theDumbPaintTool](https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/dumbPaintTool) Unravel your inner artist with [The Terminal ASCII Photoshop](https://ceccopierangiolieugenio.itch.io/dumb-paint-tool) --- @@ -100,7 +100,7 @@ python3 tests/test.ui.018.TextEdit.Pygments.py README.md --- ## Projects using [pyTermTk](https://github.com/ceccopierangiolieugenio/pyTermTk) -- [ttkDesigner](https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/tools/ttkDesigner) - the official [pyTermTk](https://github.com/ceccopierangiolieugenio/pyTermTk) tool for designing and building Text-based user interfaces ([TUI](https://en.wikipedia.org/wiki/Text-based_user_interface)s) +- [ttkDesigner](https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/ttkDesigner) - the official [pyTermTk](https://github.com/ceccopierangiolieugenio/pyTermTk) tool for designing and building Text-based user interfaces ([TUI](https://en.wikipedia.org/wiki/Text-based_user_interface)s) - [the DumbPaintTool](https://ceccopierangiolieugenio.itch.io/dumb-paint-tool) - The Terminal ASCII Photoshop - [tlogg](https://github.com/ceccopierangiolieugenio/tlogg) - A fast, advanced log explorer. - [ttkode](https://github.com/ceccopierangiolieugenio/ttkode) - TerminalToolKit (Studio) Code (editor) diff --git a/TermTk/TTkUiTools/uiloader.py b/TermTk/TTkUiTools/uiloader.py index 317c46eb..805cf04c 100644 --- a/TermTk/TTkUiTools/uiloader.py +++ b/TermTk/TTkUiTools/uiloader.py @@ -36,7 +36,7 @@ TTkUiSignature = "TTkUi/Document" class TTkUiLoader(): '''TTkUiLoader - .. _ttkDesigner: https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/tools/ttkDesigner + .. _ttkDesigner: https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/ttkDesigner `ttkdesigner Tutorial `_ diff --git a/tools/dumbPaintTool.py b/apps/dumbPaintTool.py similarity index 100% rename from tools/dumbPaintTool.py rename to apps/dumbPaintTool.py diff --git a/tools/dumbPaintTool/README.md b/apps/dumbPaintTool/README.md similarity index 98% rename from tools/dumbPaintTool/README.md rename to apps/dumbPaintTool/README.md index dd59ac04..5f400b81 100644 --- a/tools/dumbPaintTool/README.md +++ b/apps/dumbPaintTool/README.md @@ -10,7 +10,7 @@ ![dpt hero](https://github.com/ceccopierangiolieugenio/pyTermTk/assets/8876552/005b31a9-d9d6-4799-be17-5a3e478a4703) -## [the Dumb Paint Tool](https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/tools/dumbPaintTool) +## [the Dumb Paint Tool](https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/dumbPaintTool) A Uber SourcesOpen Super Duper Powerful and User-Friendly ASCII/ANSI/UTF-8 Terminal art editor, basically the Terminal ASCII Photoshop diff --git a/tools/dumbPaintTool/__init__.py b/apps/dumbPaintTool/__init__.py similarity index 100% rename from tools/dumbPaintTool/__init__.py rename to apps/dumbPaintTool/__init__.py diff --git a/tools/dumbPaintTool/__main__.py b/apps/dumbPaintTool/__main__.py similarity index 100% rename from tools/dumbPaintTool/__main__.py rename to apps/dumbPaintTool/__main__.py diff --git a/tools/dumbPaintTool/app/__init__.py b/apps/dumbPaintTool/app/__init__.py similarity index 100% rename from tools/dumbPaintTool/app/__init__.py rename to apps/dumbPaintTool/app/__init__.py diff --git a/tools/dumbPaintTool/app/about.py b/apps/dumbPaintTool/app/about.py similarity index 100% rename from tools/dumbPaintTool/app/about.py rename to apps/dumbPaintTool/app/about.py diff --git a/tools/dumbPaintTool/app/canvaslayer.py b/apps/dumbPaintTool/app/canvaslayer.py similarity index 100% rename from tools/dumbPaintTool/app/canvaslayer.py rename to apps/dumbPaintTool/app/canvaslayer.py diff --git a/tools/dumbPaintTool/app/cfg.py b/apps/dumbPaintTool/app/cfg.py similarity index 100% rename from tools/dumbPaintTool/app/cfg.py rename to apps/dumbPaintTool/app/cfg.py diff --git a/tools/dumbPaintTool/app/const.py b/apps/dumbPaintTool/app/const.py similarity index 100% rename from tools/dumbPaintTool/app/const.py rename to apps/dumbPaintTool/app/const.py diff --git a/tools/dumbPaintTool/app/exportarea.py b/apps/dumbPaintTool/app/exportarea.py similarity index 100% rename from tools/dumbPaintTool/app/exportarea.py rename to apps/dumbPaintTool/app/exportarea.py diff --git a/tools/dumbPaintTool/app/filters/__init__.py b/apps/dumbPaintTool/app/filters/__init__.py similarity index 100% rename from tools/dumbPaintTool/app/filters/__init__.py rename to apps/dumbPaintTool/app/filters/__init__.py diff --git a/tools/dumbPaintTool/app/filters/brightness_contrast.py b/apps/dumbPaintTool/app/filters/brightness_contrast.py similarity index 100% rename from tools/dumbPaintTool/app/filters/brightness_contrast.py rename to apps/dumbPaintTool/app/filters/brightness_contrast.py diff --git a/tools/dumbPaintTool/app/filters/hue_chroma_lightness.py b/apps/dumbPaintTool/app/filters/hue_chroma_lightness.py similarity index 100% rename from tools/dumbPaintTool/app/filters/hue_chroma_lightness.py rename to apps/dumbPaintTool/app/filters/hue_chroma_lightness.py diff --git a/tools/dumbPaintTool/app/glbls.py b/apps/dumbPaintTool/app/glbls.py similarity index 100% rename from tools/dumbPaintTool/app/glbls.py rename to apps/dumbPaintTool/app/glbls.py diff --git a/tools/dumbPaintTool/app/importimage.py b/apps/dumbPaintTool/app/importimage.py similarity index 100% rename from tools/dumbPaintTool/app/importimage.py rename to apps/dumbPaintTool/app/importimage.py diff --git a/tools/dumbPaintTool/app/layersctrl.py b/apps/dumbPaintTool/app/layersctrl.py similarity index 100% rename from tools/dumbPaintTool/app/layersctrl.py rename to apps/dumbPaintTool/app/layersctrl.py diff --git a/tools/dumbPaintTool/app/main.py b/apps/dumbPaintTool/app/main.py similarity index 100% rename from tools/dumbPaintTool/app/main.py rename to apps/dumbPaintTool/app/main.py diff --git a/tools/dumbPaintTool/app/maintemplate.py b/apps/dumbPaintTool/app/maintemplate.py similarity index 100% rename from tools/dumbPaintTool/app/maintemplate.py rename to apps/dumbPaintTool/app/maintemplate.py diff --git a/tools/dumbPaintTool/app/paintarea.py b/apps/dumbPaintTool/app/paintarea.py similarity index 100% rename from tools/dumbPaintTool/app/paintarea.py rename to apps/dumbPaintTool/app/paintarea.py diff --git a/tools/dumbPaintTool/app/painttoolkit.py b/apps/dumbPaintTool/app/painttoolkit.py similarity index 100% rename from tools/dumbPaintTool/app/painttoolkit.py rename to apps/dumbPaintTool/app/painttoolkit.py diff --git a/tools/dumbPaintTool/app/palette.py b/apps/dumbPaintTool/app/palette.py similarity index 100% rename from tools/dumbPaintTool/app/palette.py rename to apps/dumbPaintTool/app/palette.py diff --git a/tools/dumbPaintTool/app/state/__init__.py b/apps/dumbPaintTool/app/state/__init__.py similarity index 100% rename from tools/dumbPaintTool/app/state/__init__.py rename to apps/dumbPaintTool/app/state/__init__.py diff --git a/tools/dumbPaintTool/app/state/brush.py b/apps/dumbPaintTool/app/state/brush.py similarity index 100% rename from tools/dumbPaintTool/app/state/brush.py rename to apps/dumbPaintTool/app/state/brush.py diff --git a/tools/dumbPaintTool/app/state/layers.py b/apps/dumbPaintTool/app/state/layers.py similarity index 100% rename from tools/dumbPaintTool/app/state/layers.py rename to apps/dumbPaintTool/app/state/layers.py diff --git a/tools/dumbPaintTool/app/textarea.py b/apps/dumbPaintTool/app/textarea.py similarity index 100% rename from tools/dumbPaintTool/app/textarea.py rename to apps/dumbPaintTool/app/textarea.py diff --git a/tools/dumbPaintTool/app/toolspanel.py b/apps/dumbPaintTool/app/toolspanel.py similarity index 100% rename from tools/dumbPaintTool/app/toolspanel.py rename to apps/dumbPaintTool/app/toolspanel.py diff --git a/tools/dumbPaintTool/tui/paintToolKit.tui.json b/apps/dumbPaintTool/tui/paintToolKit.tui.json similarity index 100% rename from tools/dumbPaintTool/tui/paintToolKit.tui.json rename to apps/dumbPaintTool/tui/paintToolKit.tui.json diff --git a/tools/dumbPaintTool/tui/quickImport.tui.json b/apps/dumbPaintTool/tui/quickImport.tui.json similarity index 100% rename from tools/dumbPaintTool/tui/quickImport.tui.json rename to apps/dumbPaintTool/tui/quickImport.tui.json diff --git a/tools/dumbPaintTool/tui/tools.tui.json b/apps/dumbPaintTool/tui/tools.tui.json similarity index 100% rename from tools/dumbPaintTool/tui/tools.tui.json rename to apps/dumbPaintTool/tui/tools.tui.json diff --git a/tools/dumbPaintTool/web.ttk.package.json b/apps/dumbPaintTool/web.ttk.package.json similarity index 100% rename from tools/dumbPaintTool/web.ttk.package.json rename to apps/dumbPaintTool/web.ttk.package.json diff --git a/tools/ttkDesigner.py b/apps/ttkDesigner.py similarity index 100% rename from tools/ttkDesigner.py rename to apps/ttkDesigner.py diff --git a/tools/ttkDesigner/README.md b/apps/ttkDesigner/README.md similarity index 96% rename from tools/ttkDesigner/README.md rename to apps/ttkDesigner/README.md index aab921dc..5cc059fc 100644 --- a/tools/ttkDesigner/README.md +++ b/apps/ttkDesigner/README.md @@ -8,7 +8,7 @@ [![screenshot](https://user-images.githubusercontent.com/8876552/236525667-dcdcec6e-1066-4294-bdb0-db98ef8850da.png)](https://pypi.org/project/ttkDesigner) -## [ttkDesigner](https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/tools/ttkDesigner) +## [ttkDesigner](https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/ttkDesigner) **ttkDesigner** is the [pyTermTk](https://github.com/ceccopierangiolieugenio/pyTermTk) tool for designing and building Text-based user interfaces ([TUI](https://en.wikipedia.org/wiki/Text-based_user_interface)s) with [pyTermTk](https://github.com/ceccopierangiolieugenio/pyTermTk) Widgets. You can compose and customize your windows or dialogs in a what-you-see-is-what-you-get (WYSIWYG) manner, and test them interactively. @@ -18,7 +18,7 @@ Widgets and forms created with **ttkDesigner** integrate seamlessly with program tbd ## Install/Upgrade -[ttkDesigner](https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/tools/ttkDesigner) +[ttkDesigner](https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/ttkDesigner) is available on [PyPI](https://pypi.org/project/ttkDesigner/) ```bash pip3 install --upgrade ttkDesigner diff --git a/tools/ttkDesigner/__init__.py b/apps/ttkDesigner/__init__.py similarity index 100% rename from tools/ttkDesigner/__init__.py rename to apps/ttkDesigner/__init__.py diff --git a/tools/ttkDesigner/__main__.py b/apps/ttkDesigner/__main__.py similarity index 100% rename from tools/ttkDesigner/__main__.py rename to apps/ttkDesigner/__main__.py diff --git a/tools/ttkDesigner/app/__init__.py b/apps/ttkDesigner/app/__init__.py similarity index 100% rename from tools/ttkDesigner/app/__init__.py rename to apps/ttkDesigner/app/__init__.py diff --git a/tools/ttkDesigner/app/about.py b/apps/ttkDesigner/app/about.py similarity index 100% rename from tools/ttkDesigner/app/about.py rename to apps/ttkDesigner/app/about.py diff --git a/tools/ttkDesigner/app/cfg.py b/apps/ttkDesigner/app/cfg.py similarity index 100% rename from tools/ttkDesigner/app/cfg.py rename to apps/ttkDesigner/app/cfg.py diff --git a/tools/ttkDesigner/app/designer.py b/apps/ttkDesigner/app/designer.py similarity index 100% rename from tools/ttkDesigner/app/designer.py rename to apps/ttkDesigner/app/designer.py diff --git a/tools/ttkDesigner/app/main.py b/apps/ttkDesigner/app/main.py similarity index 100% rename from tools/ttkDesigner/app/main.py rename to apps/ttkDesigner/app/main.py diff --git a/tools/ttkDesigner/app/menuBarEditor.py b/apps/ttkDesigner/app/menuBarEditor.py similarity index 100% rename from tools/ttkDesigner/app/menuBarEditor.py rename to apps/ttkDesigner/app/menuBarEditor.py diff --git a/tools/ttkDesigner/app/notepad.py b/apps/ttkDesigner/app/notepad.py similarity index 100% rename from tools/ttkDesigner/app/notepad.py rename to apps/ttkDesigner/app/notepad.py diff --git a/tools/ttkDesigner/app/propertyeditor.py b/apps/ttkDesigner/app/propertyeditor.py similarity index 100% rename from tools/ttkDesigner/app/propertyeditor.py rename to apps/ttkDesigner/app/propertyeditor.py diff --git a/tools/ttkDesigner/app/quickexport.py b/apps/ttkDesigner/app/quickexport.py similarity index 100% rename from tools/ttkDesigner/app/quickexport.py rename to apps/ttkDesigner/app/quickexport.py diff --git a/tools/ttkDesigner/app/signalsloteditor.py b/apps/ttkDesigner/app/signalsloteditor.py similarity index 100% rename from tools/ttkDesigner/app/signalsloteditor.py rename to apps/ttkDesigner/app/signalsloteditor.py diff --git a/tools/ttkDesigner/app/superobj/__init__.py b/apps/ttkDesigner/app/superobj/__init__.py similarity index 100% rename from tools/ttkDesigner/app/superobj/__init__.py rename to apps/ttkDesigner/app/superobj/__init__.py diff --git a/tools/ttkDesigner/app/superobj/supercontrol.py b/apps/ttkDesigner/app/superobj/supercontrol.py similarity index 100% rename from tools/ttkDesigner/app/superobj/supercontrol.py rename to apps/ttkDesigner/app/superobj/supercontrol.py diff --git a/tools/ttkDesigner/app/superobj/superlayout.py b/apps/ttkDesigner/app/superobj/superlayout.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superlayout.py rename to apps/ttkDesigner/app/superobj/superlayout.py diff --git a/tools/ttkDesigner/app/superobj/superlayoutgrid.py b/apps/ttkDesigner/app/superobj/superlayoutgrid.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superlayoutgrid.py rename to apps/ttkDesigner/app/superobj/superlayoutgrid.py diff --git a/tools/ttkDesigner/app/superobj/superlayouthbox.py b/apps/ttkDesigner/app/superobj/superlayouthbox.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superlayouthbox.py rename to apps/ttkDesigner/app/superobj/superlayouthbox.py diff --git a/tools/ttkDesigner/app/superobj/superlayoutvbox.py b/apps/ttkDesigner/app/superobj/superlayoutvbox.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superlayoutvbox.py rename to apps/ttkDesigner/app/superobj/superlayoutvbox.py diff --git a/tools/ttkDesigner/app/superobj/superobj.py b/apps/ttkDesigner/app/superobj/superobj.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superobj.py rename to apps/ttkDesigner/app/superobj/superobj.py diff --git a/tools/ttkDesigner/app/superobj/superwidget.py b/apps/ttkDesigner/app/superobj/superwidget.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superwidget.py rename to apps/ttkDesigner/app/superobj/superwidget.py diff --git a/tools/ttkDesigner/app/superobj/superwidgetabstractscrollarea.py b/apps/ttkDesigner/app/superobj/superwidgetabstractscrollarea.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superwidgetabstractscrollarea.py rename to apps/ttkDesigner/app/superobj/superwidgetabstractscrollarea.py diff --git a/tools/ttkDesigner/app/superobj/superwidgetcontainer.py b/apps/ttkDesigner/app/superobj/superwidgetcontainer.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superwidgetcontainer.py rename to apps/ttkDesigner/app/superobj/superwidgetcontainer.py diff --git a/tools/ttkDesigner/app/superobj/superwidgetframe.py b/apps/ttkDesigner/app/superobj/superwidgetframe.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superwidgetframe.py rename to apps/ttkDesigner/app/superobj/superwidgetframe.py diff --git a/tools/ttkDesigner/app/superobj/superwidgetlist.py b/apps/ttkDesigner/app/superobj/superwidgetlist.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superwidgetlist.py rename to apps/ttkDesigner/app/superobj/superwidgetlist.py diff --git a/tools/ttkDesigner/app/superobj/superwidgetmenubutton.py b/apps/ttkDesigner/app/superobj/superwidgetmenubutton.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superwidgetmenubutton.py rename to apps/ttkDesigner/app/superobj/superwidgetmenubutton.py diff --git a/tools/ttkDesigner/app/superobj/superwidgetradiobutton.py b/apps/ttkDesigner/app/superobj/superwidgetradiobutton.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superwidgetradiobutton.py rename to apps/ttkDesigner/app/superobj/superwidgetradiobutton.py diff --git a/tools/ttkDesigner/app/superobj/superwidgetsplitter.py b/apps/ttkDesigner/app/superobj/superwidgetsplitter.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superwidgetsplitter.py rename to apps/ttkDesigner/app/superobj/superwidgetsplitter.py diff --git a/tools/ttkDesigner/app/superobj/superwidgettextedit.py b/apps/ttkDesigner/app/superobj/superwidgettextedit.py similarity index 100% rename from tools/ttkDesigner/app/superobj/superwidgettextedit.py rename to apps/ttkDesigner/app/superobj/superwidgettextedit.py diff --git a/tools/ttkDesigner/app/treeinspector.py b/apps/ttkDesigner/app/treeinspector.py similarity index 100% rename from tools/ttkDesigner/app/treeinspector.py rename to apps/ttkDesigner/app/treeinspector.py diff --git a/tools/ttkDesigner/app/widgetbox.py b/apps/ttkDesigner/app/widgetbox.py similarity index 100% rename from tools/ttkDesigner/app/widgetbox.py rename to apps/ttkDesigner/app/widgetbox.py diff --git a/tools/ttkDesigner/app/windoweditor.py b/apps/ttkDesigner/app/windoweditor.py similarity index 100% rename from tools/ttkDesigner/app/windoweditor.py rename to apps/ttkDesigner/app/windoweditor.py diff --git a/tools/ttkDesigner/tui/menuBarEditor.tui.json b/apps/ttkDesigner/tui/menuBarEditor.tui.json similarity index 100% rename from tools/ttkDesigner/tui/menuBarEditor.tui.json rename to apps/ttkDesigner/tui/menuBarEditor.tui.json diff --git a/tools/ttkDesigner/tui/newWindow.tui.json b/apps/ttkDesigner/tui/newWindow.tui.json similarity index 100% rename from tools/ttkDesigner/tui/newWindow.tui.json rename to apps/ttkDesigner/tui/newWindow.tui.json diff --git a/tools/ttkDesigner/tui/quickExport.tui.json b/apps/ttkDesigner/tui/quickExport.tui.json similarity index 100% rename from tools/ttkDesigner/tui/quickExport.tui.json rename to apps/ttkDesigner/tui/quickExport.tui.json diff --git a/tools/ttkDesigner/tui/quickImport.tui.json b/apps/ttkDesigner/tui/quickImport.tui.json similarity index 100% rename from tools/ttkDesigner/tui/quickImport.tui.json rename to apps/ttkDesigner/tui/quickImport.tui.json diff --git a/setup.dumbPaintTool.py b/setup.dumbPaintTool.py index 77094dd2..b6234649 100644 --- a/setup.dumbPaintTool.py +++ b/setup.dumbPaintTool.py @@ -17,7 +17,7 @@ setup( description='the Dumb Paint Tool is a Terminal ASCII Photoshop', long_description=long_description, long_description_content_type="text/markdown", - url="https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/tools/dumbPaintTool", + url="https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/dumbPaintTool", classifiers=[ # https://pypi.org/classifiers/ "Programming Language :: Python :: 3", diff --git a/setup.ttkDesigner.py b/setup.ttkDesigner.py index a57293d5..0780fb50 100644 --- a/setup.ttkDesigner.py +++ b/setup.ttkDesigner.py @@ -17,7 +17,7 @@ setup( description='ttkDesigner is a terminal user interface designer for pyTermTk applications', long_description=long_description, long_description_content_type="text/markdown", - url="https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/tools/ttkDesigner", + url="https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/ttkDesigner", classifiers=[ # https://pypi.org/classifiers/ "Programming Language :: Python :: 3", diff --git a/tools/prepareBuild.sh b/tools/prepareBuild.sh index d0875c70..fbfa6576 100755 --- a/tools/prepareBuild.sh +++ b/tools/prepareBuild.sh @@ -73,16 +73,16 @@ case $1 in ;; ttkDesigner) _NAME='ttkDesigner' - _BUILD_LIB='tools/ttkDesigner' + _BUILD_LIB='apps/ttkDesigner' _SETUP='setup.ttkDesigner.py' - _README='tools/ttkDesigner/README.md' + _README='apps/ttkDesigner/README.md' _CFG='ttkDesigner/app/cfg.py' ;; dumbPaintTool) _NAME='dumbPaintTool' - _BUILD_LIB='tools/dumbPaintTool' + _BUILD_LIB='apps/dumbPaintTool' _SETUP='setup.dumbPaintTool.py' - _README='tools/dumbPaintTool/README.md' + _README='apps/dumbPaintTool/README.md' _CFG='dumbPaintTool/app/cfg.py' ;; doc) diff --git a/tutorial/examples/ansi.images.json b/tutorial/examples/ansi.images.json index 2694623c..5aeebfc8 100644 --- a/tutorial/examples/ansi.images.json +++ b/tutorial/examples/ansi.images.json @@ -1,6 +1,6 @@ { "compressed":{ - "Note1:" : "HEX Codes thanks to: https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/tools/dumbPaintTool", + "Note1:" : "HEX Codes thanks to: https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/dumbPaintTool", "pepper" : "eJx9Vk1yFjsMfAtW4QhsOMEr/49dughVnCF3CFUsWGTBAsJ7QOBunIRuyZ6xHUgg7u/zKJLVkltz9+Lzh5f/6M+bd/jw6q27fY0foMQqQZKX7KXd/np4PPeOKs1L9Nj8fm0GqdE2/6eXm+7qNAhFvMcKg/eX+yK5SYyS+C0mCTBco5Um9ZAczIR/gAcZJnenifdJPP64dqPipTjJaTGqTbyLPKc5apIznsDmv9kGmwinJiHzZP5YTuxDkiMTlu2MJWFdNh3/YefhZttSbi4SsDissPx5xTmQU6iKaSRZEmGzw288FLsd8qBdgN23xY4UDLOGJB1WGH29jFBCH52iOcN2LYQlaIhZgneKRhWJQlMA18o0nCRFRXNYcFRXib1ThiGZLopmGJrQduuGED1OlxTNDt3oXSIukZv2bltJGAW5e74g7KUcFSwGvory/jgdOAvP3DoDiBeDxZvSP5w2y+F60+FzxQqj+8koamGPM3N8YPFJ5ccrc7Lms6LZoZwHa9WWmMGDtdgUrTbO874CNjswGbxiGhmRzLZdLlSlFAW7XJWXtNQ1BzQdYhIsJgQBS7fpYvCkDBeboK5ySfPjj5N7VLwpqMWBFJE8W+jLZYTbHQ4FNYKwgK5Mdn5cRlAz9IWCkR30kutZp4CV+qHQ21bbCbByAzKgSArWKIkPAFuFHQXsbAP0DcSixfX46GieZDR2pshg3TxJV6SHSWSn7HTZuAOzTsHqh7RQ0bQaoX2LgSWSD6NpozhqBh1IuVNdd27VpFasRGV0aqLeAlZvtQriEDp7qEUhrDnjxLgbhF4yHQeANSiCZGexnvEGZUPTD32jZktIS58+aVONMXXmRDhGBb2dNw3VCVvrcqYcCmk0IFsk+81MJcSPEeYxwyobbgzUIQLoClcUu52zDnSbWEQrzrgMHkZJYWEjOHbGoXiJRehiMdXARrAfmdIdh87mrlJmuPbhocvz5D7+nVyct3ExZ3i6UVai3cmRIl8vqJGbWWuC/4Quc07vQFsVKAS2e1Q8mc3hKbPUIeYZJn8ckervfmluzrOzuSGtnCnbmOI8TB2suVUHAYu3whcBGTKDL1IXWl8/FdcpRrJl4XGaZBgowaayCQ/nPdaNbMf3BYVTN13XzXmogJ3UFNMoEpWsbMMs0bYqWt95OivE5Y3MQ8UZNw9/uLF8BQjry51qf760Hy+NFLm2TH/y7M6GSiAibSTOUno27xWFF43XbdkcpdnfPqjwGzlVkGD9U2363u3Np39/A7RA/Jk=" , "python" : "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" , diff --git a/tutorial/ttkDesigner/textEdit/README.rst b/tutorial/ttkDesigner/textEdit/README.rst index 67d405bb..f79c065b 100644 --- a/tutorial/ttkDesigner/textEdit/README.rst +++ b/tutorial/ttkDesigner/textEdit/README.rst @@ -1,6 +1,6 @@ .. _pyTermTk: https://github.com/ceccopierangiolieugenio/pyTermTk .. _TermTk: https://github.com/ceccopierangiolieugenio/pyTermTk -.. _ttkDesigner: https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/tools/ttkDesigner +.. _ttkDesigner: https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/ttkDesigner .. _Widget: https://ceccopierangiolieugenio.github.io/pyTermTk/autogen.TermTk/TermTk.TTkWidgets.widget.html .. _Textedit: https://ceccopierangiolieugenio.github.io/pyTermTk/autogen.TermTk/TermTk.TTkWidgets.texedit.html