Homebrew Wii Browser

  • Thread starter Thread starter drakorex
  • Start date Start date
  • Views Views 92,761
  • Replies Replies 436
  • Likes Likes 5
Crazy idea, and perhaps only a short term solution, but has anyone considered using Abz's masterpack as the download location? - he's constantly and consistently updating - He may be cool refreshing the links for the flowmart channel whenever he updates?
AbdallahTerro, am I right in thinking you're looking for more storage, perhaps a drive(s) with shared admin with drakorex (and others?) could be part of the solution?
Am I right in thinking that flow mart can point to any number of web locations?
If users are downloading individual updates directly, rather than the whole zip package, it may even reduce bandwidth use.
Could WiiBrowser expand a zip that big - into the right folder structure?!?!?!

drakorex - ^Thoughts? BTW I am a klutz, I've only just realised I've completely and utterly not done a flowmart sourceflow cover. Next update :)

EDIT: Another drive/ repository could be mastershoes' emu covers.
 
the huge zip is a must for first time users.
daily dropbox bandwidth is 20GB so not a lot, it happened several times that users nag that links are down or that they cannot download banners and what not.
so if someone has an alternative to DB and likes to expand the pack and share be my guest
 
  • Like
Reactions: spacepimp
Crazy idea, and perhaps only a short term solution, but has anyone considered using Abz's masterpack as the download location? - he's constantly and consistently updating - He may be cool refreshing the links for the flowmart channel whenever he updates?
AbdallahTerro, am I right in thinking you're looking for more storage, perhaps a drive(s) with shared admin with drakorex (and others?) could be part of the solution?
Am I right in thinking that flow mart can point to any number of web locations?
If users are downloading individual updates directly, rather than the whole zip package, it may even reduce bandwidth use.
Could WiiBrowser expand a zip that big - into the right folder structure?!?!?!

drakorex - ^Thoughts? BTW I am a klutz, I've only just realised I've completely and utterly not done a flowmart sourceflow cover. Next update :)

EDIT: Another drive/ repository could be mastershoes' emu covers.
Actually, that is what I'm using, however individual setups must be pulled from it and rehosted. The goal is to allow the user to pick and choose only what thay want and need. The great thing about using dropbox is that the files can be updated and the links remain static. I asked Abz if he wanted to be a part of this, but he declined. Perhaps when it takes off though, he may reconsider.

And please, wait until FlowMart has been released before throwing out anything related to it. Aside from the few people that follow this thread and maybe MS's cover thread, I doubt many are even aware of the project. I'm going for a big reveal. It's a secret to everyone! :)

The current holdup is gave92 hasn't popped in for about a month, and we were trying to sort out multidownloads. In the process, the last working dol got overwritten, so until the wizard returns, I got nothin. And also, I was the only one producing covers. But that part may change in the future.
 
drakorex, the thing is: university has started ;) and I m having much less time for the wiibrowser's project.
I couldn't figure why multiple downloads work just for me, to solve I d need your help and make more tests:
we could do this while you get flowmart ready to work (covers, ecc)
 
Oh, hey. gave92 if you have a copy of flowmart right after you fixed 7z, added music... I need it. Please.
drakorex, the thing is: university has started ;) and I m having much less time for the wiibrowser's project.
I couldn't figure why multiple downloads work just for me, to solve I d need your help and make more tests:
we could do this while you get flowmart ready to work (covers, ecc)
Well speak of the devil...:evil: I actually have me a new recruit that has volunteered to do covers in his spare time, so things are creepin along. I do however need an old rev. The one right after you got 7z to work. If you can get me that, I might be more compelled to keep on truckin.

EDIT: Ok, that's creepy. I did not type the sentence above the quote, yet it is exactly what I need.:ohnoes:
 
Actually, that is what I'm using, however individual setups must be pulled from it and rehosted. The goal is to allow the user to pick and choose only what thay want and need. The great thing about using dropbox is that the files can be updated and the links remain static. I asked Abz if he wanted to be a part of this, but he declined. Perhaps when it takes off though, he may reconsider.

And please, wait until FlowMart has been released before throwing out anything related to it. Aside from the few people that follow this thread and maybe MS's cover thread, I doubt many are even aware of the project. I'm going for a big reveal. It's a secret to everyone! :)

The current holdup is gave92 hasn't popped in for about a month, and we were trying to sort out multidownloads. In the process, the last working dol got overwritten, so until the wizard returns, I got nothin. And also, I was the only one producing covers. But that part may change in the future.
Sorry - I won't throw out a cover, I promise!:)

I suppose I'm suggesting a focus on making it easy for the people who upload content to add it to flowmart, even if it's just giving specific users rights to click a refresh button and asking them to click it whenever they update. I'm sure abz will come on board when things get rolling, flowmart is just a great idea.


drakorex, the thing is: university has started ;) and I m having much less time for the wiibrowser's project.
I couldn't figure why multiple downloads work just for me, to solve I d need your help and make more tests:
we could do this while you get flowmart ready to work (covers, ecc)

How can I help out with testing?
 
drakorex, here's the wiiflow plugin version dol.
I thank you kindly, good sir!
23_28_106.gif
 
Under the spoiler is the (very short!) source for bootopera. It looks for a "cfg.url" file and boots opera to the url contained in that file. I was wondering if it might be modified to accept arguments from wiiflow instead. perhaps loading .url files (or .WWW, perhaps ignoring everything after the contained url).
I could then set it up as a wiiflow plugin, with a coverflow of bookmarks to wii suitable web content - (facebook, flash games, etc.)

BootOpera:
http://wiibrew.org/wiki/BootOpera
#include <gccore.h>
#include <wiiuse/wpad.h>
#include <ogc/ios.h>
#include <fat.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

static void *xfb = NULL;
static GXRModeObj *vmode = NULL;
char * url = "";

void setupVideo() {

VIDEO_Init();
vmode = VIDEO_GetPreferredMode(NULL);
VIDEO_Configure(vmode);
xfb = MEM_K0_TO_K1(SYS_AllocateFramebuffer(vmode));
console_init (xfb, 20, 20, vmode->fbWidth, vmode->xfbHeight, vmode->fbWidth*VI_DISPLAY_PIX_SZ);
VIDEO_Configure(vmode);
VIDEO_ClearFrameBuffer(vmode, xfb, COLOR_BLACK);
VIDEO_SetNextFramebuffer(xfb);
VIDEO_SetBlack(0);
VIDEO_Flush();
VIDEO_WaitVSync();
if (vmode->viTVMode & VI_NON_INTERLACE)
VIDEO_WaitVSync();

}

s32 launchTitle(u64 TitleID, char * url) {
WII_Initialize();
if (url[0] != 0) {
//Load title with specified URL as an argument
return WII_LaunchTitleWithArgs(TitleID, 0, url, NULL);
} else {
return WII_LaunchTitle(TitleID);
}
}

s32 readCfg(char * path) {
int c = 0;
int i = 0;
FILE *f = fopen(path, "r");
if (f == NULL)
return 0;
fseek(f , 0 , SEEK_END);
u32 size = ftell(f);
rewind(f);
url = (char*) malloc(sizeof(char)*size);
while (c != EOF) {
c = fgetc(f);
if (31 < c && c < 127)
url[i++] = c;
}
url = '\0';
fclose(f);
return 1;
}

int main(int argc, char **argv) {
setupVideo();
fatInitDefault();
s32 ret;
if (argc > 0) {
char path[MAXPATHLEN];
int len = strlen(argv[0]);
int i = 0;
for(i = len; argv[0] != '/'; i--);
if(i < 1)
readCfg("sd:/url.cfg");
else {
argv[0] = 0;
sprintf(path, "%s/url.cfg", argv[0]);
readCfg(path);
}
}
ret = launchTitle(0x0001000148414445LL, url);
if (ret < 0) {
ret = launchTitle(0x000100014841444ALL, url);
}
if (ret < 0) {
ret = launchTitle(0x0001000148414450LL, url);
}
return ret;
}

Thanks for having a look
EDIT: Thanks to Wiimpathy, I modded it and it works!
Bookmarks, artwork and instructions:
http://gbatemp.net/threads/wiiflow-internet-bookmark-plugin-pack-with-covers-and-bookmarks.358239/
 
Some users reported that updating to rev132 will damage the executable, causing an error on load,
has anyone experienced such a problem?
 

Site & Scene News

Popular threads in this forum