Skip to content

Commit

Permalink
fix: long game name not wraping
Browse files Browse the repository at this point in the history
  • Loading branch information
victorwads committed Aug 5, 2024
1 parent a3414c9 commit f4f1c76
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

project(QRookie
VERSION 0.3.3
VERSION 0.3.4
DESCRIPTION "Download and install Quest games from ROOKIE Public Mirror (like VRP Rookie Sideloader but for linux)"
HOMEPAGE_URL https://github.com/glaumar/QRookie
LANGUAGES CXX)
Expand Down
1 change: 1 addition & 0 deletions content/Tabs/Devices/ApplicationDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Kirigami.Card {
source: thumbnailPath
title: name
titleAlignment: Qt.AlignLeft | Qt.AlignBottom
titleWrapMode: Text.Wrap
}

footer: Button {
Expand Down
1 change: 1 addition & 0 deletions content/Tabs/Games/GameDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ Kirigami.Card {
source: thumbnailPath
title: name
titleAlignment: Qt.AlignLeft | Qt.AlignBottom
titleWrapMode: Text.Wrap
}

contentItem: ColumnLayout {
Expand Down
1 change: 1 addition & 0 deletions content/Tabs/Users/UsersInstalledDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Kirigami.Card {
source: thumbnailPath
title: name
titleAlignment: Qt.AlignLeft | Qt.AlignBottom
titleWrapMode: Text.Wrap
}

footer: Button {
Expand Down
1 change: 1 addition & 0 deletions content/Tabs/Users/UsersToAddDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Kirigami.Card {
source: thumbnailPath
title: name
titleAlignment: Qt.AlignLeft | Qt.AlignBottom
titleWrapMode: Text.Wrap
}

footer: Button {
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
{
packages.default = pkgs.stdenv.mkDerivation {
pname = "qrookie";
version = "0.3.3";
version = "0.3.4";

src = ./.;

Expand Down
7 changes: 7 additions & 0 deletions io.github.glaumar.QRookie.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@
</provides>
<content_rating type="oars-1.1" />
<releases>
<release date="2024-08-05" version="0.3.4">
<description>
<ul>
<li>fix: long game name not wraping</li>
</ul>
</description>
</release>
<release date="2024-07-18" version="0.3.3">
<description>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion macOs/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<key>CFBundleIdentifier</key>
<string>io.github.glaumar.QRookie</string>
<key>CFBundleVersion</key>
<string>v0.3.3</string>
<string>v0.3.4</string>
<key>CFBundleExecutable</key>
<string>QRookie</string>
<key>CFBundlePackageType</key>
Expand Down
5 changes: 4 additions & 1 deletion macOs/installDependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ install_dependency() {

# Install Homebrew dependencies
echo "Instalando ferramentas via Homebrew..."
brew install cmake make extra-cmake-modules qt vulkan-headers ninja vulkan-loader molten-vk pkg-config node glib python@3.12 p7zip android-platform-tools apktool
brew install cmake make extra-cmake-modules ninja pkg-config
brew install qt@6 vulkan-headers vulkan-loader molten-vk glib
brew install node python@3.12 p7zip
brew install android-platform-tools apktool

# Install cmake dependencies
install_dependency "https://github.com/danvratil/qcoro.git" v0.10.0
Expand Down

0 comments on commit f4f1c76

Please sign in to comment.