Merge branch 'main' into feat/macos-test

This commit is contained in:
Zamitto 2024-06-05 21:46:37 -03:00 committed by GitHub
commit 1494d64da4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 2 deletions

View File

@ -25,6 +25,7 @@ nsis:
uninstallDisplayName: ${productName} uninstallDisplayName: ${productName}
createDesktopShortcut: always createDesktopShortcut: always
oneClick: false oneClick: false
allowToChangeInstallationDirectory: true
mac: mac:
entitlementsInherit: build/entitlements.mac.plist entitlementsInherit: build/entitlements.mac.plist
extendInfo: extendInfo:

View File

@ -21,6 +21,11 @@ export const downloadTitle = style({
}, },
}); });
export const repackTitle = style({
maxHeight: "40px",
overflow: "hidden",
});
export const downloaderName = style({ export const downloaderName = style({
color: "#c0c1c7", color: "#c0c1c7",
fontSize: "10px", fontSize: "10px",
@ -112,14 +117,16 @@ export const downloadDetails = style({
export const downloadRightContent = style({ export const downloadRightContent = style({
display: "flex", display: "flex",
alignItems: "center",
padding: `${SPACING_UNIT * 2}px`, padding: `${SPACING_UNIT * 2}px`,
flex: "1", flex: "1",
gap: `${SPACING_UNIT}px`, gap: `${SPACING_UNIT}px`,
}); });
export const downloadActions = style({ export const downloadActions = style({
height: "fit-content",
display: "flex", display: "flex",
alignItems: "center", alignItems: "stretch",
gap: `${SPACING_UNIT}px`, gap: `${SPACING_UNIT}px`,
}); });

View File

@ -101,7 +101,7 @@ export function Downloads() {
if (game.progress === 1) { if (game.progress === 1) {
return ( return (
<> <>
<p>{game.repack?.title}</p> <p className={styles.repackTitle}>{game.repack?.title}</p>
<p>{t("completed")}</p> <p>{t("completed")}</p>
</> </>
); );