ijoshsmith / abandoned-strings

Command line program that detects unused resource strings in an iOS or OS X application.
MIT License
377 stars 67 forks source link

Parallelize + add "write" option #4

Closed xaphod closed 7 years ago

xaphod commented 7 years ago

Hi there, thanks for making this! It was missing 2 things I needed: 1) it was really slow (I have a large source-base), because it was confined to one thread. It is now parallelized so you can use all your CPU cores 2) I want this to (destructively) modify my strings files, so I added a "write" parameter. If "write" is present, it'll update the strings files. I made separate commits for (1) and (2). All the best -tim

ijoshsmith commented 7 years ago

Thanks! These seem like great improvements.