Skip to content

Commit f57c4f2

Browse files
committed
Fix versions and components list (added more information about licenses)
1 parent 5fb06e5 commit f57c4f2

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)

UnigineEditorPlugin_Python3Scripting/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ if (CMAKE_BUILD_TYPE MATCHES "Debug")
55
endif()
66
project(${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+
911
add_definitions(-DPYTHON3SCRIPTING_VERSION="${PYTHON3SCRIPTING_VERSION}")
1012
add_subdirectory(QCodeEditor)
1113

UnigineEditorPlugin_Python3Scripting/src/UnigineEditorPlugin_Python3Scripting.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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
);

0 commit comments

Comments
 (0)