mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 10:46:35 +01:00
PyFalkon: Add __version__ and __version_info__
This commit is contained in:
parent
abd30880a5
commit
27506e3ba1
@ -201,6 +201,15 @@
|
|||||||
</inject-code>
|
</inject-code>
|
||||||
</add-function>
|
</add-function>
|
||||||
|
|
||||||
|
<inject-code class="target" position="end">
|
||||||
|
QList<QByteArray> version = QByteArray(Qz::VERSION).split('.');
|
||||||
|
PyObject *pyFalkonVersion = PyTuple_New(3);
|
||||||
|
for (int i = 0; i < 3; ++i)
|
||||||
|
PyTuple_SET_ITEM(pyFalkonVersion, i, PyInt_FromLong(version[i].toInt()));
|
||||||
|
PyModule_AddObject(module, "__version_info__", pyFalkonVersion);
|
||||||
|
PyModule_AddStringConstant(module, "__version__", Qz::VERSION);
|
||||||
|
</inject-code>
|
||||||
|
|
||||||
<suppress-warning text="Unable to translate type "std::function<QPoint (QSize)>":*"/>
|
<suppress-warning text="Unable to translate type "std::function<QPoint (QSize)>":*"/>
|
||||||
<suppress-warning text="Unable to translate type "std::function<void ()>":*"/>
|
<suppress-warning text="Unable to translate type "std::function<void ()>":*"/>
|
||||||
<suppress-warning text="skipping field 'ClickController::popupClosed'*"/>
|
<suppress-warning text="skipping field 'ClickController::popupClosed'*"/>
|
||||||
|
Loading…
Reference in New Issue
Block a user