Difference between revisions of "WiiBrew talk:Contributing"
(New section: Cache bypassing) |
|||
Line 10: | Line 10: | ||
::There is no DVD player, it was GC homebrew. | ::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. [[User:Felix123|Felix123]] 06:22, 27 May 2008 (PDT) | ||
+ | <pre>// ==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");</pre> |
Revision as of 15:22, 27 May 2008
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");