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

Difference between revisions of "Homebrew Channel/it"

From WiiBrew
Jump to navigation Jump to search
(New page: center Il '''Canale Homebrew''' è un'applicazione homebrew creata dal Team Twiizers che permette di avviare codice homebrew senza dover necessariament...)
 
Line 20: Line 20:
  
 
==Configurare le applicazioni==
 
==Configurare le applicazioni==
In order to make an application appear in the Homebrew Channel, the following steps must be taken:
+
Per visualizzare un'applicazione nel canale Homebrew, devono essere seguiti i seguenti passi:
  
# Make a folder on the root of your SD card called "apps."
+
# Crea una cartella nella tua memoria con nome "apps"
# In the folder "apps," create a folder for the application (for this example, [[Homebrew apps/ScummVM|ScummVM]] will be used).
+
# Nella cartella "apps" crea una cartella per l'applicazione (in questo esempio sarà usato  [[Homebrew apps/ScummVM|ScummVM]]).
# Copy the files for the application into its folder (e.g. apps/scummvm/).
+
# Copia i file dell'applicazione nella cartella che avevi creato (e.g. apps/scummvm/).
# Find the executable file (either .elf or .dol) and rename it to boot.elf (or boot.dol if it was a .dol file) if it is not already named that (e.g. apps/scummvm/boot.dol).
+
# Trova il file eseguibile (può essere .elf o .dol) e rinominalo in boot.elf (o boot.dol se era un file .dol) se non si chiama già così (e.g. apps/scummvm/boot.dol).
  
Now the application will appear in the Homebrew Channel. However, its appearance on the menu is sloppy, and it's therefore difficult to distinguish it from other applications. To fix this, text and an image can be added.
+
Ora l'applicazione apparirà nel canale Homebrew. Però non sarà facilmente visibile e distinguibile dalle altre applicazioni (Nota traduttore: "sloppy" era il termine originale per visibile). Per correggere questo problema, puoi aggiungere un immagine e del testo.
  
 
===Adding Text===
 
===Adding Text===

Revision as of 10:59, 31 May 2008

Homebrew channel logo.png

Il Canale Homebrew è un'applicazione homebrew creata dal Team Twiizers che permette di avviare codice homebrew senza dover necessariamente usare il Twilight Hack ogni volta. Una volta installato, gli utenti possono accedere al canale dal Menu Wii come se si trattasse di un quasiasi altro Canale. Attualmente permette di avviare homebrew da una scheda SD, da un USB Gecko, o tramite TCP. È anche in grado di aggiornarsi online.

È possibile scaricarlo da qui: http://hbc.hackmii.com

Installazione

Assumendo che il Twilight Hack è già installato sul tuo Wii;

  1. Scarica l'installer dal link qui sopra.
  2. Posiziona l'installer nella root della tua scheda SD.
  3. Rinomina il file in boot.elf
  4. Avvia il Twilight Hack.
  5. LEGGI IL DISCLAIMER! Nello sfortunato caso che il tuo Wii venga brickato da questo installer, questo ti permetterà di capire la tua posizione in confronto al Team Twiizers (Nota del traduttore: ho solo fatto una traduzione letterale, secondo me sono solo sboroni -- Kip 31/5/2008 00:29).
  6. Premi il pulsante RESET sul tuo Wii.

A questo punto l'installazione dovrebbe essere automatica, e il tuo Wii si riavvierà.

Configurare le applicazioni

Per visualizzare un'applicazione nel canale Homebrew, devono essere seguiti i seguenti passi:

  1. Crea una cartella nella tua memoria con nome "apps"
  2. Nella cartella "apps" crea una cartella per l'applicazione (in questo esempio sarà usato ScummVM).
  3. Copia i file dell'applicazione nella cartella che avevi creato (e.g. apps/scummvm/).
  4. Trova il file eseguibile (può essere .elf o .dol) e rinominalo in boot.elf (o boot.dol se era un file .dol) se non si chiama già così (e.g. apps/scummvm/boot.dol).

Ora l'applicazione apparirà nel canale Homebrew. Però non sarà facilmente visibile e distinguibile dalle altre applicazioni (Nota traduttore: "sloppy" era il termine originale per visibile). Per correggere questo problema, puoi aggiungere un immagine e del testo.

Adding Text

To add text to an application in the Homebrew Channel, do the following:

  1. Make a file in the folder of the application (e.g. apps/scummvm/) called "meta.xml" (e.g. apps/scummvm/meta.xml).
  2. Open "meta.xml" in Notepad and add the following text as a template:

 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <app version="1">
   <name></name>
   <coder></coder>
   <version></version>
   <release_date></release_date>
   <short_description></short_description>
   <long_description></long_description>
 </app>

  1. Add the appropriate information in between the relevant indicators. For example, the name of the application goes between <name> and </name>. The purpose of each field is as follows:
 *Name: The name of the application
 *Coder: The name of the person or group that wrote the code for the program.
 *Version: The version of the application.
 *Release_date: The data the application was released. It has to be a timestamp using this format: YYYYmmddHHMMSS
 *Short_description: This is displayed on the main menu of the Homebrew Channel (before you select an application) and is used as
 a space to add a few words to describe the program.
 *Long_description: This is displayed once the application is chosen. It describes the program and its function in great detail,
 and can be used to elaborate on a program's controls.

An example of a completed "meta.xml" for ScummVM is provided below:

 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <app version="1">
   <name>ScummVM</name>
   <coder>dhewg</coder>
   <version>rev32231</version>
   <release_date>200805230000</release_date>
   <short_description>Point & Click Adventures</short_description>
   <long_description>ScummVM is a program which allows you to run certain classic graphical point-and-click adventure games,
   provided you already have their data files. The clever part about this: ScummVM just replaces the executables shipped
   with the games, allowing you to play them on systems for which they were never designed! Some of the adventures ScummVM
   supports include Adventure Soft's Simon the Sorcerer 1 and 2; Revolution's Beneath A Steel Sky, Broken Sword 1 and
   Broken Sword 2; Flight of the Amazon Queen; Wyrmkeep's Inherit the Earth; Coktel Vision's Gobliiins; Westwood Studios'
   The Legend of Kyrandia and games based on LucasArts' SCUMM (Script Creation Utility for Maniac Mansion) system such as
   Monkey Island, Day of the Tentacle, Sam and Max and more.</long_description>
 </app>

Adding an Icon

See also: Homebrew Channel/Icons

In order to make icons for the Homebrew Channel show up, they must be in .png format with dimensions of 128x48 pixels. The full alpha channel can be used. Copy it into the folder of the application under the name "icon.png" (e.g. apps/scummvm/icon.png).

Removal

Removing the channel can be done by simply deleting it with the channel management in the Wii system software. Note that the Homebrew Channel will not be removed from the Wii's usage logs.

FAQ