aboutsummaryrefslogtreecommitdiff
path: root/sql/base
AgeCommit message (Collapse)Author
2020-03-16TDB 335.20031 - 2020/03/16TDB335.20031TDB Release
2020-02-15TDB 335.20021 - 2020/02/15TDB335.20021TDB Release
2020-01-15TDB 335.20011 - 2020/01/15TDB335.20011TDB Release
2019-12-15TDB 335.19121 - 2019/12/15TDB335.19121TDB Release
2019-12-07Core/Realms: Move build info (and auth seeds) to databaseShauren
(cherry picked from commit 61f2eed3531ebfd2585ab05add31ae9e97598233)
2019-11-16TDB 335.19111 - 2019/11/16TDB335.19111TDB Release
2019-10-18TDB 335.19101 - 2019/10/18TDB335.19101TDB Release
2019-09-15TDB 335.19091 - 2019/09/15TDB335.19091TDB Release
2019-08-16TDB 335.19081 - 2019/08/16TDB335.19081TDB Release
2019-08-10[3.3.5] Core/Authserver: TOTP rewrite: (PR #23633)Treeston
- Proper management commands (.account 2fa) - Secrets can now be encrypted (set TOTPTokenSecret in .conf) - Secret now stored in binary - Argon2 and AES primitives - Base32/64 support
2019-07-17Core/DB: Add RBAC for .debug poolstatus, because I need it for the pooling ↵Treeston
branch.
2019-07-16Scripts/Commands: Add .debug questreset to force daily/weekly/monthly quest ↵Treeston
reset.
2019-07-16Core/DB: Add a world state for daily quest reset time to `characters`. Not ↵Treeston
used right now, but written to allow easier transition later.
2019-07-15SQL: Add missing update entryShauren
2019-07-15Core/Addons: Improve WorldSession::ReadAddonsInfoShauren
* Only allow built-in addons to be marked as secure * Better protect against malformed packets
2019-07-15TDB 335.19071 - 2019/07/15TDB335.19071TDB Release
2019-07-14Core/DB: Unify `creature_respawn` and `gameobject_respawn` into a single ↵Treeston
`respawn` table
2019-06-21Core/RBAC: add permission that prevents accounts from earning all ↵Wyrserth
achievements or only realm firsts (#23459) * Core/RBAC: add permission that prevents accounts from earning all achievements or only realm firsts. * Kill evil spaces. * Rename 9999_99_99_99_auth.sql to 2019_06_21_00_auth.sql * Update auth_database.sql
2019-06-16Core/Commands: implement commands to look up a map/item/quest name for a ↵Wyrserth
given id (#23416) * Core/Commands: implement commands to look up a map/item/quest name for a given id. * Add entry to updates table. * Rename 9999_99_99_99_auth.sql to 2019_06_16_00_auth.sql * Add missed change, thanks jackpoz! * Update auth_database.sql
2019-06-15TDB 335.19061 - 2019/06/15TDB335.19061TDB Release
2019-06-06DB: Add new view vw_log_history to show database logs in a better wayjackpoz
2019-05-15TDB 335.19051 - 2019/05/15TDB335.19051TDB Release
2019-04-27Scripts/Commands: Add .debug asan commandsjackpoz
Add ".debug asan memoryleak" and ".debug asan outofbounds" commands to trigger Address Sanitizer warnings at runtime (or other dynamic analysis tools)
2019-04-15TDB 335.19041 - 2019/04/15TDB335.19041TDB Release
2019-03-19TDB 335.19031 - 2019/03/19TDB335.19031TDB Release
2018-12-30Renamed SQL with proper dateShauren
2018-12-30Core/Creatures: Port trainer changes from masterGhaster
Closes #20493
2018-11-28Update characters_database.sqlAokromes
2018-11-09Core/Auras: Fixed saving auras with same spell id but different item sourceShauren
2018-09-17Scripts/Commands: Add .debug dummy. It does nothing, which means you can ↵Treeston
make it do anything.
2018-09-06Core/RBAC: Simplification part 1. Nobody needs different permissions for ↵Treeston
each type of .go command.
2018-08-30Make travis happyAokromes
2018-08-30Scripts/Commands: New command ".go instance". Goes to an instance.Treeston
2018-07-09SQL: Added missing updates entryShauren
2018-07-09Core/Players: Fixed saving quest item progressShauren
2018-06-23Common: Replace ip2nation by ip2location. (#21957)Gooyeth
Replace ip2nation by ip2location. Download: https://lite.ip2location.com/database/ip-country
2018-04-25Update characters_database.sqlAokromes
2018-04-24Core/Battleground: Fix arena distribution timer where it is less than the ↵Gooyeth
current unix time. (#21859) * Core/Battleground: Fix arena distribution timer where it is less than the current unix time. * fix bracket * fix when the timer starts for the first time. * m_NextAutoDistributionTime instead of GetGameTime.
2018-04-03Update characters_database.sqlGooyeth
2018-04-03improved fixGooyeth
2018-04-03Core/Spells: don't save Magma aura.Gooyeth
2018-03-08Core/Creatures: Reworked setting move types in databaseShauren
* Each move type has its own field instead of trying to combine everything in InhabitType * Allow overriding movement separately for each spawn
2018-03-06Scripts/Commands: implemented command .server debugariel-
- Shows detailed information about server setup, useful when reporting a bug: * rev. hash * versions of mysql, openssl, boost, cmake * info about autoupdater * info about ports (realmlist and current) * vmap/map/mmap status and folder sizes * available DBC locales * TDB version Closes #19957
2018-02-18SQL: Updates to the 335.64 auth & characters updates tablestkrokli
- added missing lines in the `updates` tables for the new TDB 335.64 files
2018-02-18DB/SQL: typo fix (Update base files follow-up)tkrokli
2018-02-18SQL: Update base filesDDuarte
Missing changes to ed63d15
2018-02-11Update characters_database.sqlAokromes
2018-01-24Scripts/Commands: new command '.debug instancespawn'Treeston
2018-01-13Core/Auras: removed caster dependency from coreariel-
- Decoupled Unit logic: split of spell critical chance into done (caster bonuses) and taken (target bonuses), this allows to precalculate caster bonuses on aura apply and then check victim's auras on damage/healing calc - Made static a bunch of methods (they no longer have this pointer because they are now called from periodic handlers which may or may not have an active caster in world) - Simplified all AuraEffect bonuses into AuraEffect::_amount, no more duplicated code - Critical chance and whether or not caster is player owned unit (for resilience calcs) is now saved one level upper, on Aura itself (it's impossible as of 3.3.5 to have different effects with different critical chances) - Minor cleanup of SPELL_DAMAGE_CLASS_NONE and Arcane Potency (#18813) crit handling Closes #19876
2018-01-09add update to auth_database baseTreeston