In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Difference between revisions of "WiiBrew talk:Contributing"

From WiiBrew
Jump to navigation Jump to search
Line 26: Line 26:
  
 
Moreover, I am currently making an Opera button that can be used to for example refresh the recentchanges page. [[User:Muzer|Muzer]] 04:44, 28 May 2008 (PDT)
 
Moreover, I am currently making an Opera button that can be used to for example refresh the recentchanges page. [[User:Muzer|Muzer]] 04:44, 28 May 2008 (PDT)
:The Opera button is finished. First, go to [http://myweb.tiscali.co.uk/digitaltv/wiibrew.html this page]. On that page, there is a link. Click and drag it to your toolbar. Then click it to properly refresh wiibrew. [[User:Muzer|Muzer]] 04:48, 28 May 2008 (PDT)
+
:The Opera button is finished. First, go to [http://myweb.tiscali.co.uk/digitaltv/wiibrew.html this page]. On that page, there is a link. Click and drag it to your toolbar. Then click it to properly refresh wiibrew. [[User:Muzer|Muzer]] 04:49, 28 May 2008 (PDT)

Revision as of 13:49, 28 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");

Let me confirm that this script also works with Opera's User JS feature - it does. Muzer 04:44, 28 May 2008 (PDT)

Moreover, I am currently making an Opera button that can be used to for example refresh the recentchanges page. Muzer 04:44, 28 May 2008 (PDT)

The Opera button is finished. First, go to this page. On that page, there is a link. Click and drag it to your toolbar. Then click it to properly refresh wiibrew. Muzer 04:49, 28 May 2008 (PDT)