Changes in 1.6: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Actively updating this page until 1.6 release to make sure everything is present in the changelog page.)
No edit summary
Line 2: Line 2:
{{Changelogs}}
{{Changelogs}}
__NOTOC__
__NOTOC__
This release is planned to be released Oct 1, 2022.
* GitHub commit log: https://github.com/multitheftauto/mtasa-blue/compare/1.5.9...master
* GitHub commit log: https://github.com/multitheftauto/mtasa-blue/compare/1.5.9...master
* GitHub milestone: https://github.com/multitheftauto/mtasa-blue/milestone/9
* GitHub milestone: https://github.com/multitheftauto/mtasa-blue/milestone/9
Line 11: Line 12:




=== 5 Backwards Incompatible Changes ===
== 5 Backwards Incompatible Changes ==
<section show="true">
''These changes will take effect in this version and scripts may need to be manually upgraded when updating:''
''These changes will take effect in this version:''
:* [[callRemote]] callbacks currently set the error code to '''nil''' when there is no error. In this version, to be consistent with [[fetchRemote]], the error code reported will be '''0'''.<br>See [https://github.com/multitheftauto/mtasa-blue/issues/294 GitHub issue #294].
:* [[callRemote]] callbacks currently set the error code to '''nil''' when there is no error. In this version, to be consistent with [[fetchRemote]], the error code reported will be '''0'''.<br>See [https://github.com/multitheftauto/mtasa-blue/issues/294 GitHub issue #294].
:* Since July 2016 if you provide an invalid string like '''"randomstring"''' when a function expects a number, the string will be treated as '''0''' and raise a script warning. This will be now an error. You will still be able to provide strings containing numbers (e.g. '''"100"''' and '''"12.34"'''), this change only affects invalid strings.<br>See [https://github.com/multitheftauto/mtasa-blue/issues/1043 GitHub issue #1043].
:* Since July 2016 if you provide an invalid string like '''"randomstring"''' when a function expects a number, the string will be treated as '''0''' and raise a script warning. This will be now an error. You will still be able to provide strings containing numbers (e.g. '''"100"''' and '''"12.34"'''), this change only affects invalid strings.<br>See [https://github.com/multitheftauto/mtasa-blue/issues/1043 GitHub issue #1043].
Line 19: Line 19:
:* Some functions expect only unsigned integers (positive numbers), and since January 2016 providing negative numbers would be a warning. This will now be an error.<br>See [https://github.com/multitheftauto/mtasa-blue/issues/1070 GitHub issue #1070].
:* Some functions expect only unsigned integers (positive numbers), and since January 2016 providing negative numbers would be a warning. This will now be an error.<br>See [https://github.com/multitheftauto/mtasa-blue/issues/1070 GitHub issue #1070].
:* Since August 2015, we replaced the custom '''mtalocal://''' URL scheme with '''http://mta/resourceName/blah.html'''. This '''mtalocal://''' URL scheme will now be removed.<br>See [https://github.com/multitheftauto/mtasa-blue/issues/1071 GitHub issue #1071].
:* Since August 2015, we replaced the custom '''mtalocal://''' URL scheme with '''http://mta/resourceName/blah.html'''. This '''mtalocal://''' URL scheme will now be removed.<br>See [https://github.com/multitheftauto/mtasa-blue/issues/1071 GitHub issue #1071].
</section>




=== Extra information ===
== 2 Bug Fixes and Changes ==
=== Shared ===
:* Fixed [[getCameraTarget]] returning the [[player]] instead of their [[vehicle]], if available ([https://github.com/multitheftauto/mtasa-blue/commit/05b7ea2d9c936b727ac057d3307d40a434f40352 05b7ea2] by '''botder''')
 
=== More Technical Bug Fixes and Changes ===
:* Initialized variable ''lastSyncType'' in [[addElementDataSubscriber]] ([https://github.com/multitheftauto/mtasa-blue/commit/ca3b0b778e9695ce7da6391eda14429aa055d1f2 ca3b0b7] by '''botder''')
 
 
== 1 Vendor Updates ==
=== Client ===
:* Updated CEF from 94.4.2+g6a963ca (Chromium 94.0.4606.61) to 94.4.5+g0fd0d6f ([https://chromereleases.googleblog.com/2021/09/stable-channel-update-for-desktop_24.html Chromium 94.0.4606.71]) (See commit [https://github.com/multitheftauto/mtasa-blue/commit/d1f164ab202905a047f946b33dec1d40127ae2eb d1f164a] by '''Dutchman101''')
 
 
== Extra information ==
''More detailed information available on our GitHub repositories:
''More detailed information available on our GitHub repositories:
:* [https://github.com/multitheftauto/mtasa-blue MTA:SA Blue]
:* [https://github.com/multitheftauto/mtasa-blue MTA:SA Blue]

Revision as of 23:38, 4 October 2021

MTA:SA Releases Changelog Pages
1.0 1.0.0 • 1.0.1 • 1.0.2 • 1.0.3 • 1.0.4
1.1 1.1.0 • 1.1.1
1.2 1.2.0
1.3 1.3.01.3.11.3.21.3.31.3.41.3.5
1.4 1.4.01.4.1
1.5 1.5.01.5.11.5.21.5.31.5.41.5.51.5.61.5.71.5.81.5.9
1.6 1.6.01.6.1

This release is planned to be released Oct 1, 2022.


This changelog is partial and needs updating. It is updated progressively to keep the page always up to date. To be documented: https://github.com/multitheftauto/mtasa-blue/compare/1.5.9...master


5 Backwards Incompatible Changes

These changes will take effect in this version and scripts may need to be manually upgraded when updating:

  • callRemote callbacks currently set the error code to nil when there is no error. In this version, to be consistent with fetchRemote, the error code reported will be 0.
    See GitHub issue #294.
  • Since July 2016 if you provide an invalid string like "randomstring" when a function expects a number, the string will be treated as 0 and raise a script warning. This will be now an error. You will still be able to provide strings containing numbers (e.g. "100" and "12.34"), this change only affects invalid strings.
    See GitHub issue #1043.
  • When providing a width and height of (0, 0) to createBrowser or guiCreateBrowser you will encounter a script error instead of a warning, introduced in February 2019.
    See GitHub issue #1069.
  • Some functions expect only unsigned integers (positive numbers), and since January 2016 providing negative numbers would be a warning. This will now be an error.
    See GitHub issue #1070.
  • Since August 2015, we replaced the custom mtalocal:// URL scheme with http://mta/resourceName/blah.html. This mtalocal:// URL scheme will now be removed.
    See GitHub issue #1071.


2 Bug Fixes and Changes

Shared

More Technical Bug Fixes and Changes


1 Vendor Updates

Client


Extra information

More detailed information available on our GitHub repositories: