Fix file names to respect conventions

Important markdown/text files: UPPERCASE.ext
QML module dirs, qml files: PascalCase
Python module dirs, py files, js files: snake_case
Everything else (including icons): hyphen-case
This commit is contained in:
miruka 2019-07-17 13:40:28 -04:00
parent 332b6f1c0d
commit 902ac250b0
20 changed files with 4 additions and 4 deletions

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 153 B

After

Width:  |  Height:  |  Size: 153 B

View File

Before

Width:  |  Height:  |  Size: 288 B

After

Width:  |  Height:  |  Size: 288 B

View File

Before

Width:  |  Height:  |  Size: 347 B

After

Width:  |  Height:  |  Size: 347 B

View File

Before

Width:  |  Height:  |  Size: 364 B

After

Width:  |  Height:  |  Size: 364 B

View File

Before

Width:  |  Height:  |  Size: 344 B

After

Width:  |  Height:  |  Size: 344 B

View File

Before

Width:  |  Height:  |  Size: 471 B

After

Width:  |  Height:  |  Size: 471 B

View File

Before

Width:  |  Height:  |  Size: 235 B

After

Width:  |  Height:  |  Size: 235 B

View File

Before

Width:  |  Height:  |  Size: 585 B

After

Width:  |  Height:  |  Size: 585 B

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

Before

Width:  |  Height:  |  Size: 327 B

After

Width:  |  Height:  |  Size: 327 B

View File

Before

Width:  |  Height:  |  Size: 537 B

After

Width:  |  Height:  |  Size: 537 B

View File

Before

Width:  |  Height:  |  Size: 1.8 MiB

After

Width:  |  Height:  |  Size: 1.8 MiB

View File

@ -9,14 +9,14 @@ Banner {
color: theme.chat.unknownDevices.background color: theme.chat.unknownDevices.background
avatar.visible: false avatar.visible: false
icon.svgName: "unknown_devices_warning" icon.svgName: "unknown-devices-warning"
labelText: "Unknown devices are present in this encrypted room." labelText: "Unknown devices are present in this encrypted room."
buttonModel: [ buttonModel: [
{ {
name: "inspect", name: "inspect",
text: qsTr("Inspect"), text: qsTr("Inspect"),
iconName: "unknown_devices_inspect", iconName: "unknown-devices-inspect",
} }
] ]

View File

@ -67,7 +67,7 @@ HGridLayout {
width: parent.width width: parent.width
HIcon { HIcon {
svgName: "upload_avatar" svgName: "upload-avatar"
dimension: 64 dimension: 64
Layout.alignment: Qt.AlignCenter Layout.alignment: Qt.AlignCenter
} }

View File

@ -25,7 +25,7 @@ Item {
HImage { HImage {
id: mainUIBackground id: mainUIBackground
fillMode: Image.PreserveAspectCrop fillMode: Image.PreserveAspectCrop
source: "../images/login_background.jpg" source: "../images/background.jpg"
sourceSize.width: Screen.width sourceSize.width: Screen.width
sourceSize.height: Screen.height sourceSize.height: Screen.height
anchors.fill: parent anchors.fill: parent