Skip to content

Commit

Permalink
bump default proton version for gog and epic to proton 9
Browse files Browse the repository at this point in the history
  • Loading branch information
alkazar committed May 7, 2024
1 parent 747a3d4 commit dd2c8a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion chimera_app/compat_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"proton_experimental": "1493710",
"proton_63": "1580130",
"proton_7": "1887720",
"proton_8": "2348590"
"proton_8": "2348590",
"proton_9": "2805730"
}


Expand Down
2 changes: 1 addition & 1 deletion chimera_app/platforms/epic_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def get_shortcut(self, content):
'cmd': '$(epic-store ' + content.content_id + ')',
'dir': self.__get_folder_path(content.content_id),
'tags': list(filter(None, [ "Epic Games Store", status_to_collection_name(content.status) ])),
'compat_tool': content.compat_tool or 'proton_8'
'compat_tool': content.compat_tool or 'proton_9'
}

for img_type in [ 'banner', 'poster', 'background', 'logo', 'icon' ]:
Expand Down
2 changes: 1 addition & 1 deletion chimera_app/platforms/gog.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def get_shortcut(self, content):

if not content.native:
# must specify explicit compat_tool proton version for automatic download to work
shortcut['compat_tool'] = content.compat_tool or 'proton_8'
shortcut['compat_tool'] = content.compat_tool or 'proton_9'

if content.compat_config:
shortcut['compat_config'] = content.compat_config
Expand Down

0 comments on commit dd2c8a1

Please sign in to comment.