News(page 213)

Rechercher une news
Affichage des news 2121 à 2130 sur 3490
Pages: ... 213 ...
Posté par Attila le le 20/01/10 à 12:06:26
4654 affichages, 32 commentaires
 
Pour ceux qui n'ont rien compris, le plugin DIP d'un cIOS (ou même d'un IOS normal) est l'élément qui permet de lire les DVD, et donc les jeux.
Les cIOS ont ce plugin DIP modifié pour permettre de lire des DVD gravés ou de rediriger les lectures sur un disque dur (USB Loader).

Actuellement, il n'y avait que Hermes et Waninkoko à faire leur propre cIOS. Waninkoko voulant arrêter le développement de la Wii, a décidé de rendre son travail open source pour que d'autres personnes travaillent dessus.

Vous risquez donc de voir prochainement des cIOS "mod" pour modifier des comportements du cIOS ou ajouter des nouvelles fonctionnalités.
Le dernier cIOS rev17 étant déjà fonctionnel, ce qu'on pourrait souhaiter voir en plus serait par exemple les fonctionnalités du cIOS d'Hermes dont la lecture sur NTFS.

Code source du plugin DIP

http://www.wii-addict.fr/forum/Dip-plugin-enfin-open-source-t18136.html Source : http://www.wii-addict.fr/forum/Dip-plugin-enfin-open-source-t18136.html
http://twitter.com/hackinblack Site officiel : http://twitter.com/hackinblack

Posté par Snouki le le 20/01/10 à 09:17:00
3761 affichages, 3 commentaires
 
Daid vient de mettre en ligne un script simplifié pour installer DevkitPro sur les machine tournant sous linux.
#!/bin/bash

## Configuration

DEVKITFILE=devkitPPC_r19-i686-linux.tar.bz2
LIBOGCFILE=libogc-1.8.1.tar.bz2
LIBFATFILE=libfat-ogc-1.0.6.tar.bz2
WIIEXAMPLEFILE=wii-examples-20091124.tar.bz2
GCEXAMPLEFILE=gamecube-examples-20091212.tar.bz2

EXTRALIBS="zlib-1.2.3-ppc.tar.bz2 jpeg7-ppc.tar.bz2 mxml-2.6-ppc.tar.bz2 freetype-2.3.11-ppc.tar.bz2 libpng-1.2.40-ppc.tar.bz2 expat-2.0.1-ppc.tar.bz2"

#Update libogc to latest source version. ("yes" or "no")
UPDATE_LIBOGC_TO_HEAD="yes"
#install the GOF drum patch in libogc. ("yes" or "no") This needs the UPDATE_LIBOGC_TO_HEAD
INSTALL_GOF_DRUM_PATCH="yes"

#######################################################################
## Don't edit anything below this unless you know what you are doing ##
#######################################################################

if [ `whoami` != "root" ] ; then
echo "This script needs to be run as root."
exit
fi

function fetchAndInstall {
#$1 = URL base
#$2 = filename to fetch
#$3 = install path

if [ ! -f "$2" ] ; then
echo "Downloading $2"
wget "$1/$2"
RET=$?
if [ $RET -ne 0 ] ; then
echo "Failed to download $2"
exit
fi
fi

mkdir -p "/opt/devkitpro/$3"
echo "Extracting $2 to $3"
tar -xjf "$2" -C "/opt/devkitpro/$3"
RET=$?
if [ $RET -ne 0 ] ; then
echo "Failed to extract $2"
exit
fi
}

mkdir -p /opt/devkitpro/
cd /opt/devkitpro/

fetchAndInstall "http://downloads.sourceforge.net/project/devkitpro/devkitPPC" "$DEVKITFILE" ""
fetchAndInstall "http://downloads.sourceforge.net/project/devkitpro/libogc" "$LIBOGCFILE" "libogc"
fetchAndInstall "http://downloads.sourceforge.net/project/devkitpro/libfat" "$LIBFATFILE" "libogc"
fetchAndInstall "http://downloads.sourceforge.net/project/devkitpro/examples/wii" "$WIIEXAMPLEFILE" "examples/wii"
fetchAndInstall "http://downloads.sourceforge.net/project/devkitpro/examples/gamecube" "$GCEXAMPLEFILE" "examples/gamecube"

for FILE in $EXTRALIBS ; do
fetchAndInstall "http://downloads.sourceforge.net/project/devkitpro/portlibs" "$FILE" "libogc"
done

rm -rf $DEVKITFILE $LIBOGCFILE $LIBFATFILE $WIIEXAMPLEFILE $GCEXAMPLEFILE
rm -rf $EXTRALIBS

if [ "$UPDATE_LIBOGC_TO_HEAD" = "yes" ] ; then
echo "Getting HEAD revision of libogc"
rm -rf /opt/devkitpro/tmp_src/
mkdir -p /opt/devkitpro/tmp_src/
cd /opt/devkitpro/tmp_src/
svn checkout http://devkitpro.svn.sourceforge.net/svnroot/devkitpro/trunk/libogc/
RET=$?
if [ $RET -ne 0 ] ; then
rm -rf /opt/devkitpro/tmp_src/
echo "Failed to get HEAD of libogc"
echo "DevkitPPC will still work, but without new libogc/drum patch"
exit
fi
cd /opt/devkitpro/tmp_src/libogc/

if [ "$INSTALL_GOF_DRUM_PATCH" = "yes" ] ; then
wget http://daid2.mine.nu/svn/Wii/GuitarsOnFire/libogc_patch.patch
patch -p0 < libogc_patch.patch
RET=$?
if [ $RET -ne 0 ] ; then
rm -rf /opt/devkitpro/tmp_src/
echo "Failed to apply GoF GH3 Drum patch."
echo "DevkitPPC will still work, but without new libogc/drum patch"
exit
fi
fi

export DEVKITPRO=/opt/devkitpro/
export DEVKITPPC=/opt/devkitpro/devkitPPC/
make wii
RET=$?
if [ $RET -ne 0 ] ; then
rm -rf /opt/devkitpro/tmp_src/
echo "Failed to build libogc."
echo "DevkitPPC will still work, but without new libogc/drum patch"
exit
fi
make install
rm -rf /opt/devkitpro/tmp_src/
fi

echo "#######################################"
echo "Done downloading & installing devkitPPC"
echo "#######################################"

http://daid2.mine.nu/svn/Wii/DevkitProLinuxInstall/install_devkit.sh Téléchargement du script : http://daid2.mine.nu/svn/Wii/DevkitProLinuxInstall/install_devkit.sh
http://wiibrew.org/wiki/DevkitProLinuxInstall Site officiel : http://wiibrew.org/wiki/DevkitProLinuxInstall

Posté par orwel le le 19/01/10 à 21:48:09
2536 affichages, 13 commentaires
 
image

Nicksasa, The Lemon Man et WiiPower viennent de mettre en ligne leur Loader de VC/WW sur nand émulée.
Pour le moment cela reste basique mais sa devrait très vite évoluer vers quelque chose de beau.

Révision 75
- Correction d'un code dump lors de la fermeture (depuis le menu de TriiForce).

image


Liste de compatibilité des jeux : http://wiki.gbatemp.net/wiki/index.php?title=Triiforce_v0.x_VC/WiiWare_NAND_emulation_compatability
http://code.google.com/p/triiforce/ Site officiel : http://code.google.com/p/triiforce/
télécharger Télécharger TriiForce rev75

Posté par Snouki le le 19/01/10 à 08:17:42
7425 affichages, 8 commentaires
 
WBFS file est un outil vous permettant de transformer un jeu.iso en jeu.wbfs pour lui permettre d'être lu par les derniers loader tel que Configurable usb loader ou le loader GX.
Pour transformer votre iso il vous suffit de le glisser par dessus le fichier .exe.
Copiez ensuite le fichier .wbfs créé sur une partition en FAT qui sera lisible sur les loaders compatibles.

v2.9:
*Don't sync (write) headers on a wbfs partition when only
reading from it to prevent any possibility of corruption

http://gbatemp.net/index.php?showtopic=147638 Site officiel : http://gbatemp.net/index.php?showtopic=147638
http://code.google.com/p/cfg-loader/downloads/list Source : http://code.google.com/p/cfg-loader/downloads/list
télécharger Télécharger WBFS file 2.9

Posté par Snouki le le 19/01/10 à 08:14:20
1968 affichages, 0 commentaires
 
image


Hermes met en ligne son loader de backup compatible CIOS222, il lit les backups DVD, usb et carte SD.
Attention, installez le Custom IOS spécial 222 fourni avec pour fonctionner.

Version 4.0
- Correction de bug et nettoyage du code
- Ajout d'un menu de hack en appuyant sur HOME qui permet de reconfigurer le loader pendant son utilisation
- Ajout du support des .ciso sur partition FAT et lecteurs DVD
*Le .ciso est un format similaire au .iso mais pouvant être mis sur une partition wbfs

http://www.elotrolado.net/hilo_utilidad-uloader-v2-7-ocarina-y-forzado-de-video-idioma_1217626 Site officiel : http://www.elotrolado.net/hilo_utilidad-uloader-v2-7-ocarina-y-forzado-de-video-idioma_1217626
télécharger Télécharger Uloader v4.0

Posté par Attila le le 19/01/10 à 01:26:45
2182 affichages, 2 commentaires
 
Voici un clone de Wadder par Leathl qui prend la main de Xuzz pour corriger les bricks causés par les dernières versions de Wadder qui n'est plus développé.

Cet outil fonctionne sur Windows et vous devez avoir le .NET Framework 2.0. Une version pour linux est maintenant disponible (dossier CustomizeMii Mono de l'archive). Vous devrez avoir le framework Mono sur votre machine (disponible ici).
Un plugin est également disponible pour permettre la création de forwarder : ForwardMii. Pour l'installer, placez simplement le fichier .dll dans le dossier de l'application. Lisez le readme pour plus d'information.
Enfin, il est désormais possible d'utiliser des fichiers MP3 comme musique pour la chaîne. Pour se faire, il faut utiliser LAME. Placez le fichier lame.exe dans le répertoire de l'application.

Version 2.1
- Ajout d'un installateur (par WiiCrazy / I.R.on).
- Correction des artéfacts sur les images.
- Remplacement de la fenêtre d'aperçu des TPL par celle de ShowMiiWads pour une manipulation plus aisée.
- Ajout d'une pré écoute des boucles audio de la fenêtre de convertion BNS (seulement pour les fichiers wav).
- Ajout d'une possibilité de glisser / déposer de fichier sur la fenêtre.
- Amélioration de la vitesse de lancement (merci shadow1643).
- Ajout de date de création et d'édition (seulement pour les chaines CustomizeMii 2.1+).
- Ajout d'un boutton pour traduire le mot "Channel" dans toutes les langues.
- Amélioration de la détection des fichiers TPL requis.
- Petites améliorations et corrections de bugs.
- Changement du redirecteur (forwarder) pour être plus configurable (choisissez le dossier que vous voulez).
- ForwardMii est maintenant inclus avec CustomizeMii.

image

http://code.google.com/p/customizemii/ Site officiel : http://code.google.com/p/customizemii/
télécharger Télécharger CustomizeMii 2.1

Posté par Snouki le le 18/01/10 à 16:38:20
4429 affichages, 21 commentaires
 
image

I/S WAD par Snouki(::d::) est un installateur/désinstallateur de fichier WAD sur nand réelle ou émulé.
Merci à Waninkoko pour ces sources et à Attila de Wii-Info.fr pour héberger la partie commentaire de ce programme.

v1.9a
- Correction du problème sur USB 2.0
- Compiler avec DevkitPPC R17 (meilleure compatibilité avec usb)

image

http://code.google.com/p/iswad/ Site officiel : http://code.google.com/p/iswad/
télécharger Télécharger I/S Wad 1.9a

Posté par Attila le le 18/01/10 à 01:30:59
1954 affichages, 0 commentaires
 
Dr. Clipper nous propose son utilitaire, permettant de configurer entièrement le fameux loader usb du même nom.

Déjà présent:
-Chargement et sauvegarde des options dans 2 fichiers texte (config.txt et theme.txt) et 1 fichier settings.cfg
-Rangement suivant vos favoris
-Toutes les options ont un descriptif info-bulles pour vous aider à comprendre ce qu'ils sont
-Rassemblement de tous les fichiers nécessaire sur la sd
-Possibilité de créer vos fond d'écran et la boite transparente
-Visualisation des couleurs de la console et possibilité de la changer
-Possibilité de changer la langue

Version 51.7 Addition of play_date into sort options to match 51(release)

Version 51.6 Another font change

Version 51.5
* Made sure I got the displayed version number right this time rolleyes.gif
* Changed font loading method

Version 51.4
* Subversion number (e.g., 51.4) will now appear in the title bar of the main form.
* Added *Count* column to favorite grid to show how many profiles a game exists in.
* Added Play count and Last time played columns to the options grid. playstats.txt is read and written at the same time as settings.cfg if playstats.txt is present in the same directory.
* Merged the buttons to add a named game and add an ID to the settings list into a single button.
* Added an extra button to add games to the settings list via folder (so just load your wbfs folder like with the covers).
* Added some extra translated fields for dialog box titles et al.
* Probably something else that I've forgotten

Version 51.3
* Converted "/" to "\" when auto-filling cover directories in the wizard (some drive mappings disliked them)
* Fixed reading of write_playstats option
* Fixed writing of fat_split_size option (it was using download_id_len's code)

Version 51.2
Fixed name of db_show_info (oops)

Version 51.1
* Added new 2 value for fat_install_dir to match 51b3.
* The directory where config.txt is loaded from or the executable's directory are looked at to see if they contain the correct directory structure for covers replacing sd:/, usb:/ or ntfs:/ with the root directory.
* The install wizard now has options to download titles.txt and wiitdb.zip. You can change the default languages used to replace AUTO with the cdbs.
* The install wizard now lets you optionally choose whether to generate config.txt and theme.txt (it was mandatory previously).
* Font creation adds the Euro and Trademark symbols to the character map.
* Various bug fixes

Version 51
* Official addition of cover downloading
* If config.txt is in the executable's directory, you will be prompted to load it during startup (settings.cfg and theme.txt will also be found if present)
* Added buttons to download titles.txt and wiitdb.zip
* Added new options compatible with v51b (same as v51a with a few tweaks)
* Added titles.txt and wiitdb.zip to install wizard
* Accept new naming scheme for loading games folders to match upcoming v51b release
* Various bug-fixes and clean-ups


image image

http://gbatemp.net/index.php?showtopic=174304 Site officiel : http://gbatemp.net/index.php?showtopic=174304
télécharger Télécharger Configurateur pour configurable usb loader v51.7

Posté par Attila le le 18/01/10 à 01:21:17
1807 affichages, 0 commentaires
 
image

Leathl vient de mettre en ligne son propre utilitaire pc, vous permettant d'envoyer sur votre wii des .dol, .elf ou encore .wad (pour le moment les .wad sont seulement compatible avec le loader USB GX).
Il vous suffit de renseigner votre IP et de choisir le fichier a envoyer.

Version 1.2
- Amélioration de la vitesse de démarrage (merci shadow1643)
- Ajout de la possibilité d'envoyer des ZIP (à HBC).
Les zips doivent contenir un *dossier* contenant :
boot.dol
meta.xml (optionnel)
icon.png (optionnel)
Et seront extrais vers : SD:/apps/*dossier*

image


http://wiibrew.org/wiki/TransmitMii Site officiel : http://wiibrew.org/wiki/TransmitMii
télécharger Télécharger TransmitMii 1.2

Posté par Attila le le 17/01/10 à 23:42:22
2946 affichages, 4 commentaires
 
image

oggzee nous présente sont USB/SD loader basé sur celui de waninkoko mais ayant la particularité d'être entièrement configurable.
Vu la quantité importante des changements pour la version 51, je vous laisse le changelog en anglais.

Voici les détails de celui-ci:
- Support SDHC et USB HDD
- Interface GUI et Console (interchangeable)
- Musique de fond (.mp3 ou .mod)
- Thèmes (interchangeable)
- Plein écran (auto-detect)
- Transparence (covers et console)
- Téléchargement des jaquettes
- Type de jaquettes: 2d, 3d, disque
- Redimensionnement automatique des jaquettes
- Renommage des titres des jeux (utilisation d'un fichier titles.txt)
- Configuration spécifique pour chaque jeu (mode vidéo, Langage, Ocarina)
- Éclairage du lecteur DVD lorsque la copie d'un jeu est terminée (fonction Eject)
- Contrôle parental
- Support des HDD USB multi partitions (WBFS pour les jeux et FAT pour les covers, fichier de configurations ect...)
- Support des SDHC multi partitions (WBFS pour les jeux et FAT pour les covers, fichier de configurations ect...)
- Sélection du cIOS pour une meilleure compatibilité des périphériques USB.
- Pris en charge des cIOS suivants: waninkoko 249 et 250, Hermes 222 et 223 (mload), kwiirk 222 et 223 (yal)
- Configurable

Version 51
cfg v51 (release)
* New Sort: last play date option: sort = play_date
* Removed empty line from game list when showing database info
* Secondary sort using titles added. Lists should be consistent when there are matching values now

cfg v51b3 (beta3)
* Fixed the ambiguity with the game dir layouts (ID_TITLE or TITLE [ID])
* fat_install_dir = 2 will use the new layout (TITLE [ID]) when installing
* Removed redundant options from main menu.
* Cleaned up the sort and filter menus. Improved sort menu. Ascending / descending options for current sort are remembered.
* Color of database info now changed.
* Install and disc boot menus will show [?] cover before a disc is read, and game cover for disc if found.

cfg v51b2 (beta2)
* More bug fixes
Loader no longer crashes when trying to sort or filter withouta database.
Accented characters now show up in the synopsis.
Display of synopsis cleaned up and improved.
Entities now converted in the synopsis. (", etc)
Main menu will respect the disable_options configuration.
sort=play_count now works properly without reloading the game list.

cfg v51b (beta)
* Minor bug fixes
Loader will not wait for a button press in the event a databaseis not found.
Disc boot menu will show the proper database information.
* Changed db_url option and db_language option slightly
option: db_url = [http://wiitdb.com/wiitdb.zip?LANG={DBL}]{DBL} will be replaced by the db_language value
option: db_language = [AUTO], EN, JA, German, etc
* option: "-asc" is no longer necessary to specify a sort as ascending.
* db_show_info no longer hides the hdd info or footer in the console.
* Added more game directory layouts: (by oggzee)
/wbfs/TITLE_[GAMEID]/GAMEID.wbfs
/wbfs/TITLE [GAMEID]/GAMEID.wbfs
/wbfs/TITLE[GAMEID]/GAMEID.wbfs
When loading games from FAT or NTFS
* Added {PUB} to cover url options.
{PUB} will be replaced by the last two characters of the ID
(the publisher)
This can be used to do things like forcing NTSC covers for
PAL games by replacing {CC} with US and {ID6} with {ID3}E{PUB}

cfg v51a (alpha)
* Wiitdb support. Can be downloaded inside the loader on the global options screen.
* Enhanced nunchuk support: C mapped to A, Z mapped to B
* Filtering of games based on certain criteria
* Sorting of games based on certain criteria
* Gameplay history
* Disc Loading
* New: Main menu accessible by pressing - or going to the global options screen.
Disc loading, sorting, filtering, and more options are located here.
* option: db_url = [http://wiitdb.com/wiitdb.zip?LANG={db_language}]
URL to download database from.
* option: db_language = [Console Language], EN, JA, German, etc
Language to use for the database. If invalid or not able to be displayed by the loader this will default to English.
Both country codes (EN) and languages (English) are valid.
* option: db_show_info = [1], 0
Show info loaded from the database.
* option: write_playstats = [1], 0
Write to the play history file.
* option: sort = [title-asc], etc
Change the default sorting method. Default is Title Ascending.

Valid sort options:
"title" => Title
"players" => Number of Players
"online_players"=> Number of Online Players
"publisher" => Publisher
"developer" => Developer
"release" => Release Date
"play_count" => Play Count
"install" => Install Date
(This will only work with FAT or NTFS drives)
To use ascending add "-asc" to the option.
ie: sort = players-asc

To use descending add "-desc" to the option.
ie: sort = players-desc

image

http://gbatemp.net/index.php?showtopic=147638 Site officiel : http://gbatemp.net/index.php?showtopic=147638
http://code.google.com/p/cfg-loader Site officiel : http://code.google.com/p/cfg-loader
télécharger Télécharger Configurable USB Loader v51


Pages: ... 213 ...
 

rss


Pour votre téléphone, Jailbreak iPhone et Jailbreak iPad. - Hack PS3 - Hacker sa WiiU - Hacker PS Vita - Rage Comics, troll face - Retrouvez chaque jour des image drole sur internet grâce à LOLTube. - Meme Internet
70 connectés (0 membre, 70 anonymes)© 2007-2015 Attila