Page 1 of 1

CleanRip Mod

Posted: Fri Jun 15, 2012 9:28 am
by corenting
Hello ! I decided to release the custom version of CleanRip I made for myself.
There are no major changes, it's just slightly customized :)

Changelog :

Whatsnew in Mod 1.0.0:
- Compiled with latest libs & devkitPPC
- Removed redump.org DAT file downloading
- Turn on the dvd light & eject the disc after dumping

Download :

See the attachment or download from my website.

Source :

It's on GitHub.

Re: CleanRip Mod

Posted: Fri Jun 15, 2012 5:12 pm
by noobcube
Cool! Will give a try shortly....

Re: CleanRip Mod

Posted: Fri Jun 15, 2012 11:53 pm
by emu_kidid
Nice work. Saves me some time!

Re: CleanRip Mod

Posted: Sun Jun 17, 2012 7:36 am
by noobcube
Seems to work fine. Also added a forwarder channel and noticed that I've not had any problems with CleanRip detecting my drive recently.

Re: CleanRip Mod

Posted: Sun Jun 17, 2012 8:39 am
by Sintendo
I had to compile CleanRip back in February too. In my case using the latest devkitPPC versions made a huge difference in USB compatibility. Before CleanRip wouldn't recognize my USB hard drive at all, afterwards it always worked flawlessly and I was able to rip my entire Wii library.

Great job!

Re: CleanRip Mod

Posted: Mon Jun 18, 2012 12:57 am
by julius
Is this version only for wii?

Re: CleanRip Mod

Posted: Mon Jun 18, 2012 6:22 am
by corenting
julius wrote:Is this version only for wii?
Yes, I. didn't mod the GC one, because this version doesn't have the broken download function.

Re: CleanRip Mod

Posted: Mon Jun 18, 2012 6:35 am
by emu_kidid
corenting, you could fix the download function instead of removing it you know? ;)

Re: CleanRip Mod

Posted: Mon Jun 18, 2012 6:45 am
by corenting
emu_kidid wrote:corenting, you could fix the download function instead of removing it you know? ;)
Too complicated for me :D I'm not really a coder, I just mod or create small things...

But i thought that it could be simplier if dat files were rehosted somewhere so the program will only have to downmoad and put the file on the root.

Re: CleanRip Mod

Posted: Mon Jun 18, 2012 8:48 pm
by megalomaniac
corenting, nice work doing your own build improvements....
this is the reason for open source software....


you state your not a coder....well i would disagree...
anyone who can take a piece of software and mod it to make changes no matter how elaborate or how minuscule the changes are.....is a coder
you have officially contributed your own changes as well as posted the source...

good job...
whats next??

Re: CleanRip Mod

Posted: Mon Jun 18, 2012 10:25 pm
by AC_Orange
Nice work. I do however use the redump's gc.dat, so shame it was removed.
If i remember correctly emu_kidid said we can manually download the latest gc.dat from redump and put it on the hdd used for dumping

Re: CleanRip Mod

Posted: Tue Jun 19, 2012 6:51 am
by corenting
AC_Orange wrote:Nice work. I do however use the redump's gc.dat, so shame it was removed.
If i remember correctly emu_kidid said we can manually download the latest gc.dat from redump and put it on the hdd used for dumping
I just removed the broken download function, you can still verify your dump if you download the .dat files from your computer and put them on the device used for dumping.
megalomaniac wrote:corenting, nice work doing your own build improvements....
this is the reason for open source software....


you state your not a coder....well i would disagree...
anyone who can take a piece of software and mod it to make changes no matter how elaborate or how minuscule the changes are.....is a coder
you have officially contributed your own changes as well as posted the source...

good job...
whats next??
Thanks you megalomaniac and other for your support !
Here is what I wanted to do :
  • Changing background image to a more modern one.
  • Maybe tweaking a bit the GUI.
  • Try to have a working download function as I explained in my previous post

Re: CleanRip Mod

Posted: Tue Jun 19, 2012 5:07 pm
by corenting
emu_kidid wrote:corenting, you could fix the download function instead of removing it you know? ;)
I looked at your broken code, but I don't understand all.
The program send an HTTP request to http://redump.org/datfile/gc/ or http://redump.org/datfile/wii/ and unzip the downloaded zip but what was the exact URL of the file ? Was it http://redump.org/datfile/gc/gc.zip and http://redump.org/datfile/wii/wii.zip ? Because my goal is to host the file on my webhost, as the download function is just broken because redump changed download to mediafire.

Re: CleanRip Mod

Posted: Tue Jun 19, 2012 10:47 pm
by emu_kidid
The redump URL was weird, you would ask for it at that location but it would be named differently based on date as I recall.

I'm happy to host it here, just let me know where you'd want it placed.

Re: CleanRip Mod

Posted: Wed Jun 20, 2012 11:37 am
by corenting
Ok cool.
If I replace this in verify.c :

Code: Select all

if((res = http_request("redump.org","/datfile/gc/", zipFile, (1*1024*1024), 0, 0)) > 0) {
by this :

Code: Select all

if((res = http_request("gc-forever.com","/redump/gc/", zipFile, (1*1024*1024), 0, 0)) > 0) {
will it be OK ? Could you manage to get it working server-side ?
I don't understand this part of the function so it will be the easiest way to get it working for me ;)

Or maybe if could just help by rewriting this part of the download function and replacing it by a simple download (no zip, direct dat downloading from a static adress), it will be great too ! For the moment I'm looking to do it myself but it can be long :D

Re: CleanRip Mod

Posted: Wed Jun 20, 2012 11:41 am
by AC_Orange
Thanks for clearing that up :)

Re: CleanRip Mod

Posted: Wed Jun 20, 2012 12:07 pm
by corenting
OK here is the new background I just made :

Image

I also requested an new icon from JoostinOnline.

Re: CleanRip Mod

Posted: Wed Jun 20, 2012 1:00 pm
by emu_kidid
corenting to make life easy.. so you can hardcode the path and remove Zip crap - maybe I'll do this myself even :)

http://www.gc-forever.com/datfile/gc.dat
http://www.gc-forever.com/datfile/wii.dat

by the way, the 1*1024*1024 stuff that you can see is because I could not work out the size of the file ahead of time the way that redump.org had posted the files since they were sitting behind a re-direct due to a always different filename (as the files were named by date). Now that the files are on gc-forever, not zipped too, you can know how big the file is and can even provide a download progress bar :)

Re: CleanRip Mod

Posted: Wed Jun 20, 2012 1:10 pm
by corenting
emu_kidid wrote:corenting to make life easy.. so you can hardcode the path and remove Zip crap - maybe I'll do this myself even :)

http://www.gc-forever.com/datfile/gc.dat
http://www.gc-forever.com/datfile/wii.dat

by the way, the 1*1024*1024 stuff that you can see is because I could not work out the size of the file ahead of time the way that redump.org had posted the files since they were sitting behind a re-direct due to a always different filename (as the files were named by date). Now that the files are on gc-forever, not zipped too, you can know how big the file is and can even provide a download progress bar :)
Thanks you but the only problem is that I don't know how to do that :(
I have to learn or maybe you could code this part as you said ? ;)
If you want to help for my mod, don't forget that you can submit pull request on github...