diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2005-04-16 19:32:36 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2005-04-16 19:32:36 +0000 |
commit | 23292470d9994a5e5d69451096343bc42cc37336 (patch) | |
tree | 38b48876f6c3eea693397914cf8dd21c023f5b40 /docs | |
parent | 1cb2a825c8f9b87ebee2df74cc080488c1eaaa1f (diff) | |
download | mana-23292470d9994a5e5d69451096343bc42cc37336.tar.gz mana-23292470d9994a5e5d69451096343bc42cc37336.tar.bz2 mana-23292470d9994a5e5d69451096343bc42cc37336.tar.xz mana-23292470d9994a5e5d69451096343bc42cc37336.zip |
Win32 release checklist
Diffstat (limited to 'docs')
-rw-r--r-- | docs/FAQ.txt | 2 | ||||
-rw-r--r-- | docs/win32-release.txt | 36 |
2 files changed, 37 insertions, 1 deletions
diff --git a/docs/FAQ.txt b/docs/FAQ.txt index c532c79e..a5989731 100644 --- a/docs/FAQ.txt +++ b/docs/FAQ.txt @@ -58,7 +58,7 @@ Q: How can I contribute? A: There are a lot of ways: - - If you're a programer or an artist you can be part of the development + - If you're a programmer or an artist you can be part of the development team. Send an e-mail to umperio@users.sourceforge.net explaining what you want to do. diff --git a/docs/win32-release.txt b/docs/win32-release.txt new file mode 100644 index 00000000..af43d38b --- /dev/null +++ b/docs/win32-release.txt @@ -0,0 +1,36 @@ +-------------------------------------- +THE MANA WORLD WIN32 RELEASE CHECKLIST +-------------------------------------- + +Every Win32 releaser should follow this checklist when creating a new package. + +- Update version fields in Project -> Project Options -> Version Info + * Version details + * File version + * Product version + * Eventually Legal Copyright +- Compile OpenGL version (Using -DUSE_OPENGL option) and rename the executable + from tmw.exe to tmw_opengl.exe +- Compile normal version (Do not use special flags as __DEBUG or USE_OPENGL) +- Check if the dlls where compressed (SDL.dll, SDL_Image.dll, SDL_Mixer.dll) +- Check config.xml for default values: + <?xml version="1.0"?> + <configuration> + <option name="chatlog" value="chatlog.txt"/> + <option name="guialpha" value="0.8"/> + <option name="host" value="animesites.de"/> + <option name="hwaccel" value="0"/> + <option name="port" value="6901"/> + <option name="remember" value="0"/> + <option name="screen" value="0"/> + <option name="sfxVolume" value="100"/> + <option name="musicVolume" value="60"/> + <option name="sound" value="1"/> + <option name="username" value="player"/> + </configuration> + - Update install script (the most recent version can be found at + http://themanaworld.homeip.net/tmw/setup.nsi) + * !define PRODUCT_VERSION + * OutFile + * all the required files (install/uninstall) +
\ No newline at end of file |