Module:Updates/data

From Dune: Awakening Community Wiki
Jump to navigation Jump to search

Module:Updates/data

Dataset of published game update versions.

Schema

The dataset is a Lua array of version strings, in ascending version order. Each version string in the dataset must exactly match its corresponding wiki page title.

The position of each item in the array determines its relationship to neighbouring entries:

  • The previous entry is treated as the previous update.
  • The next entry is treated as the next update.

Therefore, the list must always remain sorted in ascending version order.

Version Format

Game versions follow a four-segment format: MAJOR.MINOR.PATCH.REVISION. For wiki page titles, REVISION is always 0. See Page Format for more info.

If PATCH number is between 1 and 9 inclusive, it must be zero-padded to form two digits (e.g. x.x.05.x, NOT x.x.5.x).

Page Format

A new wiki page is created whenever PATCH or a higher segment changes. Version updates that only increment REVISION continue to be covered on the same page.


return {
    "1.1.0.0",
    "1.1.10.0",
    "1.1.15.0",
    "1.1.17.0",
    "1.1.20.0",
    "1.1.25.0",
    "1.2.0.0",
    "1.2.10.0",
    "1.2.11.0",
    "1.2.20.0",
    "1.2.30.0",
    "1.2.40.0",
    "1.3.0.0",
    "1.3.05.0",
    "1.3.10.0",
    "1.3.15.0",
}