Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update diff list for CS #9

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 40 additions & 2 deletions docs/versions/v9.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,13 @@ We want to thank the following people for their contributions to Dalamud during
## FFXIVClientStructs changes
These are relevant changes made to FFXIVClientStructs, listed here for reference. We want to thank aers, Pohky, WilldWolf and the other FFXIVClientStructs contributors for their work.

From a593cb163e1c5d33b27d34df4d1ccc57d1e67643, as of commit 0af185ef155cf03f24c2dee8f50f3973a7d417aa:
From a593cb163e1c5d33b27d34df4d1ccc57d1e67643, as of commit fdd7160e78c20465d0375cebe1362bc3dde97c18:

Client/Game/ActionManager.cs:
- Changed UseAction to take a ulong instead of long for targetID
- Changed UseActionLocation to take a ulong instead of long for targetID
- Changed GetActionStatus to take a ulong instead of long for targetID
- Updated ActionType enum

Client/Game/ActionTimelineManager.cs
- Added Parent character pointer
Expand Down Expand Up @@ -192,11 +193,15 @@ Client/UI/Info/InfoProxyCommonList.cs:
- Changed Data to CharData
- Changed ContentID to ulong
- Changed GetContentIDForEntry to return ulong
- Removed CharIndex field from InfoProxyCommonList
- Renamed CharIndex to IndexData
- Removed CharacterDict and CharacterArray from InfoProxyCommonList
- Moved OnlineStatus, MentorState, PartyStatus, DutyStatus to single OnlineStatus enum linked to bitflag of OnlineStatus.exd
- Added Sort field
- Added ExtraFlags field
- Added FilterGroup field
- Added ApplyFilters method
- Renamed CharIndexEntry to CharacterIndex
- Added IsOtherServer

Client/UI/Info/InfoProxyCatalogSearch.cs:
- Was InfoProxyItemSearch
Expand Down Expand Up @@ -243,6 +248,33 @@ Client/UI/Shell/RaptureShellModule.cs:
Client/UI/UIModule.cs:
- Changed GetUIInputData to return UIInputData*

Client/UI/Misc/RaptureHotbarModule.cs:
- Changed Hotbar fields to FixedArrays
- Changed UNK_0xCA to CostType
- Changed UNK_0xCB to CostDisplayMode
- Changed UNK_0xD0 to CostValue
- Updated HotbarSlotType enum values

Client/UI/Info/InfoModule.cs:
- Updated InfoProxyId enum

Client/UI/Agent/AgentMap.cs:
- Added MinimapMSQLinkedTooltipMarkers
- Added MinimapMSQLinkedTooltipMarkersList
- Added MapQuestLinkContainer
- Added MiniMapQuestLinkContainer

Client/UI/Agent/AgentFieldMarker.cs:
- Removed WaymarkIndex enum

Client/UI/AddonFieldMarker.cs:
- Changed WaymarkInfo to FieldMarkerInfo

Client/Game/UI/UIState.cs:
- Corrected ChocoboTaxiStandsBitmask size
- Added CutsceneSeenBitmask
- Added IsCutsceneSeen

Component/GUI/AtkComponentDragDrop.cs:
- Added AtkDragDropInterface field

Expand All @@ -263,6 +295,8 @@ Component/GUI/AtkModule.cs:

Component/GUI/AtkStage.cs:
- Added AtkTextureResourceManager field
- Changed AtkEventDispatcher to FixedSizeArray
- Added NextEventDispatcherIndex

Component/GUI/AtkTextureResource.cs:
- Changed Count_1 to Count
Expand Down Expand Up @@ -294,7 +328,11 @@ New Files Added:
- Application/Network/WorkDefinitions/EnterContentInfo.cs
- Client/Game/Control/EmoteController.cs
- Client/Game/Conditions.cs
- Component/GUI/AtkEventDispatcher.cs
- Client/UI/Agent/AgentBlacklist.cs

Changed All Agents to use the new AgentGettersGenerator

Changed All VTable to vtbl

Added SpanExtensions
Loading