1) Temperature should now be accurate on v1.6 Xbox, but thank you to Ack Ack (adam_r) from Discord.
2) Updated the code to get the CPU and GPU frequencies, now much more accurate.
	(
		Example code given from Team Cerbios, information was gathered from tech sheets.
		https://www.intel.com/content/dam/develop/external/us/en/documents/335592-sdm-vol-4.pdf
		https://web.archive.org/web/20040407043044/http://www.intel.com:80/design/mobile/datashts/29834006.pdf
	)
3) v1.6 Xbox only. New option "XBE launch fan speed" to force fan speed when running an xbe via the "Fan speed override" option in the system settings menu.
4) v1.6 Xbox only. If "Fan speed override" is enabled, the system applies a predefined static curve. You can either let it choose based on your current temperature or override them using "XBE launch fan speed":
	(
		0C - 49C minimum fan speed set to 10 (20%)
		at 50C it raises 4% then 4% every 2C
		So 60C the fan would be 46% fan speed, 62C would be 50% etc...
	)
5) v1.6 Xbox only. Fan curve added, normal and aggressive.
	(
		Normal: is using above values.
		Aggressive: 42C it raises 4% every 2C
	)
6) Added 3 new actions for restarting the xbox without saving any settings. This is handy if you want to modify the guisettings.xml as normally if you restart it will save the copy held in memory before restarting.
	(ColdRestart, FastRestart and HardRestart)

7) Added fix from Ronie for CBBD lookups.
	(https://github.com/xbmc/xbmc/pull/25700)

8) Added changes from eob2000 for the above.
	(
		https://github.com/eob2000/XBMC4Xbox/commit/d43ea575202605a09a635f1c4e93384c5de15176
	)
9) Fixed shortcuts not returning after you run two of them.
10) Speed improvements brought over from XBMC4Gamers to the programs menu.
11) Can now open txt based files via the file browser.
	(
		Python scripts you press white and select "Run Script" or you can disable .py in the advancedsettings.xml
		Current supported files. ".bat|.cfg|.csv|.h|.hpp|.htm|.html|.ini|.java|.js|.json|.kt|.log|.lua|.md|.nfo|.php|.pl|.ps1|.py|.rb|.sh|.sql|.swift|.tex|.ts|.txt|.xml|.yaml|.yml"
		You can add/remove more supported files to the advancedsettings.xml
		<textextensions>
			<add>.doc|.cut</add>
			<remove>.bat|.xml</remove>
		</textextensions>
	)
12) Added HasExtension from kodi
	(https://github.com/xbmc/xbmc/commit/54451b6e62b94b3651f7a4ab81db45b681ade327)
13) Increased CJpegIO thumbnails quality from 75 to 80 and can be adjusted.
	(jpegImage.CreateThumbnail(tempFile, destFile, width, height, 85))
14) Fixed issue with btnid 9 if statement in the GUIWindowFileManager.cpp
	(Thanks to Joshua Lineberry for finding this bug, its been there since before 3.5.3)
15) Fixed ordering of lists, so BLiNX 2: wont be before BLiNX: etc...
16) Updated time zones DST values and names, now only shows valid time zones that internet sync can work with.
	(works with MSDash, though selecting a fake time zone in the MSDash will set it to "AoE GMT-12:00")
17) Now the Z partition wont be cleared on load, unless there is less than 50MB free.
	(This is so games that cache there files to Z wont get cleared on reload of gamers)
18) Now you can set thumbnails via the context menu for sub folders.
	(note if folder.jpg exists in the folder it will overwrite any thumbs you set)
19) Now when you add an xbe file to favourites from the file manager its set as runxbe and not playmedia
20) When setting an xbe as a favourite via the file manager it will now set a thumb.
21) Added ShowPicture to buildin functions
22) Added Window.Close() same as Dialog.Close() but for windows
23) Updated python and the zlib archive to match XBMC4Gamers.
24) Added some of the new modules from XBMC4Gamers
25) Updated clearproperty and setproperty to accept windowids
26) Fixed kaitoast dialogs locking the UI when using Dalog.Close(All,false)