Skip to content

Commit f78cec9

Browse files
committed
[Refactor] Update WineManager settings and version fetching logic
- Changed the default count for wine version info fetching from 50 to 15 to optimize performance. - Renamed Wine-GE settings to Proton-GE in the WineManager component for clarity and consistency. - Updated the state initialization to reflect the new Proton-GE settings. - Added a condition to refresh wine version info if no versions are available, enhancing user experience.
1 parent 350a53b commit f78cec9

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

src/backend/wine/manager/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const wineDownloaderInfoStore = new TypeCheckedStoreBackend(
2828

2929
async function updateWineVersionInfos(
3030
fetch = false,
31-
count = 50
31+
count = 15
3232
): Promise<WineVersionInfo[]> {
3333
if (isWindows) {
3434
return []

src/frontend/screens/WineManager/index.tsx

+9-5
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ export default React.memo(function WineManager(): JSX.Element | null {
2828
const { refreshWineVersionInfo, platform } = useContext(ContextProvider)
2929
const isLinux = platform === 'linux'
3030

31-
const winege: WineManagerUISettings = {
32-
type: 'Wine-GE',
33-
value: 'winege',
31+
const protonge: WineManagerUISettings = {
32+
type: 'Proton-GE',
33+
value: 'protonge',
3434
enabled: isLinux
3535
}
3636

@@ -41,13 +41,13 @@ export default React.memo(function WineManager(): JSX.Element | null {
4141
}
4242

4343
const [repository, setRepository] = useState<WineManagerUISettings>(
44-
isLinux ? winege : gamePortingToolkit
44+
isLinux ? protonge : gamePortingToolkit
4545
)
4646
const [wineManagerSettings, setWineManagerSettings] = useState<
4747
WineManagerUISettings[]
4848
>([
49-
{ type: 'Wine-GE', value: 'winege', enabled: isLinux },
5049
{ type: 'Proton-GE', value: 'protonge', enabled: isLinux },
50+
{ type: 'Wine-GE', value: 'winege', enabled: isLinux },
5151
{ type: 'Game-Porting-Toolkit', value: 'toolkit', enabled: !isLinux },
5252
{ type: 'Wine-Crossover', value: 'winecrossover', enabled: !isLinux }
5353
])
@@ -69,6 +69,10 @@ export default React.memo(function WineManager(): JSX.Element | null {
6969
// Track the screen view once
7070
useEffect(() => {
7171
window.api.trackScreen('Compatibility Layer ')
72+
73+
if (wineVersions.length === 0) {
74+
refreshWineVersionInfo(true)
75+
}
7276
}, [])
7377

7478
useEffect(() => {

0 commit comments

Comments
 (0)