diff --git a/app/gui/NavigableMessageDialog.qml b/app/gui/NavigableMessageDialog.qml
index bf055286c..12a2e7376 100644
--- a/app/gui/NavigableMessageDialog.qml
+++ b/app/gui/NavigableMessageDialog.qml
@@ -29,8 +29,8 @@ NavigableDialog {
Image {
id: dialogImage
source: (standardButtons & Dialog.Yes) ?
- "qrc:/res/baseline-help_outline-24px.svg" :
- "qrc:/res/baseline-error_outline-24px.svg"
+ "qrc:/res/help_FILL0_wght700_GRAD200_opsz48.svg" :
+ "qrc:/res/error_FILL0_wght700_GRAD200_opsz48.svg"
sourceSize {
// The icon should be square so use the height as the width too
width: 50
diff --git a/app/gui/PcView.qml b/app/gui/PcView.qml
index 031e05408..2e90d03b1 100644
--- a/app/gui/PcView.qml
+++ b/app/gui/PcView.qml
@@ -118,7 +118,7 @@ CenteredGridView {
Image {
id: pcIcon
anchors.horizontalCenter: parent.horizontalCenter
- source: "qrc:/res/desktop_windows-48px.svg"
+ source: "qrc:/res/desktop_windows_FILL0_wght700_GRAD200_opsz48.svg"
sourceSize {
width: 200
height: 200
@@ -132,7 +132,7 @@ CenteredGridView {
anchors.verticalCenter: pcIcon.verticalCenter
anchors.verticalCenterOffset: !model.online ? -18 : -16
visible: !model.statusUnknown && (!model.online || !model.paired)
- source: !model.online ? "qrc:/res/warning_FILL1_wght300_GRAD200_opsz24.svg" : "qrc:/res/baseline-lock-24px.svg"
+ source: !model.online ? "qrc:/res/warning_FILL1_wght700_GRAD200_opsz48.svg" : "qrc:/res/lock_FILL1_wght700_GRAD200_opsz48.svg"
sourceSize {
width: !model.online ? 75 : 70
height: !model.online ? 75 : 70
@@ -332,16 +332,16 @@ CenteredGridView {
{
if (result === -1) {
text = qsTr("The network test could not be performed because none of Moonlight's connection testing servers were reachable from this PC. Check your Internet connection or try again later.")
- imageSrc = "qrc:/res/baseline-warning-24px.svg"
+ imageSrc = "qrc:/res/warning_FILL1_wght700_GRAD200_opsz48.svg"
}
else if (result === 0) {
text = qsTr("This network does not appear to be blocking Moonlight. If you still have trouble connecting, check your PC's firewall settings.") + "\n\n" + qsTr("If you are trying to stream over the Internet, install the Moonlight Internet Hosting Tool on your gaming PC and run the included Internet Streaming Tester to check your gaming PC's Internet connection.")
- imageSrc = "qrc:/res/baseline-check_circle_outline-24px.svg"
+ imageSrc = "qrc:/res/check_circle_FILL0_wght700_GRAD200_opsz48.svg"
}
else {
text = qsTr("Your PC's current network connection seems to be blocking Moonlight. Streaming over the Internet may not work while connected to this network.") + "\n\n" + qsTr("The following network ports were blocked:") + "\n"
text += blockedPorts
- imageSrc = "qrc:/res/baseline-error_outline-24px.svg"
+ imageSrc = "qrc:/res/error_FILL0_wght700_GRAD200_opsz48.svg"
}
// Stop showing the spinner and show the image instead
diff --git a/app/gui/main.qml b/app/gui/main.qml
index fd570867a..5e03afdc3 100644
--- a/app/gui/main.qml
+++ b/app/gui/main.qml
@@ -244,7 +244,7 @@ ApplicationWindow {
// Only make the button visible if the user has navigated somewhere.
visible: stackView.depth > 1
- iconSource: "qrc:/res/arrow_left.svg"
+ iconSource: "qrc:/res/arrow_back_FILL1_wght700_GRAD200_opsz48.svg"
onClicked: goBack()
@@ -302,7 +302,7 @@ ApplicationWindow {
id: addPcButton
visible: qmltypeof(stackView.currentItem, "PcView")
- iconSource: "qrc:/res/ic_add_to_queue_white_48px.svg"
+ iconSource: "qrc:/res/add_to_queue_FILL0_wght700_GRAD200_opsz48.svg"
ToolTip.delay: 1000
ToolTip.timeout: 3000
@@ -329,7 +329,7 @@ ApplicationWindow {
id: updateButton
- iconSource: "qrc:/res/update.svg"
+ iconSource: "qrc:/res/update_FILL1_wght700_GRAD200_opsz48.svg"
ToolTip.delay: 1000
ToolTip.timeout: 3000
@@ -366,7 +366,7 @@ ApplicationWindow {
id: helpButton
visible: SystemProperties.hasBrowser
- iconSource: "qrc:/res/question_mark.svg"
+ iconSource: "qrc:/res/help_FILL1_wght700_GRAD200_opsz48.svg"
ToolTip.delay: 1000
ToolTip.timeout: 3000
@@ -396,7 +396,7 @@ ApplicationWindow {
ToolTip.visible: hovered
ToolTip.text: qsTr("Gamepad Mapper")
- iconSource: "qrc:/res/ic_videogame_asset_white_48px.svg"
+ iconSource: "qrc:/res/videogame_asset_FILL0_wght700_GRAD200_opsz48.svg"
onClicked: navigateTo("qrc:/gui/GamepadMapper.qml", "GamepadMapper")
@@ -408,7 +408,7 @@ ApplicationWindow {
NavigableToolButton {
id: settingsButton
- iconSource: "qrc:/res/settings.svg"
+ iconSource: "qrc:/res/settings_FILL1_wght700_GRAD200_opsz48.svg"
onClicked: navigateTo("qrc:/gui/SettingsView.qml", "SettingsView")
diff --git a/app/res/add_to_queue_FILL0_wght700_GRAD200_opsz48.svg b/app/res/add_to_queue_FILL0_wght700_GRAD200_opsz48.svg
new file mode 100644
index 000000000..6c36966ba
--- /dev/null
+++ b/app/res/add_to_queue_FILL0_wght700_GRAD200_opsz48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/res/arrow_back_FILL1_wght700_GRAD200_opsz48.svg b/app/res/arrow_back_FILL1_wght700_GRAD200_opsz48.svg
new file mode 100644
index 000000000..5422f5ed7
--- /dev/null
+++ b/app/res/arrow_back_FILL1_wght700_GRAD200_opsz48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/res/arrow_left.svg b/app/res/arrow_left.svg
deleted file mode 100644
index 6263a7fc5..000000000
--- a/app/res/arrow_left.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
diff --git a/app/res/baseline-check_circle_outline-24px.svg b/app/res/baseline-check_circle_outline-24px.svg
deleted file mode 100644
index f99e0b757..000000000
--- a/app/res/baseline-check_circle_outline-24px.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/app/res/baseline-error_outline-24px.svg b/app/res/baseline-error_outline-24px.svg
deleted file mode 100644
index 558d70546..000000000
--- a/app/res/baseline-error_outline-24px.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/app/res/baseline-help_outline-24px.svg b/app/res/baseline-help_outline-24px.svg
deleted file mode 100644
index 154904591..000000000
--- a/app/res/baseline-help_outline-24px.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/app/res/baseline-lock-24px.svg b/app/res/baseline-lock-24px.svg
deleted file mode 100644
index 01aec17b2..000000000
--- a/app/res/baseline-lock-24px.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
diff --git a/app/res/baseline-warning-24px.svg b/app/res/baseline-warning-24px.svg
deleted file mode 100644
index 614713095..000000000
--- a/app/res/baseline-warning-24px.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
diff --git a/app/res/check_circle_FILL0_wght700_GRAD200_opsz48.svg b/app/res/check_circle_FILL0_wght700_GRAD200_opsz48.svg
new file mode 100644
index 000000000..906828b6d
--- /dev/null
+++ b/app/res/check_circle_FILL0_wght700_GRAD200_opsz48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/res/desktop_windows-48px.svg b/app/res/desktop_windows-48px.svg
deleted file mode 100644
index 6cb0ceec5..000000000
--- a/app/res/desktop_windows-48px.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
\ No newline at end of file
diff --git a/app/res/desktop_windows_FILL0_wght700_GRAD200_opsz48.svg b/app/res/desktop_windows_FILL0_wght700_GRAD200_opsz48.svg
new file mode 100644
index 000000000..5cb6b9162
--- /dev/null
+++ b/app/res/desktop_windows_FILL0_wght700_GRAD200_opsz48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/res/error_FILL0_wght700_GRAD200_opsz48.svg b/app/res/error_FILL0_wght700_GRAD200_opsz48.svg
new file mode 100644
index 000000000..19cd61928
--- /dev/null
+++ b/app/res/error_FILL0_wght700_GRAD200_opsz48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/res/help_FILL0_wght700_GRAD200_opsz48.svg b/app/res/help_FILL0_wght700_GRAD200_opsz48.svg
new file mode 100644
index 000000000..fdde22328
--- /dev/null
+++ b/app/res/help_FILL0_wght700_GRAD200_opsz48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/res/help_FILL1_wght700_GRAD200_opsz48.svg b/app/res/help_FILL1_wght700_GRAD200_opsz48.svg
new file mode 100644
index 000000000..1a9bd45fe
--- /dev/null
+++ b/app/res/help_FILL1_wght700_GRAD200_opsz48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/res/ic_add_to_queue_white_48px.svg b/app/res/ic_add_to_queue_white_48px.svg
deleted file mode 100644
index 2323513ca..000000000
--- a/app/res/ic_add_to_queue_white_48px.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
\ No newline at end of file
diff --git a/app/res/ic_videogame_asset_white_48px.svg b/app/res/ic_videogame_asset_white_48px.svg
deleted file mode 100644
index c771cf4ee..000000000
--- a/app/res/ic_videogame_asset_white_48px.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
\ No newline at end of file
diff --git a/app/res/lock_FILL1_wght700_GRAD200_opsz48.svg b/app/res/lock_FILL1_wght700_GRAD200_opsz48.svg
new file mode 100644
index 000000000..b89279210
--- /dev/null
+++ b/app/res/lock_FILL1_wght700_GRAD200_opsz48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/res/play_arrow_FILL1_wght700_GRAD200_opsz48.svg b/app/res/play_arrow_FILL1_wght700_GRAD200_opsz48.svg
index b630b2fc8..29f60d96c 100644
--- a/app/res/play_arrow_FILL1_wght700_GRAD200_opsz48.svg
+++ b/app/res/play_arrow_FILL1_wght700_GRAD200_opsz48.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/res/question_mark.svg b/app/res/question_mark.svg
deleted file mode 100644
index a5b615c38..000000000
--- a/app/res/question_mark.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/app/res/settings.svg b/app/res/settings.svg
deleted file mode 100644
index f124d6822..000000000
--- a/app/res/settings.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
diff --git a/app/res/settings_FILL1_wght700_GRAD200_opsz48.svg b/app/res/settings_FILL1_wght700_GRAD200_opsz48.svg
new file mode 100644
index 000000000..42551cc31
--- /dev/null
+++ b/app/res/settings_FILL1_wght700_GRAD200_opsz48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/res/stop_FILL1_wght700_GRAD200_opsz48.svg b/app/res/stop_FILL1_wght700_GRAD200_opsz48.svg
index a0c0a0486..cfed8b46e 100644
--- a/app/res/stop_FILL1_wght700_GRAD200_opsz48.svg
+++ b/app/res/stop_FILL1_wght700_GRAD200_opsz48.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/res/update.svg b/app/res/update.svg
deleted file mode 100644
index f4ba7b166..000000000
--- a/app/res/update.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-
\ No newline at end of file
diff --git a/app/res/update_FILL1_wght700_GRAD200_opsz48.svg b/app/res/update_FILL1_wght700_GRAD200_opsz48.svg
new file mode 100644
index 000000000..da1f7b0b2
--- /dev/null
+++ b/app/res/update_FILL1_wght700_GRAD200_opsz48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/res/videogame_asset_FILL0_wght700_GRAD200_opsz48.svg b/app/res/videogame_asset_FILL0_wght700_GRAD200_opsz48.svg
new file mode 100644
index 000000000..db3ded080
--- /dev/null
+++ b/app/res/videogame_asset_FILL0_wght700_GRAD200_opsz48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/res/warning_FILL1_wght300_GRAD200_opsz24.svg b/app/res/warning_FILL1_wght300_GRAD200_opsz24.svg
deleted file mode 100644
index fe7c51321..000000000
--- a/app/res/warning_FILL1_wght300_GRAD200_opsz24.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/app/res/warning_FILL1_wght700_GRAD200_opsz48.svg b/app/res/warning_FILL1_wght700_GRAD200_opsz48.svg
new file mode 100644
index 000000000..c8ce4ff6b
--- /dev/null
+++ b/app/res/warning_FILL1_wght700_GRAD200_opsz48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/resources.qrc b/app/resources.qrc
index 737517771..06d8ecd40 100644
--- a/app/resources.qrc
+++ b/app/resources.qrc
@@ -1,23 +1,22 @@
- res/ic_videogame_asset_white_48px.svg
- res/desktop_windows-48px.svg
- res/ic_add_to_queue_white_48px.svg
- res/baseline-lock-24px.svg
+ res/add_to_queue_FILL0_wght700_GRAD200_opsz48.svg
+ res/arrow_back_FILL1_wght700_GRAD200_opsz48.svg
+ res/check_circle_FILL0_wght700_GRAD200_opsz48.svg
+ res/desktop_windows_FILL0_wght700_GRAD200_opsz48.svg
+ res/discord.svg
+ res/error_FILL0_wght700_GRAD200_opsz48.svg
+ res/help_FILL0_wght700_GRAD200_opsz48.svg
+ res/help_FILL1_wght700_GRAD200_opsz48.svg
+ res/lock_FILL1_wght700_GRAD200_opsz48.svg
+ res/moonlight.svg
+ res/no_app_image.png
res/play_arrow_FILL1_wght700_GRAD200_opsz48.svg
- res/baseline-warning-24px.svg
- res/warning_FILL1_wght300_GRAD200_opsz24.svg
+ res/settings_FILL1_wght700_GRAD200_opsz48.svg
res/stop_FILL1_wght700_GRAD200_opsz48.svg
- res/no_app_image.png
- res/settings.svg
- res/arrow_left.svg
- res/question_mark.svg
- res/moonlight.svg
- res/update.svg
- res/baseline-help_outline-24px.svg
- res/baseline-error_outline-24px.svg
- res/baseline-check_circle_outline-24px.svg
- res/discord.svg
+ res/update_FILL1_wght700_GRAD200_opsz48.svg
+ res/videogame_asset_FILL0_wght700_GRAD200_opsz48.svg
+ res/warning_FILL1_wght700_GRAD200_opsz48.svg
languages/qml_de.ts
languages/qml_de.qm
languages/qml_fr.ts