File tree Expand file tree Collapse file tree
UnigineEditorPlugin_Python3Scripting Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Pluging for scripting by python3 in Unigine Editor https://unigine.com/get-unigi
88
99* License of plugin: MIT
1010* For code editor used: https://github.com/Megaxela/QCodeEditor - under MIT license
11+ * Build-in Python-3.10.1 https://github.com/python/cpython/tree/v3.10.1 - under Python Software Foundation license
1112* Unigine SDK 2.14.1 - tested on ` Community Free `
1213
1314![ scoreboard] ( preview.gif )
Original file line number Diff line number Diff line change @@ -5,7 +5,9 @@ if (CMAKE_BUILD_TYPE MATCHES "Debug")
55endif ()
66project (${proj_name} CXX )
77
8- set (PYTHON3SCRIPTING_VERSION "0.0.1" )
8+ # set(PYTHON3SCRIPTING_VERSION "0.0.2")
9+ file (STRINGS "../version" PYTHON3SCRIPTING_VERSION )
10+
911add_definitions (-DPYTHON3SCRIPTING_VERSION= "${PYTHON3SCRIPTING_VERSION} " )
1012add_subdirectory (QCodeEditor )
1113
Original file line number Diff line number Diff line change @@ -275,10 +275,12 @@ void UnigineEditorPlugin_Python3Scripting::about() {
275275 msgBox.setText (
276276 " <h2>Python3Scripting</h2> <br>"
277277 " Version: " + QString (PYTHON3SCRIPTING_VERSION) + " <br>"
278- " Source-code: <a href='https://github.com/opensource- unigine-plugins/unigine-2.14- editor-plugin- python3scripting'>https://github.com/opensource- unigine-plugins/unigine-2.14- editor-plugin -python3scripting</a> <br>"
278+ " Source-code: <a href='https://github.com/unigine-plugins/unigine-editor-python3scripting'>https://github.com/unigine-plugins/unigine-editor-python3scripting</a> <br>"
279279 " <hr/>"
280- " Author(s):<ul>"
281- " <li>Evgenii Sopov (mrseakg@gmail.com) </li>"
280+ " Components and author(s):<ul>"
281+ " <li>Build-in Python-3.10.1 (Python Software Foundation): <a href='https://github.com/python/cpython/tree/v3.10.1'>https://github.com/python/cpython/tree/v3.10.1</a></li>"
282+ " <li>Build-in QCodeEditor (MIT License): <a href='https://github.com/Megaxela/QCodeEditor'>https://github.com/Megaxela/QCodeEditor</a> </li>"
283+ " <li>Evgenii Sopov (mrseakg@gmail.com) </li>"
282284 " </ul><hr>"
283285 // + sFileLicenseContent
284286 );
You can’t perform that action at this time.
0 commit comments