Minecraft Wiki
Advertisement
[view | edit | history | purge]DocumentationJump to code ↴

This module is kept only for historical purposes. Please use {{version}} to display the latest version.

[view | edit | history | purge]The above documentation is transcluded from Module:Version/Numbers/doc.
-- Set server versions to "nil" if they are the same as the client version
-- Set development versions to an empty string when there is no development version
return {
		-- Java Edition
		['classic'] = { '0.30', prefix = 'Classic' },
		['classic-server'] = { '1.1.2', prefix = 'Classic' },
		['pc'] = '1.13.2',
		['weekly'] = '18w44a',
		['launcher-windows'] = { '2.1.1432', prefix = 'Launcher' },
		['launcher-mac'] = { '2.1.1433', prefix = 'Launcher' },
		['launcher-linux'] = { '2.1.1431', prefix = 'Launcher' },
		-- Bedrock Edition
		['android'] = { '1.7', prefix = 'Bedrock' },
		['android-snap'] = { 'beta 1.8.0.11', prefix = 'Bedrock' },
		['ios'] = { '1.7', prefix = 'Bedrock' },
		['fireos'] = { '1.7', prefix = 'Bedrock' },
		['firetv'] = { '1.7', prefix = 'Bedrock' },
		['windows10'] = { '1.7', prefix = 'Bedrock' },
		['windows10-snap'] = { 'beta 1.8.0.11', prefix = 'Bedrock' },
		['windows10mobile'] = { '1.7', prefix = 'Bedrock' },
		['gearvr'] = { '1.7', prefix = 'Bedrock' },
		['xbone'] = { '1.7', prefix = 'Bedrock' },
		['xbone-snap'] = { 'beta 1.8.0.11', prefix = 'Bedrock' },
		['nswitch'] = { '1.7', prefix = 'Bedrock' },
		-- Pocket Edition
		['androidpocket'] = { '1.1.5', prefix = 'PE' },
		['iospocket'] = { '1.1.7', prefix = 'PE' },
		['fireospocket'] = { '1.1.5', prefix = 'PE' },
		['windowsphone'] = { '0.16.2', prefix = 'PE Alpha' },
		['windows10pocket'] = { '1.1.5', prefix = 'PE' },
		['windows10mobilepocket'] = { '1.1.5', prefix = 'PE' },
		['gearvrpocket'] = { '1.1.5', prefix = 'PE' },
		['appletv'] = { '1.1.5', prefix = 'PE' },
		['firetvpocket'] = { '1.1.5', prefix = 'PE' },
		-- Legacy Console Edition
		['xbox'] = { 'TU70', prefix = 'Console' },
		['xbonelegacy'] = { 'CU57', prefix = 'Console' },
		['ps3'] = { '1.78', prefix = 'Console' },
		['ps4'] = { '1.78', prefix = 'Console' },
		['psvita'] = { '1.77', prefix = 'Console' },
		['wiiu'] = { 'Patch 39', prefix = 'Console' },
		['nswitch-legacy'] = { 'Patch 16', prefix = 'Switch' },
		-- New Nintendo 3DS Edition
		['3ds'] = { '1.7.10', prefix = '3DS' },
		-- Chinese Edition
        ['chinese'] = { '1.3.2.47971', prefix = 'Chinese' },
        ['chineseandroid'] = { '1.8.5.48310', prefix = 'Chinese' },
        ['chineseios'] = { '1.8.3', prefix = 'Chinese' },
		-- Education Edition
        ['education'] = { '1.4.1', prefix = 'Education' },
		['education-win10'] = { '1.4.0', prefix = 'Education' },
        ['education-mac'] = { '1.4.1', prefix = 'Education' },
        ['education-ios'] = { '1.4.0', prefix = 'Education' },
}
Advertisement