mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
- removed deprecated code from RASocket
- allow more than one login at a time on the RA console
- added gsoap library for handling SOAP requests
- removed deprecated mangos_string entry
Thanks to:
- Derex for reporting a bug which occured if more than 1024
players were connected [poll() vs select()]
- caeruleaus for adding windowsbuild support
- vladimir for suggesting a different thread starting order
- fdb_ for suggesting SOAP in the first place
|
||
|---|---|---|
| .. | ||
| 0.5 | ||
| 0.6 | ||
| 0.7 | ||
| 0.8 | ||
| 0.9 | ||
| 0.10 | ||
| 0.11 | ||
| 0.12 | ||
| 0.13 | ||
| 0.14 | ||
| 0.15 | ||
| 9010_01_realmd_realmlist.sql | ||
| 9136_01_characters_account_data.sql | ||
| 9136_02_mangos_quest_poi.sql | ||
| 9136_03_characters_character_ticket.sql | ||
| 9136_04_mangos_spell_chain.sql | ||
| 9136_05_mangos_spell_bonus_data.sql | ||
| 9136_06_mangos_spell_proc_event.sql | ||
| 9136_07_characters_characters.sql | ||
| 9148_01_mangos_spell_bonus_data.sql | ||
| 9149_01_mangos_spell_bonus_data.sql | ||
| 9150_01_mangos_spell_bonus_data.sql | ||
| 9153_01_mangos_spell_bonus_data.sql | ||
| 9155_01_mangos_spell_proc_event.sql | ||
| 9156_01_mangos_spell_chain.sql | ||
| 9156_02_mangos_spell_proc_event.sql | ||
| 9160_01_mangos_spell_proc_event.sql | ||
| 9160_02_mangos_spell_chain.sql | ||
| 9198_01_mangos_mangos_string.sql | ||
| 9220_01_mangos_spell_proc_event.sql | ||
| 9220_02_mangos_spell_chain.sql | ||
| 9222_01_mangos_playercreateinfo_spell.sql | ||
| 9244_01_mangos_spell_proc_event.sql | ||
| 9244_02_mangos_spell_chain.sql | ||
| 9246_01_characters_character.sql | ||
| 9250_01_characters_character.sql | ||
| 9262_01_mangos_quest_template.sql | ||
| 9277_01_mangos_spell_bonus_data.sql | ||
| 9288_01_mangos_spell_bonus_data.sql | ||
| 9289_01_mangos_spell_proc_event.sql | ||
| 9291_01_mangos_quest_template.sql | ||
| 9291_02_mangos_locales_quest.sql | ||
| 9296_01_mangos_spell_chain.sql | ||
| 9297_01_mangos_item_template.sql | ||
| 9309_01_mangos_quest_template.sql | ||
| 9310_01_mangos_spell_elixir.sql | ||
| 9312_01_mangos_quest_template.sql | ||
| 9329_01_mangos_spell_chain.sql | ||
| 9331_01_mangos_quest_template.sql | ||
| 9339_01_characters_group.sql | ||
| 9349_01_characters_character_action.sql | ||
| 9354_01_characters_character_action.sql | ||
| 9359_01_characters_characters.sql | ||
| 9366_01_mangos_spell_bonus_data.sql | ||
| 9366_02_mangos_spell_proc_event.sql | ||
| 9374_01_characters_character_glyphs.sql | ||
| 9375_01_characters_character_glyphs.sql | ||
| 9379_01_mangos_spell_proc_event.sql | ||
| 9380_01_mangos_command.sql | ||
| 9382_01_mangos_command.sql | ||
| 9385_01_mangos_command.sql | ||
| 9450_01_mangos_spell_proc_event.sql | ||
| 9460_01_mangos_spell_bonus_data.sql | ||
| 9460_02_mangos_spell_chain.sql | ||
| 9464_01_mangos_spell_proc_event.sql | ||
| 9466_01_mangos_mangos_string.sql | ||
| Makefile.am | ||
| README | ||
= MaNGOS -- README =
Copyright (c) 2005-2010 MaNGOS <http://getmangos.com/>
See the COPYING file for copying conditions.
== Database Updates ==
This folder contains SQL files which will apply required updates to your MySQL
database, whenever the MaNGOS database structure has been changed or extended.
To see if you need an update, the file names have been given a fixed structure
that should enable you to see if you need an update or not.
=== File name descriptin ===
File names are divided into two parts. First part is the revision+counter
that show commit revision that will be compatible with database after apply update.
Counter set order in sql updates apply for same revision.
The second part of the name of the database and the table that needs and update or has been added.
See an example below:
6936_01_mangos_spell_chain.sql
| | | |
| | | |
| | | The table `spell_chain`
| | | will need an update.
| | |
| | Name of affected DB (default recommended name)
| | Can be: characters, mangos, realmd
| |
| Counter show number of sql update in updates list for provided revision
| and set proper order for sql updates for same revision
|
MaNGOS commit revison related to sql update.
It included in commit description in form [6936] as you can see at http://github.com/mangos/mangos/commits/master
After appling this update DB compatiable with database that include this sql update.
SQL update include special protection against multiply and wrong order SQL updates apply.
So attempt apply sql update to more old DB without previous SQL update in list for targeted database
or to DB with already applied this or later SQL update will generate error and not applied.
=== For commiters ====
MaNGOS sources include special tool ( contrib/git_id ) for generation revision info
in commit notes and in src/shared/revision_nr.h file. It have option '-s' that let set
correct sql update names with revision number, generate sql update order guard queries,
and update version fields in mangos.sql/etc. For it use name sql updates in form
01_mangos_spell_chain.sql or 9999_01_mangos_spell_chain.sql (counter can be _01_, _02_, and etc,
dependent from sql updates amount in commit) and _not_ add to sql updates
guard queries. Include sql updates in commit. After commit adding to local repo call git_id
with -s option (and another, note: -s option not work propertly with -l option). Other steps
tool will do by self and apply changes to commit. After tool use commit with sql updates ready
to push.