Skip to content

Files

Latest commit

6051fd4 · Mar 28, 2018

History

History
This branch is 1408 commits behind wowdev/WoWDBDefs:master.

analytics

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 28, 2018
Mar 28, 2018
Mar 28, 2018

db-by-checksum.json

DBs grouped by <filename, MD5 checksum> then sorted by <expansion, build>.

public class ChecksumGroup
{
  public string Name;
  public Dictionary<string, string[]> Builds; // <checksum, builds>
}

db-row-match

(In progress) Comparison of matching rows (at byte level) between two builds. DBs grouped by filename, sorted by <expansion, build>. <Legion only.

public class DBDMatchGroup
{
  public string BuildPrev;
  public string BuildCur;
  public int RecordCountPrev;
  public int RecordCountCur;
  public int MatchCount;
  public float MatchCountPercent;
}