This documents the structure of the SavedVariables for future reference. If
any of this changes between two public releases, it needs to be documented and
fixed in code for all users.

-- Stores our profiles:
xrp_profiles = {
	Name = {
		FE = "string",
		IL = "string",
		DE = "string",
	},
}

-- Stores our most-recently-selected profile:
xrp_selectedprofile = "string"

-- Stores our versions:
xrp_versions = {
	FE = 2,
	IL = 10,
	DE = 10202,
}

-- Stores others' profiles and versions.
xrp_cache = {
	["Character-RealmName"] = {
		fields = {
			FE = "string",
			IL = "string",
			DE = "string",
		},
		versions = {
			FE = 23,
			IL = 231,
			DE = 2,
		}
	},
}

-- Stores our settings.
-- (setmetatable handles defaults for values)
xrp_settings = {
	setting = value,
}
