-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from bbtufty/reg-lang
Add region/language preferences
- Loading branch information
Showing
22 changed files
with
1,307 additions
and
151 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
############ | ||
Advanced Use | ||
############ | ||
|
||
Region and Language Priorities | ||
============================== | ||
|
||
For users who want more granular control over which release to grab when there are multiple, we expose region/language | ||
priorities. The menu looks like this: | ||
|
||
.. image:: img/gui_region_language.png | ||
|
||
If there are multiple releases, we parse regions and languages, and will remove any releases that aren't in selected | ||
region or language preferences. At this stage, the ordering of regions and languages is not important. | ||
|
||
Following this, we then score if there are multiple remaining releases. We prioritise region over language, so, for | ||
instance, if you have Europe above USA in the region priority, but language set to English, you would grab the EU | ||
version over the US version. Here, the ordering of the regions and languages is now important! | ||
|
||
This should ensure that you grab 1 preferred release over all others. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
|
||
installation | ||
usage | ||
advanced_usage | ||
changelog | ||
reference_api | ||
|
||
|
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
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,7 +1,9 @@ | ||
from .gui_nxbrew_dl import MainWindow | ||
from .gui_regions_languages import RegionLanguageWindow | ||
from .gui_about import AboutWindow | ||
|
||
__all__ = [ | ||
"MainWindow", | ||
"RegionLanguageWindow", | ||
"AboutWindow", | ||
] |
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.