diff --git a/native/Assets/Audio/test.mp4 b/native/Assets/Audio/test.mp4 deleted file mode 100644 index 57a209a..0000000 Binary files a/native/Assets/Audio/test.mp4 and /dev/null differ diff --git a/native/Assets/Icons/Jukebox.ico b/native/Assets/Icons/Jukebox.ico deleted file mode 100644 index 2cd345f..0000000 Binary files a/native/Assets/Icons/Jukebox.ico and /dev/null differ diff --git a/native/Assets/Icons/Jukebox.png b/native/Assets/Icons/Jukebox.png deleted file mode 100644 index a0fb3b0..0000000 Binary files a/native/Assets/Icons/Jukebox.png and /dev/null differ diff --git a/native/Assets/Icons/Next.png b/native/Assets/Icons/Next.png deleted file mode 100644 index 2ac54aa..0000000 Binary files a/native/Assets/Icons/Next.png and /dev/null differ diff --git a/native/Assets/Icons/Pause.png b/native/Assets/Icons/Pause.png deleted file mode 100644 index 441b23d..0000000 Binary files a/native/Assets/Icons/Pause.png and /dev/null differ diff --git a/native/Assets/Icons/Play.png b/native/Assets/Icons/Play.png deleted file mode 100644 index 31a2c3b..0000000 Binary files a/native/Assets/Icons/Play.png and /dev/null differ diff --git a/native/Assets/Icons/Previous.png b/native/Assets/Icons/Previous.png deleted file mode 100644 index 2f0c702..0000000 Binary files a/native/Assets/Icons/Previous.png and /dev/null differ diff --git a/native/Assets/Images/Caroline_Polachek_-_Desire,_I_Want_to_Turn_Into_You.png b/native/Assets/Images/Caroline_Polachek_-_Desire,_I_Want_to_Turn_Into_You.png deleted file mode 100644 index 8265000..0000000 Binary files a/native/Assets/Images/Caroline_Polachek_-_Desire,_I_Want_to_Turn_Into_You.png and /dev/null differ diff --git a/native/Assets/Images/Kali-Uchis-Red-Moon-in-Venus.webp b/native/Assets/Images/Kali-Uchis-Red-Moon-in-Venus.webp deleted file mode 100644 index 600a219..0000000 Binary files a/native/Assets/Images/Kali-Uchis-Red-Moon-in-Venus.webp and /dev/null differ diff --git a/native/Assets/Images/Yeule_-_Softscars.png b/native/Assets/Images/Yeule_-_Softscars.png deleted file mode 100644 index ebd9426..0000000 Binary files a/native/Assets/Images/Yeule_-_Softscars.png and /dev/null differ diff --git a/native/Assets/Videos/Free_Test_Data_5MB_AVI.avi b/native/Assets/Videos/Free_Test_Data_5MB_AVI.avi deleted file mode 100644 index fa7d286..0000000 Binary files a/native/Assets/Videos/Free_Test_Data_5MB_AVI.avi and /dev/null differ diff --git a/native/CMakeLists.txt b/native/CMakeLists.txt index 9a31e6d..c650f60 100644 --- a/native/CMakeLists.txt +++ b/native/CMakeLists.txt @@ -21,19 +21,7 @@ qt_add_qml_module(alisa RESOURCES Assets/Images/Boygenius_-_the_record.jpg - Assets/Images/Caroline_Polachek_-_Desire,_I_Want_to_Turn_Into_You.png - Assets/Images/Yeule_-_Softscars.png - - Assets/Icons/Next.png - Assets/Icons/Pause.png - Assets/Icons/Play.png - Assets/Icons/Previous.png - Assets/Icons/Jukebox.ico Assets/Icons/turbo.svg - - Assets/Videos/Free_Test_Data_5MB_AVI.avi - - Assets/Audio/test.mp4 ) set_target_properties(alisa PROPERTIES diff --git a/native/Main.qml b/native/Main.qml index 04820da..8ddd10b 100644 --- a/native/Main.qml +++ b/native/Main.qml @@ -66,7 +66,7 @@ Window { songIndex: 1 title: "Desire, I Want to Turn Into You" authorName: "Caroline Polachek" - imageSource: "Assets/Images/Caroline_Polachek_-_Desire,_I_Want_to_Turn_Into_You.png" + imageSource: "Assets/Images/Boygenius_-_the_record.jpg" } AudioInfoBox { @@ -82,24 +82,9 @@ Window { songIndex: 2 title: "Softscars" authorName: "Yeule" - imageSource: "Assets/Images/Yeule_-_Softscars.png" + imageSource: "Assets/Images/Boygenius_-_the_record.jpg" } - AudioInfoBox { - id: fourthSong - - anchors { - verticalCenter: parent.verticalCenter - left: parent.left - right: parent.right - margins: 20 - } - - songIndex: 3 - title: "Free Test Data" - authorName: "5MB AVI" - videoSource: "qrc:/Alisa/Assets/Videos/Free_Test_Data_5MB_AVI.avi" - } } Rectangle { @@ -124,7 +109,7 @@ Window { horizontalCenterOffset: -70 } - source: "Assets/Icons/Previous.png" + source: "Assets/Images/Boygenius_-_the_record.jpgg" onClicked: playerController.switchToPreviousSong() } @@ -134,7 +119,7 @@ Window { anchors.centerIn: parent - source: playerController.playing ? "Assets/Icons/Pause.png" : "Assets/Icons/Play.png" + source: playerController.playing ? "Assets/Images/Boygenius_-_the_record.jpg" : "Assets/Images/Boygenius_-_the_record.jpg" onClicked: playerController.playPause() } @@ -148,7 +133,7 @@ Window { horizontalCenterOffset: 70 } - source: "Assets/Icons/Next.png" + source: "Assets/Images/Boygenius_-_the_record.jpg" onClicked: playerController.switchToNextSong() }