• twitter
  • facebook
  • rules
  • news
 
Page 1 of 6 123

[UTIL][24MAY10]PreKitchen Tool (Sort, Clean, Merge and create folders)

  • Retweet Thread
  • Vote for Thread to be Featured on the XDA Portal
Default [UTIL][24MAY10]PreKitchen Tool (Sort, Clean, Merge and create folders)

(Formerly "Dump Sorter" and "XipDumpSort")

New and Improved - Much more functionality than the old one!
I'm trying to make this a general cleaning\sorting\worker app for processing dumped folders. If you'd like a feature added, please let me know.

What is it?
This is a simple program designed to take the hard work out of rearranging, cleaning and merging dumped ROMs with Kitchens.

What can it do?

  • Clean - Removed all files with the same name as their directories (This is very useful when converting files to modules)
  • Sort - Files and Folders can be sorted by:
    • Ervius Kitchen's folder format
    • osKitchen's folder format
    • By comparing to a donor folder (should work with any kitchen)
  • Unsort from:
    • Ervius Kitchen's folder format
    • osKitchen's folder format
  • Merge missing file and folders from a donor directory (useful when the dump is missing files\folders) (SVN Directories are ignored ('.svn' and '_svn'))

How to install
Click the 'Install' button at http://vidmes.com/dumpsorter/publish.htm
(In order to use the 'launch' link, you need to be using IE)
(Alternatively, just use the zip below)

Notes
Merging is done last, so if the donor directory is 'dirty', this 'dirt' will be copied across

This requires .NET 3.5

Also attached is the source code (for anybody interested) - the project was built using Visual Studio 2010, so it may not open in older versions of VS

Known Issues
Things to do
  • Get a logo\icon
  • Ability to pull data from archives (eg zip, rar and 7 zip)

Changelog
Version numbers: <installer version> (<executable version>)

* 0.3.0.3 (0.3.3796.19478)
Fixed: Settings in ComboBoxes would not save (e.g. language, resolution, etc)
WARNING: Upgrading to 0.3.0.3 will wipe any of your current settings

* 0.3.0.2 (0.3.3789.38088)
Fixed: Bug where the 'Browse' button for selecting the donor folder to clone didn't do anything

* 0.3.0.1 (0.3.3734.42067)
Added: Support for OndraStar's osKitchen (sorting, unsorting, creating blank folders)

* 0.3.0.0 (0.3.3733.25038)
Added: Ability to unsort from Ervius format
Added: Ability to only sort DPI\RES\LANG that you actually want

* 0.2.0.1 (0.2.3518.38275)
Added: Ability to invert log
Added: Update log on the fly (instead of at the end)
Fixed: Progress bar go to 100% when complete (or reset afterwards)

* 0.2.0.0 (0.2.3516.36999)
Added: Ability to create a default folder layout for Ervius SYS

* 0.2.3516.24314
Added: About box
Fixed: Merger now ignores SVN directories ('.svn' and '_svn')

* 0.2.3516.23053
Added: Cleaner (remove files with same name as directory)
Added: Sorter for Ervius SYS format
Added: Merger (file and folder)
Fixed: Sorter now removes 'unsorted' directory if it is empty

* 1.0.3509.31117
Fixed: Browse buttons now re-enable after sorting is complete

* 1.0.3497.39310
Initial release


Attached Files
File Type: zip PreKitchen 0.3.0.1.zip (22.8 KB, 448 views)
File Type: zip PreKitchen Source 0.3.0.1.zip (36.4 KB, 116 views)
File Type: zip PreKitchen 0.3.0.0.zip (43.1 KB, 32 views)
File Type: zip PreKitchen Source 0.3.0.0.zip (34.5 KB, 36 views)
File Type: zip PreKitchen 0.3.0.2.zip (45.5 KB, 160 views)
File Type: zip PreKitchen 0.3.0.3.zip (47.3 KB, 312 views)
__________________

[O2 Xda IIi] -> [Xda Exec] -> HTC Touch Pro -> [Something with WP7 + 5-row keyboard + >=1Ghz Processor + Probably HTC]
----------------
Who you gunna call? Admin list
----------------
Need helping sorting a dumped ROM? http://forum.xda-developers.com/show....php?p=4226018
Signature image courtesy of Jake044: http://forum.xda-developers.com/showthread.php?t=701002

Last edited by TehPenguin; 26th May 2010 at 02:35 PM. Reason: new version

thanx Mr Moderator
its very usefull

__________________
SXPERIA WM6.5 21907
ELF SX WM6.1 21055 & WM6.5 21888
Join xda-developers group on Facebook

feel free to buy me Donut

WOW!! This is an awesome tool. I'm definitely gonna be giving it a try. Thanks

EDIT: Works perfect

__________________

ROM: Chrome_23007v1 also found at www.Skinzone.org
Radio: 1.14.25.35
Donations are always welcome but never expected.
FlashBack with AutoRestore

Last edited by jmckeejr; 10th August 2009 at 06:55 PM.

This thing is awesome. It's perfect for organizing SYS folders for any kitchen based on ervius's visual kitchen.

__________________
God bless you!!!


Try my
JustStableV2 WM6.1 21051
JustHome - Alpha WM6.5
Ivan's Cooking Class
JustStableV2Micro - 73+mb free storage!
SuperJustKitchen - WM6.5 and WM6.1 kitchen for the Herald
JustKitchen.info - My Kitchen blog/site.

If you like my work and wish to donate, click

You don't have to donate to use my ROMs or my EBO kitchen, but any help is appreciated.

Hello,
Thanks for this tool, it's really nice!!!
Just small thing added to your code :

Code:
void bgwDoSorting_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
	txtLog.Text = (string)e.UserState;
	pgbrStatus.Value = (e.ProgressPercentage > 100) ? 100 : e.ProgressPercentage;
}

and :

Code:
//old : bgwDoSorting.ReportProgress(workDone * 100 / workTotal);
bgwDoSorting.ReportProgress(workDone * 100 / workTotal, result);

I also reverse the log to have latest lines on top (log+newline instead of newline+log)


Thanks for the great job!!


Last edited by DarkAngelFR; 10th August 2009 at 07:09 PM. Reason: design of the post...

very nice, thanks for sharing!

Originally Posted by DarkAngelFR  View Post

Hello,
Thanks for this tool, it's really nice!!!
Just small thing added to your code :

Code:
void bgwDoSorting_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
	txtLog.Text = (string)e.UserState;
	pgbrStatus.Value = (e.ProgressPercentage > 100) ? 100 : e.ProgressPercentage;
}

and :

Code:
//old : bgwDoSorting.ReportProgress(workDone * 100 / workTotal);
bgwDoSorting.ReportProgress(workDone * 100 / workTotal, result);

I also reverse the log to have latest lines on top (log+newline instead of newline+log)


Thanks for the great job!!

I was considering that, but I think you'll find it will run a bit slower (due to having to constantly update the log box). Then again, if you have a dual processor machine (and who doesn't?), you probably won't notice a difference.

__________________

[O2 Xda IIi] -> [Xda Exec] -> HTC Touch Pro -> [Something with WP7 + 5-row keyboard + >=1Ghz Processor + Probably HTC]
----------------
Who you gunna call? Admin list
----------------
Need helping sorting a dumped ROM? http://forum.xda-developers.com/show....php?p=4226018
Signature image courtesy of Jake044: http://forum.xda-developers.com/showthread.php?t=701002

Any chance someone would also be interested in writing a batch file or simple program to delete duplicate files inside of a folder? ie: if there happened to be files inside of the module folder as well as the actual module files. So for example "tapres.dll" module folder for some reason has "tapres.dll" file inside. Would need to got hrough whole SYS though.

__________________

ROM: Chrome_23007v1 also found at www.Skinzone.org
Radio: 1.14.25.35
Donations are always welcome but never expected.
FlashBack with AutoRestore

I am testing it now....

__________________
Current Device:
HTC LEGEND: Own Cook Android 2.1+APP2SD+Dalvik_Cache_in_SD
GENE: Own Cooked WM 6.5.
Past Device (Sold): Samsung I8000; Touch Diamond: DEAD; HP Ipaq RW 6828
|Installing & Using Ervius Kitchen for GENE| |Installing & Using Ervius Kitchen for OPAL|

Pretty cool set of resources...thanks
Point of Sale.


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Rules
Forum Jump
 
All times are GMT +1. The time now is 11:23 AM.