Homebrew Suggest use SD:\wiiu\install instead of SD:\install

pelago

Member
OP
Member
Joined
Feb 20, 2006
Messages
1,019
Trophies
0
XP
565
Country
It may be too long established and too hard to change this, but if I may make a suggestion: It seems better to me if the "install" folder that disc2app and WUP Installer uses was a subfolder of the "wiiu" folder, so sitting side-by-side with "apps". It could be called "install" or maybe "wupinstall", but the important thing is that I think it should be within "wiiu" rather than at the root of the SD card.

Justification: neatness (especially for OCD types), but also clarity, especially if the same SD card is used for multiple purposes or for multiple systems. The "wiiu" folder already exists, so let's use it for more than just the "apps" subfolder.

I realise this would mean updates to disc2app, WUP Installer and its various forks, as well as updates to various guides and tutorials, and it will be some effort. Paging @dimok @Yardape8000 @Benoit934 @EyeKey for their opinions.
 
  • Like
Reactions: ole and LaPingas
D

Deleted User

Guest
Why tho?
It doesn't change anything and just confuses majority of users. [Imagine searching it when you forgot...]
 

DinohScene

Gay twink catboy
Global Moderator
Joined
Oct 11, 2011
Messages
22,530
Trophies
4
Location
Восторг
XP
22,743
Country
Antarctica
Yeah and you said especially for OCD type of people. If you had OCD you'd delete the folder straight away after installing stuff anyway.

People with data OCD create organized folder structures to store everything on a central place and use SD cards/USB drives to store it temporarily.
I know cause I am one ;')
 
  • Like
Reactions: Minasodrom

ScarletDreamz

[Debug Mode]
Member
Joined
Feb 16, 2015
Messages
3,967
Trophies
1
Location
/dev/sda1
XP
4,380
Country
United States
It may be too long established and too hard to change this, but if I may make a suggestion: It seems better to me if the "install" folder that disc2app and WUP Installer uses was a subfolder of the "wiiu" folder, so sitting side-by-side with "apps". It could be called "install" or maybe "wupinstall", but the important thing is that I think it should be within "wiiu" rather than at the root of the SD card.

Justification: neatness (especially for OCD types), but also clarity, especially if the same SD card is used for multiple purposes or for multiple systems. The "wiiu" folder already exists, so let's use it for more than just the "apps" subfolder.

I realise this would mean updates to disc2app, WUP Installer and its various forks, as well as updates to various guides and tutorials, and it will be some effort. Paging @dimok @Yardape8000 @Benoit934 @EyeKey for their opinions.
Here, On wupinstaller mod y open main.c

and look for:
Code:
static void GetInstallDir(char *dest, int size)
{
   DIR *dirPtr;
   struct dirent *dirEntry;     
   dirPtr = opendir ("sd:/install/");
   int dirsFound = 0;
   
   if (dirPtr != NULL)
   {
       dirEntry = readdir(dirPtr);
       if (dirEntry != NULL && dirEntry->d_type == DT_DIR)
       {
           seekdir(dirPtr, dirNum);
           dirEntry = readdir(dirPtr);
           closedir (dirPtr);
           if (dirEntry != NULL && dirEntry->d_type == DT_DIR)
               __os_snprintf(dest, size, "install/%s", dirEntry->d_name);
           else
           {
               dirNum--;
               if (dirNum < 0)
                   dirNum = 0;
           }
           dirsFound = 1;
       }
   }
   if (!dirsFound)
   {
       __os_snprintf(dest, size, "install");
       dirNum = 0;
   }
}
and
Code:
static void setAllFolderSelect(bool state)
{
   DIR *dirPtr;
   struct dirent *dirEntry;     
   
   for (int i = 0; i < 1023; i++)
       folderSelect[i] = false;

   if (state)
   {
       dirPtr = opendir ("sd:/install/");
       if (dirPtr != NULL)
       {
           int i = 0;
           while (1)
           {
               dirEntry = readdir(dirPtr);
               if (dirEntry == NULL || dirEntry->d_type != DT_DIR)
                   break;
               folderSelect[i++] = true;
           }
           closedir (dirPtr);
       }
   }
}
Change on both irPtr = opendir ("sd:/install/"); to irPtr = opendir ("sd:/WiiUGamesToInstall/");
Recompile.
Profit.
 
  • Like
Reactions: Jakic007

nexusmtz

Well-Known Member
Member
Joined
Feb 17, 2016
Messages
1,386
Trophies
0
XP
1,425
Country
United States
And if this got done, would the next target be haxchi? tik2sd? wudump? If it makes you uncomfortable, label the card WiiU. Don't use it for anything else.
 

AmandaRose

Do what I do. Hold tight and pretend it’s a plan
Member
Joined
Aug 19, 2015
Messages
10,195
Trophies
1
Location
Glasgow
Website
www.rockstarnorth.com
XP
16,157
Country
United Kingdom
It may be too long established and too hard to change this, but if I may make a suggestion: It seems better to me if the "install" folder that disc2app and WUP Installer uses was a subfolder of the "wiiu" folder, so sitting side-by-side with "apps". It could be called "install" or maybe "wupinstall", but the important thing is that I think it should be within "wiiu" rather than at the root of the SD card.

Justification: neatness (especially for OCD types), but also clarity, especially if the same SD card is used for multiple purposes or for multiple systems. The "wiiu" folder already exists, so let's use it for more than just the "apps" subfolder.

I realise this would mean updates to disc2app, WUP Installer and its various forks, as well as updates to various guides and tutorials, and it will be some effort. Paging @dimok @Yardape8000 @Benoit934 @EyeKey for their opinions.
This is the most pointless request I have seen on the website in a long time.
 

AmandaRose

Do what I do. Hold tight and pretend it’s a plan
Member
Joined
Aug 19, 2015
Messages
10,195
Trophies
1
Location
Glasgow
Website
www.rockstarnorth.com
XP
16,157
Country
United Kingdom
It made me think that people with OCD are weird...
Lol my wife has OCD and even she said this thread was dumb and a waste of time. She is constantly moving my games about on the WiiU homescreen she has to have all the Mario games together then all the Zeldas ect and then they are all put in the order they first came out ect. Me I would just have them in any old order and not care lol.
 

xtheman

Well-Known Member
Member
Joined
Jan 28, 2016
Messages
5,837
Trophies
0
Location
???
XP
3,790
Country
United States
People seem to not think about allowing to install from both /install/ and /wiiu/install/

As for anyone who needs to install from anywhere, use sys config tool and it can install from any directory.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    Sonic Angel Knight @ Sonic Angel Knight: Time to just download more ram