While I was at it, I decided to just create a copy of every patch version of client ever released! Now, you can have a single client installed on your machine that -- on a whim -- can become any other client version. You'll need to install Subversion (or probably TortoiseSVN).
You can browse the client repository here.
http://svn.twuni.net/uoclient/t2a/tags/by-version/
Want client version 1.25.35?
- Code: Select all
svn checkout http://svn.twuni.net/uoclient/t2a/tags/by-version/1.25.35 C:\JoinUO\Client
Have you already checked out a client and need to switch to version 3.0.0?
- Code: Select all
svn switch http://svn.twuni.net/uoclient/t2a/tags/by-version/3.0.0 C:\JoinUO\Client
Trying to figure out what changed between client version 1.26.0a and 1.26.0b?
- Code: Select all
svn diff http://svn.twuni.net/uoclient/t2a/tags/by-version/1.26.0a http:/svn.twuni.net/uoclient/t2a/tags/by-version/1.26.0b
Wonder which client patches modified client.exe?
- Code: Select all
svn log http://svn.twuni.net/uoclient/t2a/trunk/client.exe
If you're not terribly familiar with running SVN command-line, I recommend TortoiseSVN. It makes dealing with SVN much simpler on Windows. Either way, it will be much easier to visualize the differences between the client versions you care about.
If you want to build your own client database (or if you're just curious about how this one was built), check out the tools at http://svn.twuni.net/uoclient/tools/trunk/.
Enjoy...