mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 10:37:02 +00:00
Implemented 2 way set cache data "version":
* New db_version.cache_id field let set cache data version by DB content creators.
This can be used for content releases by seting some unique value at each release.
This value used by default.
* New mangosd.conf config option let set (overwrite DB value) or use 0 for ignore.
This can be used by serever admin for reset cache at some local changes.
Note: values use at client login and then must be unique for long period time to avoid ignored
at login some long not connected client with old same cache version value.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
147 lines
5.5 KiB
Makefile
147 lines
5.5 KiB
Makefile
# Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
## Sub-directories to parse
|
|
|
|
## Change installation location
|
|
# datadir = mangos/sql/updates
|
|
pkgdatadir = $(datadir)/mangos/sql/updates
|
|
|
|
## Files to be installed
|
|
# Install basic SQL files to datadir
|
|
pkgdata_DATA = \
|
|
7988_01_mangos_item_template.sql \
|
|
7988_02_characters_character_equipmentsets.sql \
|
|
7988_03_mangos_spell_chain.sql \
|
|
7988_04_mangos_creature_template.sql \
|
|
7988_05_mangos_item_template.sql \
|
|
7988_06_mangos_gameobject_template.sql \
|
|
7988_07_characters_characters.sql \
|
|
7988_08_mangos_spell_bonus_data.sql \
|
|
7988_09_mangos_spell_proc_event.sql \
|
|
8016_01_mangos_npc_spellclick_spells.sql \
|
|
8021_01_mangos_spell_proc_event.sql \
|
|
8030_01_characters_character_spell.sql \
|
|
8030_02_characters_character_action.sql \
|
|
8030_03_mangos_npc_trainer.sql \
|
|
8050_01_mangos_spell_proc_event.sql \
|
|
8050_02_mangos_spell_bonus_data.sql \
|
|
8053_01_mangos_command.sql \
|
|
8060_01_mangos_spell_pet_auras.sql \
|
|
8064_01_mangos_spell_chain.sql \
|
|
8065_01_mangos_spell_proc_event.sql \
|
|
8071_01_mangos_command.sql \
|
|
8072_01_characters_characters.sql \
|
|
8072_02_characters_characters.sql \
|
|
8098_01_characters_character_action.sql \
|
|
8098_02_mangos_playercreateinfo_action.sql \
|
|
8098_03_characters_character_pet.sql \
|
|
8098_04_characters_pet_spell.sql \
|
|
8104_01_characters.sql \
|
|
8112_01_mangos_spell_proc_event.sql \
|
|
8115_01_mangos_playercreateinfo_action.sql \
|
|
8140_01_mangos_spell_proc_event.sql \
|
|
8158_01_mangos_playercreateinfo_action.sql \
|
|
8190_01_mangos_creature_template.sql \
|
|
8191_01_mangos_spell_affect.sql \
|
|
8211_01_mangos_spell_proc_event.sql \
|
|
8212_01_mangos_spell_proc_event.sql \
|
|
8213_01_mangos_spell_bonus_data.sql \
|
|
8227_01_mangos_spell_proc_event.sql \
|
|
8237_01_mangos_creature_template.sql \
|
|
8247_01_mangos_spell_bonus_data.sql \
|
|
8249_01_mangos_spell_proc_item_enchant.sql \
|
|
8249_02_mangos_spell_chain.sql \
|
|
8250_01_mangos_spell_threat.sql \
|
|
8251_01_mangos_spell_chain.sql \
|
|
8251_02_mangos_spell_bonus_data.sql \
|
|
8251_03_mangos_spell_proc_event.sql \
|
|
8253_01_mangos_spell_chain.sql \
|
|
8253_02_mangos_spell_proc_event.sql \
|
|
8254_01_mangos_spell_proc_event.sql \
|
|
8294_01_mangos_playercreateinfo_action.sql \
|
|
8310_01_mangos_spell_proc_event.sql \
|
|
8332_01_realmd_realmcharacters.sql \
|
|
8339_01_characters_characters.sql \
|
|
8339_02_characters_character_battleground_data.sql \
|
|
8342_01_mangos_spell_proc_event.sql \
|
|
8361_01_mangos_spell_bonus_data.sql \
|
|
8364_01_mangos_db_version.sql \
|
|
README
|
|
|
|
## Additional files to include when running 'make dist'
|
|
# SQL update files, to upgrade database schema from older revisions
|
|
EXTRA_DIST = \
|
|
7988_01_mangos_item_template.sql \
|
|
7988_02_characters_character_equipmentsets.sql \
|
|
7988_03_mangos_spell_chain.sql \
|
|
7988_04_mangos_creature_template.sql \
|
|
7988_05_mangos_item_template.sql \
|
|
7988_06_mangos_gameobject_template.sql \
|
|
7988_07_characters_characters.sql \
|
|
7988_08_mangos_spell_bonus_data.sql \
|
|
7988_09_mangos_spell_proc_event.sql \
|
|
8016_01_mangos_npc_spellclick_spells.sql \
|
|
8021_01_mangos_spell_proc_event.sql \
|
|
8030_01_characters_character_spell.sql \
|
|
8030_02_characters_character_action.sql \
|
|
8030_03_mangos_npc_trainer.sql \
|
|
8050_01_mangos_spell_proc_event.sql \
|
|
8050_02_mangos_spell_bonus_data.sql \
|
|
8053_01_mangos_command.sql \
|
|
8060_01_mangos_spell_pet_auras.sql \
|
|
8064_01_mangos_spell_chain.sql \
|
|
8065_01_mangos_spell_proc_event.sql \
|
|
8071_01_mangos_command.sql \
|
|
8072_01_characters_characters.sql \
|
|
8072_02_characters_characters.sql \
|
|
8098_01_characters_character_action.sql \
|
|
8098_02_mangos_playercreateinfo_action.sql \
|
|
8098_03_characters_character_pet.sql \
|
|
8098_04_characters_pet_spell.sql \
|
|
8104_01_characters.sql \
|
|
8112_01_mangos_spell_proc_event.sql \
|
|
8115_01_mangos_playercreateinfo_action.sql \
|
|
8140_01_mangos_spell_proc_event.sql \
|
|
8158_01_mangos_playercreateinfo_action.sql \
|
|
8190_01_mangos_creature_template.sql \
|
|
8191_01_mangos_spell_affect.sql \
|
|
8211_01_mangos_spell_proc_event.sql \
|
|
8212_01_mangos_spell_proc_event.sql \
|
|
8213_01_mangos_spell_bonus_data.sql \
|
|
8227_01_mangos_spell_proc_event.sql \
|
|
8237_01_mangos_creature_template.sql \
|
|
8247_01_mangos_spell_bonus_data.sql \
|
|
8249_01_mangos_spell_proc_item_enchant.sql \
|
|
8249_02_mangos_spell_chain.sql \
|
|
8250_01_mangos_spell_threat.sql \
|
|
8251_01_mangos_spell_chain.sql \
|
|
8251_02_mangos_spell_bonus_data.sql \
|
|
8251_03_mangos_spell_proc_event.sql \
|
|
8253_01_mangos_spell_chain.sql \
|
|
8253_02_mangos_spell_proc_event.sql \
|
|
8254_01_mangos_spell_proc_event.sql \
|
|
8294_01_mangos_playercreateinfo_action.sql \
|
|
8310_01_mangos_spell_proc_event.sql \
|
|
8332_01_realmd_realmcharacters.sql \
|
|
8339_01_characters_characters.sql \
|
|
8339_02_characters_character_battleground_data.sql \
|
|
8342_01_mangos_spell_proc_event.sql \
|
|
8361_01_mangos_spell_bonus_data.sql \
|
|
8364_01_mangos_db_version.sql \
|
|
README
|