WiiBrew talk:Contributing
This is an old revision of this page, as edited by Felix123 (talk | contribs) at 15:22, 27 May 2008. It may differ significantly from the current revision. |
A Standard Library
I think we should create a page for the developers that have standard pieces of code for them to use and refer to. the homebrew scene for the Wii sis a bit scattered and too competitive in a negative way. Some people don't know how to add certain features that have been aded over time, or don't compltely understand it. If we added the code and brief documentation on how to load homebrew from the front SD slot, how to use the wiimote, nunchuck and classic controller; load music, and a few of the other features that could be standard in homebrew programs and set-up a community for the developers to build off of. We could at least improve the quality and possibly the communication between developers. Some of us enthusiasts could even slearn something by helping to provide all of this and help to update or maintain the few abandoned pieces of homebrew and quite possibly become real developers ourselves.
~::gametaku5@gmail.com::
- I agree with the need to have these things standardized, but I think it'd be much better to have them integrated into the devkit.
- Also, I see a lot of releases doing neat things (i.e. region-free loader, DVD player) with no source. So people make these discoveries and developments on how things work and then don't tell anyone. That doesn't help anyone. People, release your sources dammit! 198.166.12.229 14:08, 2 May 2008 (PDT)
- There is no DVD player, it was GC homebrew.
Cache bypassing
Often, after you edit a page, there seems to be no change. This is caused by the cache serving up the old page. I made a simple Greasemonkey script to solve this problem. Felix123 06:22, 27 May 2008 (PDT)
// ==UserScript== // @name Wiibrew // @namespace Wiibrew // @description Force refresh // @include http://wiibrew.org/index.php?* // ==/UserScript== if((document.referrer.indexOf("action=edit")!=-1||document.referrer.indexOf("action=submit")!=-1)&&window.location.href.indexOf("action")==-1) document.location.replace(window.location.href+"&a=a");