Skip to content

Commit

Permalink
Formal release
Browse files Browse the repository at this point in the history
  • Loading branch information
likianta committed Dec 18, 2022
1 parent 8726f0e commit 092a820
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from lk_qtquick_scaffold import *

hot_loader.start('view.qml')
# app.start('view.qml')
from lk_utils import xpath
from qmlease import app
app.run(xpath('view.qml'), debug=True)
2 changes: 1 addition & 1 deletion examples/console_print/main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from lk_qtquick_scaffold import app
from lk_utils import relpath
from qmlease import app
app.run(relpath('view.qml'))
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "qmlease"
version = "3.0.0b1"
version = "3.0.0"
homepage = "https://github.com/likianta/qmlease"
description = "A flexible toolkit for Python programmer to efficiently develop QML graphical user interface."
readme = "README.md"
Expand All @@ -17,7 +17,7 @@ python = "^3.8"
argsense = "*"
lambda-ex = "^1.1.0"
lk-logger = "^5.4.7"
lk-utils = "^2.5.2"
lk-utils = "^2.5.3"
qtpy = "^2.3.0"
pyside6 = { version = "*", optional = true }
pyside2 = { version = "*", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions qmlease/__main__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
usage:
run in command line:
py -m lk_qtquick_scaffold -h
py -m lk_qtquick_scaffold run <qml_file>
py -m lk_qtquick_scaffold run <qml_file> --debug
py -m qmlease -h
py -m qmlease run <qml_file>
py -m qmlease run <qml_file> --debug
...
"""
from argsense import cli
Expand Down
3 changes: 1 addition & 2 deletions qmlease/qmlside/widgets_backend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
from .slider import Slider
from .util import util

# see register method in `~/lk_qtquick_scaffold/application.py >
# def register_backend`.
# see registers in `qmlease/application.py : def register_backend`.
2 changes: 1 addition & 1 deletion qmlease/widgets/LKWidgets/Containers/LKRow.qml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Row {
spacing: pysize.spacing_m

property string alignment: 'vcenter'
// see [lib:lk-qtquick-scaffold/qmlside/layout_helper/layout_helper.py
// see [lib:qmlease/qmlside/layout_helper/layout_helper.py
// : def auto_align : docstring].
property bool autoSize: false

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
argsense >= 0.5.2
lambda-ex >= 1.1.0
lk-logger >= 5.4.7
lk-utils >= 2.5.2
lk-utils >= 2.5.3
# pyside6
qtpy
typing-extensions

0 comments on commit 092a820

Please sign in to comment.