-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename examples (more simple structure)
* BasicMinimalPy to BasicPy * BasicMinimalC++ to BasicC++ * BasicPy to IntermediatePy * IntermediatePy to AdvancedPy
- Loading branch information
1 parent
b869b5d
commit d382aab
Showing
109 changed files
with
148 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,9 @@ requires = ['hatchling'] | |
build-backend = 'hatchling.build' | ||
|
||
[project] | ||
name = 'intermediatepy' | ||
name = 'advancedpy' | ||
version = '1.0.0' | ||
description = 'Example of a desktop application of intermediate complexity with a Python backend and EasyApp-based GUI' | ||
description = 'Example of a desktop application of advanced complexity with Python backend and EasyApp-based GUI' | ||
authors = [ | ||
{name = 'Andrew Sazonov', email = '[email protected]'} | ||
] | ||
|
@@ -29,8 +29,8 @@ ci = [ | |
] | ||
|
||
[project.urls] | ||
homepage = 'https://github.com/EasyScience/EasyApp/tree/master/examples/IntermediatePy' | ||
homepage = 'https://github.com/EasyScience/EasyApp/tree/master/examples/AdvancedPy' | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ['src/IntermediatePy'] | ||
packages = ['src/AdvancedPy'] | ||
#artifacts = ['*.py', '*.qml', 'qmldir'] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
echo "\033[0;34m:::::: Installing python wheel from 'dist/wheel'\033[0m" | ||
python3 -m pip install advancedpy --force-reinstall --find-links=dist/wheel |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"files": [ | ||
"AdvancedPy.qmlproject", | ||
"AdvancedPy/main.py", | ||
"AdvancedPy/main.qml", | ||
"AdvancedPy/Gui/qmldir", | ||
"AdvancedPy/Gui/ApplicationWindow.qml", | ||
"AdvancedPy/Gui/StatusBar.qml", | ||
"AdvancedPy/Gui/Globals/qmldir", | ||
"AdvancedPy/Gui/Globals/ApplicationInfo.qml", | ||
"AdvancedPy/Gui/Globals/BackendWrapper.qml", | ||
"AdvancedPy/Gui/Globals/References.qml", | ||
"AdvancedPy/Gui/Pages/Home/Content.qml", | ||
"AdvancedPy/Gui/Pages/Home/Popups/About.qml", | ||
"AdvancedPy/Gui/Pages/Project/Layout.qml", | ||
"AdvancedPy/Gui/Pages/Project/MainArea/Description.qml", | ||
"AdvancedPy/Gui/Pages/Project/Sidebar/Basic/Layout.qml", | ||
"AdvancedPy/Gui/Pages/Project/Sidebar/Basic/Groups/Examples.qml", | ||
"AdvancedPy/Gui/Pages/Project/Sidebar/Basic/Groups/GetStarted.qml", | ||
"AdvancedPy/Gui/Pages/Project/Sidebar/Basic/Groups/Recent.qml", | ||
"AdvancedPy/Gui/Pages/Project/Sidebar/Basic/Popups/OpenCifFile.qml", | ||
"AdvancedPy/Gui/Pages/Project/Sidebar/Basic/Popups/ProjectDescription.qml", | ||
"AdvancedPy/Gui/Pages/Project/Sidebar/Extra/Layout.qml", | ||
"AdvancedPy/Gui/Pages/Project/Sidebar/Extra/Groups/Scrolling.qml", | ||
"AdvancedPy/Gui/Pages/Project/Sidebar/Text/Layout.qml", | ||
"AdvancedPy/Gui/Pages/Report/Layout.qml", | ||
"AdvancedPy/Gui/Pages/Report/MainArea/Summary.qml", | ||
"AdvancedPy/Gui/Pages/Report/Sidebar/Basic/Layout.qml", | ||
"AdvancedPy/Gui/Pages/Report/Sidebar/Basic/Groups/Export.qml", | ||
"AdvancedPy/Gui/Pages/Report/Sidebar/Extra/Layout.qml", | ||
"AdvancedPy/Gui/Pages/Report/Sidebar/Extra/Groups/Empty.qml", | ||
"AdvancedPy/Backends/qmldir", | ||
"AdvancedPy/Backends/MockBackend.qml", | ||
"AdvancedPy/Backends/MockQml/Project.qml", | ||
"AdvancedPy/Backends/MockQml/Report.qml", | ||
"AdvancedPy/Backends/MockQml/Status.qml", | ||
"AdvancedPy/Backends/MockQml/qmldir", | ||
"AdvancedPy/Backends/real_backend.py", | ||
"AdvancedPy/Backends/real_py/helpers.py", | ||
"AdvancedPy/Backends/real_py/project.py", | ||
"AdvancedPy/Backends/real_py/report.py", | ||
"AdvancedPy/Backends/real_py/status.py" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...cMinimalC++/scripts/add_aliases_to_qrc.py → ...es/BasicC++/scripts/add_aliases_to_qrc.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.