Module:Updates/data

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

Module:Updates/data

Dataset of published game update versions, in ascending order.

Schema

The dataset is a Lua array of version strings.

Each entry represents a wiki page for a game update and must exactly match the 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.



return {
  "1.1.0.5",
  "1.1.0.7",
  "1.1.0.9",
  "1.1.0.11",
  "1.1.0.13",
  "1.1.0.14",
  "1.1.0.15",
  "1.1.0.17",
  "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.5.0",
}