diff --git a/acore.json b/acore.json index e56615d0b..603a439b8 100644 --- a/acore.json +++ b/acore.json @@ -1,5 +1,5 @@ { "name": "azerothcore-wotlk", - "version": "7.0.0-dev.0", + "version": "7.0.0-dev.1", "license": "AGPL3" } diff --git a/data/sql/updates/pending_db_auth/rev_1676759011048897700.sql b/data/sql/updates/db_auth/2023_02_20_00.sql similarity index 87% rename from data/sql/updates/pending_db_auth/rev_1676759011048897700.sql rename to data/sql/updates/db_auth/2023_02_20_00.sql index 8718dc169..5df0d6814 100644 --- a/data/sql/updates/pending_db_auth/rev_1676759011048897700.sql +++ b/data/sql/updates/db_auth/2023_02_20_00.sql @@ -1,3 +1,4 @@ +-- DB update 2023_01_31_00 -> 2023_02_20_00 -- DROP TABLE IF EXISTS `motd`; CREATE TABLE `motd` ( diff --git a/data/sql/updates/pending_db_world/rev_1676761525437802000.sql b/data/sql/updates/db_world/2023_02_20_00.sql similarity index 93% rename from data/sql/updates/pending_db_world/rev_1676761525437802000.sql rename to data/sql/updates/db_world/2023_02_20_00.sql index 29750ceff..2ffd4daf8 100644 --- a/data/sql/updates/pending_db_world/rev_1676761525437802000.sql +++ b/data/sql/updates/db_world/2023_02_20_00.sql @@ -1,3 +1,4 @@ +-- DB update 2023_02_19_11 -> 2023_02_20_00 -- DELETE FROM `command` WHERE `name` = 'reload motd'; INSERT INTO `command` (`name`, `security`, `help`) VALUES diff --git a/doc/changelog/master.md b/doc/changelog/master.md index bc889f228..b64820713 100644 --- a/doc/changelog/master.md +++ b/doc/changelog/master.md @@ -1,3 +1,25 @@ +## 7.0.0-dev.1 | Commit: [0c4feb674444210da295751a0c4e5eefb9c771f1 +](https://github.com/azerothcore/azerothcore-wotlk/commit/0c4feb674444210da295751a0c4e5eefb9c771f1 + + +### How to upgrade + +Motd is removed from config file + +Motd is can now be found in auth database table `motd` + +`realmid` = Realm ID or -1 for all realms. +`text` = Text for Motd + +Specified realmId is prioritized over -1 (All Realms) + +For example: + +You have realm 1, 2, 3 + +(-1, "This Motd will show for 2, 3") +(1, "This Motd will show for 1") + ## 6.0.0-dev.3 | Commit: [44b7a0666c78dc99ab0bbc94045abb6685b3ad86 ](https://github.com/azerothcore/azerothcore-wotlk/commit/44b7a0666c78dc99ab0bbc94045abb6685b3ad86 diff --git a/doc/changelog/pendings/changes_1676759248142739600.md b/doc/changelog/pendings/changes_1676759248142739600.md deleted file mode 100644 index f4f8c945b..000000000 --- a/doc/changelog/pendings/changes_1676759248142739600.md +++ /dev/null @@ -1,17 +0,0 @@ -### How to upgrade - -Motd is removed from config file - -Motd is can now be found in auth database table `motd` - -`realmid` = Realm ID or -1 for all realms. -`text` = Text for Motd - -Specified realmId is prioritized over -1 (All Realms) - -For example: - -You have realm 1, 2, 3 - -(-1, "This Motd will show for 2, 3") -(1, "This Motd will show for 1")