mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-24 15:37:23 +00:00
change text rendering
This commit is contained in:
parent
494590475a
commit
61ed3a444f
@ -1,3 +1,6 @@
|
|||||||
|
Ver.2.3.3:
|
||||||
|
* change text rendering from Qt to native
|
||||||
|
|
||||||
Ver.2.3.2:
|
Ver.2.3.2:
|
||||||
+ change network speed units from KB/s to MB/s if value is more than 1000 KB/s (metrics are the same)
|
+ change network speed units from KB/s to MB/s if value is more than 1000 KB/s (metrics are the same)
|
||||||
- fix bug with no actions on link activation (thanks to infans)
|
- fix bug with no actions on link activation (thanks to infans)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
Вер.2.3.3:
|
||||||
|
* изменен рендеринг с Qt на нативный
|
||||||
|
|
||||||
Вер.2.3.2:
|
Вер.2.3.2:
|
||||||
+ добавлено изменение скорости интернета с KB/s на MB/s, если величина более 1000 KB/s
|
+ добавлено изменение скорости интернета с KB/s на MB/s, если величина более 1000 KB/s
|
||||||
- пофикшен баг с отсутствием действия при активации ссылки (спасибо infans)
|
- пофикшен баг с отсутствием действия при активации ссылки (спасибо infans)
|
||||||
|
@ -11,7 +11,7 @@ set (PROJECT_CONTACT "esalexeev@gmail.com")
|
|||||||
set (PROJECT_LICENSE "GPLv3")
|
set (PROJECT_LICENSE "GPLv3")
|
||||||
set (PROJECT_VERSION_MAJOR 2)
|
set (PROJECT_VERSION_MAJOR 2)
|
||||||
set (PROJECT_VERSION_MINOR 3)
|
set (PROJECT_VERSION_MINOR 3)
|
||||||
set (PROJECT_VERSION_PATCH 2)
|
set (PROJECT_VERSION_PATCH 3)
|
||||||
set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
|
set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
|
||||||
|
|
||||||
string (TIMESTAMP CURRENT_DATE "%Y-%m-%d %H:%M" UTC)
|
string (TIMESTAMP CURRENT_DATE "%Y-%m-%d %H:%M" UTC)
|
||||||
|
@ -129,6 +129,7 @@ Item {
|
|||||||
Text {
|
Text {
|
||||||
id: text
|
id: text
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
renderType: Text.NativeRendering
|
||||||
textFormat: Text.RichText
|
textFormat: Text.RichText
|
||||||
wrapMode: Text.NoWrap
|
wrapMode: Text.NoWrap
|
||||||
|
|
||||||
|
@ -67,6 +67,7 @@ Item {
|
|||||||
id: text
|
id: text
|
||||||
height: contentHeight
|
height: contentHeight
|
||||||
width: contentWidth
|
width: contentWidth
|
||||||
|
renderType: Text.NativeRendering
|
||||||
textFormat: Text.RichText
|
textFormat: Text.RichText
|
||||||
wrapMode: Text.NoWrap
|
wrapMode: Text.NoWrap
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user