-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Humble Choice months as separate Subscriptions (#108)
Beta. No support for installation/activation yet. Games may be duplicated (subscription games vs those coming as owned). tbd
- Loading branch information
1 parent
dd8354f
commit bf1b4a9
Showing
19 changed files
with
711 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from consts import HP, CURRENT_SYSTEM | ||
from consts import IS_MAC, IS_WINDOWS | ||
|
||
|
||
if CURRENT_SYSTEM == HP.WINDOWS: | ||
if IS_WINDOWS: | ||
from local.winappfinder import WindowsAppFinder as AppFinder # noqa | ||
elif CURRENT_SYSTEM == HP.MAC: | ||
elif IS_MAC: | ||
from local.macappfinder import MacAppFinder as AppFinder # type: ignore[misc] # noqa | ||
else: | ||
raise RuntimeError(f'Unsupported system: {CURRENT_SYSTEM}') | ||
raise RuntimeError(f'Unsupported system') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.