diff --git a/changelog.txt b/changelog.txt index 1217ee9d5..507bbd7d1 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,17 @@ EQEMu Changelog (Started on Sept 24, 2003 15:50) ------------------------------------------------------- +== 07/09/2018 == +mackal: Rework of Task System, Shared Tasks still unsupported + - The tables now have better named columns, which hopefully won't need to be explained + - Text1 is now target_name, Text2 is now item_list, Text3 is now description_override + - Tasks can now reward faction hits, this is just normal NPC Faction ID entries because I was lazy + - The "Task" type tasks are now supported, a player can only be doing one of these at a time + - Activity IDs for use spell on and use skill on have been identified but not implemented + - Identified "duration code" for unlimited duration tasks (None = 0, Short = 1, Medium = 2, Long = 3) + - Activities can now have multiple zones separated by ';' + - tasks.startzone removed since it actually just uses first activity + - skill_list and spell_list are both IDs that can be separated by ';' (still unimplemented though) + == 07/07/2018 == Akkadius: Implemented a much better replacement for qglobals called 'DataBuckets' - A much more detailed example can be found at: https://github.com/EQEmu/Server/wiki/Data-Buckets diff --git a/common/version.h b/common/version.h index 31345e996..15fe7bb22 100644 --- a/common/version.h +++ b/common/version.h @@ -30,7 +30,7 @@ Manifest: https://github.com/EQEmu/Server/blob/master/utils/sql/db_update_manifest.txt */ -#define CURRENT_BINARY_DATABASE_VERSION 9123 +#define CURRENT_BINARY_DATABASE_VERSION 9124 #ifdef BOTS #define CURRENT_BINARY_BOTS_DATABASE_VERSION 9019 #else diff --git a/utils/sql/db_update_manifest.txt b/utils/sql/db_update_manifest.txt index c6d5f0333..f55ff5235 100644 --- a/utils/sql/db_update_manifest.txt +++ b/utils/sql/db_update_manifest.txt @@ -377,6 +377,7 @@ 9121|2018_02_18_bug_reports.sql|SHOW TABLES LIKE 'bug_reports'|empty| 9122|2018_03_07_ucs_command.sql|SELECT * FROM `command_settings` WHERE `command` LIKE 'ucs'|empty| 9123|2018_07_07_data_buckets.sql|SHOW TABLES LIKE 'data_buckets'|empty| +9124|2018_07_09_tasks.sql|SHOW COLUMNS FROM `tasks` LIKE 'type'|empty| # Upgrade conditions: # This won't be needed after this system is implemented, but it is used database that are not diff --git a/utils/sql/git/required/tasks_revamp.sql b/utils/sql/git/required/2018_07_09_tasks.sql similarity index 100% rename from utils/sql/git/required/tasks_revamp.sql rename to utils/sql/git/required/2018_07_09_tasks.sql