Closed BanCrash closed 6 years ago
I have an idea to solve this:
First, here could be added all games (hidden, uninstalled and installed) regardless the settings.
Then, will be selected on every filter the necessary games. For example, for uninstalled games:
for i, tGame in ipairs(T_ALL_GAMES) do
if tGame[E_GAME_KEYS.NOT_INSTALLED] == true then
if (tGame[E_GAME_KEYS.HIDDEN] and T_SETTINGS[E_SETTING_KEYS.SHOW_HIDDEN_GAMES])
or not tGame[E_GAME_KEYS.HIDDEN] then
table.insert(tResult, tGame)
end
end
end
I will work on this solution and made a PR when it's done.
Hello, I found two issues with the feature of showing uninstalled and hidden games:
If you have a game that is uninstalled and hidden, even disabling show hidden games that game are showing on the filtering of uninstalled games. For example, I have ABZU on Steam uninstalled and hidden. I enable show uninstalled games, but disable show hidden games. So, teorically, ABZU shouldn't be showed when I use Steam:uninstalled filter, but it is showed.
If you disable show uninstalled games, if you use for example steam:uninstalled, it says "No matches", even having uninstalled games that are unhidden.