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

Difference between revisions of "Homebrew Channel/ja"

From WiiBrew
Jump to navigation Jump to search
(Starting Japanese translation.)
 
(Translated more simple parts...)
Line 3: Line 3:
  
  
'''Homebrew Channel'''とは[[Team Twiizers]]によって作られた自作ソフト、いわゆる[http://ja.wikipedia.org/wiki/Homebrew Homebrew]のローだのことです。 Homebrew Channelで[[Twilight Hack]]の利用などなくてHomebrewを実行することができます。インストールしたら、普通のWiiのチャンネルと同じく、Homebrew ChannelはWiiメニューから起動することができます。実際にSDカード、USB Gecko、TCP([[Wiiload]]要)からHomebrewを実行することができます。自動的に更新することも可能です。
+
'''Homebrew Channel'''とは[[Team Twiizers]]によって作られた自作ソフト、いわゆる[http://ja.wikipedia.org/wiki/Homebrew Homebrew]のローだのことです。 Homebrew Channelで[[Twilight Hack]]の利用などなくてHomebrewアプリケーションを実行することができます。インストールしたら、普通のWiiのチャンネルと同じく、Homebrew ChannelはWiiメニューから起動することができます。実際にSDカード、USB Gecko、TCP([[Wiiload]]要)からHomebrewを実行することができます。自動的に更新することも可能です。
  
 
Homebrew Channelは[http://hbc.hackmii.com 公式サイト]からダウンロードできます。
 
Homebrew Channelは[http://hbc.hackmii.com 公式サイト]からダウンロードできます。
Line 49: Line 49:
 
</code>
 
</code>
 
# 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:
 
# 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
+
   *Name: Homebrewアプリケーションのタイトル
   *Coder: The name of the person or group that wrote the code for the program.
+
   *Coder: そのプログラムのコードを書いた人、またはグループの名前。
   *Version: The version of the application.
+
   *Version: アプリケーションのバージョン
   *Release_date: The data the application was released. It has to be a timestamp using this format: YYYYmmddHHMMSS
+
   *Release_date: アプリケーションのリリースの日付。タイムスタンプはこの形式で入力: YYYYmmddHHMMSS
   *Short_description: This is displayed on the main menu of the Homebrew Channel (before you select an application) and is used as
+
   *Short_description: Homebrew Channelのメインメニューでアプリケーションのタイトルのすぐ下に表示される記述のことです。
  a space to add a few words to describe the program.
+
   *Long_description: アプリケーションを選択した後に出る画面に表示されるコントロールなどのことの知らせなどの長くて詳しい記述のことです。
   *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.
+
ScummVMの完成された「meta.xml」の例は下に載せてあります。
An example of a completed "meta.xml" for ScummVM is provided below:
 
 
<code>
 
<code>
 
   <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 
   <?xml version="1.0" encoding="UTF-8" standalone="yes"?>

Revision as of 02:59, 7 June 2008

Template:Resize

Homebrew channel logo.png


Homebrew ChannelとはTeam Twiizersによって作られた自作ソフト、いわゆるHomebrewのローだのことです。 Homebrew ChannelでTwilight Hackの利用などなくてHomebrewアプリケーションを実行することができます。インストールしたら、普通のWiiのチャンネルと同じく、Homebrew ChannelはWiiメニューから起動することができます。実際にSDカード、USB Gecko、TCP(Wiiload要)からHomebrewを実行することができます。自動的に更新することも可能です。

Homebrew Channelは公式サイトからダウンロードできます。

インストール

[Twilight Hack]]がもうWiiにインストールされていれば、

  1. 上のリンクからインストーラをダウンロード。
  2. インストーラのファイルをSDカードのルートにコピー。
  3. そのファイルを「boot.elf」にリネーム。
  4. Twilight Hackを実行し、インストーラを読み込ませる
  5. 責任の否認を読んでください 起こりそうにない状況だが、インストーラによってWiiがBrick状態になったら、これはあなたのTeam Twiizersに対する立場を知らせる。
  6. Wiiのリセットボタンを押す。

これからインストールは自動的のはずで、Wiiは再起動する。

Configuring Applications

In order to make an application appear in the Homebrew Channel, the following steps must be taken:

  1. Make a folder on the root of your SD card called "apps".
  2. In the folder "apps," create a folder for the application (for this example, ScummVM will be used).
  3. Copy the files for the application into its folder (e.g. apps/scummvm/).
  4. 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).

Now the application will appear in the Homebrew Channel. However, its appearance on the menu is difficult to distinguish from other applications. To fix this, text and an image can be added


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: Homebrewアプリケーションのタイトル
 *Coder: そのプログラムのコードを書いた人、またはグループの名前。
 *Version: アプリケーションのバージョン
 *Release_date: アプリケーションのリリースの日付。タイムスタンプはこの形式で入力: YYYYmmddHHMMSS
 *Short_description: Homebrew Channelのメインメニューでアプリケーションのタイトルのすぐ下に表示される記述のことです。
 *Long_description: アプリケーションを選択した後に出る画面に表示されるコントロールなどのことの知らせなどの長くて詳しい記述のことです。

ScummVMの完成された「meta.xml」の例は下に載せてあります。

 <?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

The official FAQ from the developers of the Homebrew Channel can be found here.