Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update curl from 7.84.0 to 7.85.0 #2728

Merged
merged 2 commits into from Sep 8, 2022
Merged

Update curl from 7.84.0 to 7.85.0 #2728

merged 2 commits into from Sep 8, 2022

Conversation

patrikjuvonen
Copy link
Contributor

Summary

Tests

Validation

To help validate the integrity of the update I have created the following bash script that diffs between my PR branch and the official package provided from the curl website.

#!/bin/bash

CURL_UPDATE_VERSION=7.85.0
CURL_PATH_NAME=curl-$CURL_UPDATE_VERSION

GIT_REPO_BRANCH=vendor/curl-7.85.0
GIT_REPO_URL=https://github.com/multitheftauto/mtasa-blue.git
GIT_REPO_CURL_PATH=vendor/curl/

echo 1. Download and extract $CURL_PATH_NAME...
curl https://curl.se/download/$CURL_PATH_NAME.tar.xz | tar -xJ

echo 2. Fetch and checkout the vendor update branch $GIT_REPO_BRANCH from $GIT_REPO_URL...
git fetch $GIT_REPO_URL $GIT_REPO_BRANCH:$GIT_REPO_BRANCH
git checkout $GIT_REPO_BRANCH

echo 3. Start checking integrity...
diff -r --strip-trailing-cr $GIT_REPO_CURL_PATH $CURL_PATH_NAME

echo 4. Completed.
exec $SHELL

Past curl updates in MTA

Date From To Link
August 2022 7.83.1 7.84.0 (current) #2658
May 2022 7.82.0 7.83.1 #2614
April 2022 7.81.0 7.82.0 #2581
January 2022 7.79.1 7.81.0 #2502
September 2021 7.79.0 7.79.1 #2373
September 2021 7.78.0 7.79.0 #2357
August 2021 7.77.0 7.78.0 #2285
June 2021 7.76.1 7.77.0 #2243
April 2021 7.75.0 7.76.1 #2182
March 2021 7.74.0 7.75.0 #2081
December 2020 7.72.0 7.74.0 #1959
October 2020 7.69.1 7.72.0 #1562
March 2020 7.68.0 7.69.1 #1302
January 2020 7.67.0 7.68.0 #1216
November 2019 7.66.0 7.67.0 #1161
September 2019 7.65.3 7.66.0 #1099
July 2019 7.65.1 7.65.3 #1027
July 2019 7.64.1 7.65.1 #1018
April 2019 7.64.0 7.64.1 #898
February 2019 7.63.0 7.64.0 #819
January 2019 7.61.1 7.63.0 #744
September 2018 7.61.0 7.61.1 #428
August 2018 7.59.0 7.61.0 #271
March 2018 7.54.0 7.59.0 b99e343
June 2017 7.32.0 7.54.0 c15d999
August 2013 7.19.4 7.32.0 aaf3e21

Copy of curl changelogs

Fixed in 7.85.0 - August 31 2022

Changes:

quic: add support via wolfSSL
schannel: Add TLS 1.3 support
setopt: add CURLOPT_PROTOCOLS_STR and CURLOPT_REDIR_PROTOCOLS_STR

Bugfixes:

amigaos: fix threaded resolver on AmigaOS 4.x
amissl: allow AmiSSL to be used with AmigaOS 4.x builds
amissl: make AmiSSL v5 a minimum requirement
asyn-ares: make a single alloc out of hostname + async data
asyn-thread: fix socket leak on OOM
asyn-thread: make getaddrinfo_complete return CURLcode
base64: base64url encoding has no padding
BUGS.md: improve language
build: improve OS string in CMake and config-win32.h
cert.d: clarify that escape character works for file paths
cirrus.yml: replace py38-pip with py39-pip
cirrus/freebsd-ci: bootstrap the pip installer
cmake: add detection of threadsafe feature
cmake: do not force Windows target versions
cmake: fix build for mingw cross compile
cmake: link curl to its dependencies with PRIVATE
cmake: remove APPEND in export(TARGETS)
cmake: set feature PSL if present
cmake: support ngtcp2 boringssl backend
cmdline-opts/gen.pl: improve performance
config: remove the check for and use of SIZEOF_SHORT
configure: -pthread not available on AmigaOS 4.x
configure: check for the stdatomic.h header in configure
configure: fix --disable-headers-api
configure: fix broken m4 syntax in TLS options
configure: fixup bsdsocket detection code for AmigaOS 4.x
configure: if asked to use TLS, fail if no TLS lib was detected
configure: introduce CURL_SIZEOF
connect: add quic connection information
connect: close the happy eyeballs loser connection when using QUIC
connect: revert the use of IP*_RECVERR
connect: set socktype/protocol correctly
cookie: reject cookies with "control bytes"
cookie: treat a blank domain in Set-Cookie: as non-existing
cookie: use %zu to infof() for size_t values
curl-compilers.m4: make icc use -diag* options and disable two warnings
curl-config: quote directories with potential space
curl-confopts: remove leftover AC_REQUIREs
curl-functions.m4: check whether atomics can link
curl-wolfssl.m4: add options header when building test code
curl.h: CURLE_CONV_FAILED is obsoleted
curl.h: include <sys/select.h> on SunOS
curl: output warning when a cookie is dropped due to size
curl: writeout: fix repeated header outputs
Curl_close: call Curl_resolver_cancel to avoid memory-leak
curl_easy_header: Add CURLH_PSEUDO to sanity check
curl_mime_data.3: polish the wording
curl_multi_timeout.3: clarify usage
CURLINFO_SPEED_UPLOAD/DOWNLOAD.3: fix examples
CURLOPT_BUFFERSIZE.3: add upload buffersize to see also
CURLOPT_CONNECT_ONLY.3: clarify multi API use
CURLOPT_SERVER_RESPONSE_TIMEOUT: the new name
digest: fix memory leak, fix not quoted 'opaque'
digest: fix missing increment of 'nc' value for auth-int
digest: pass over leading spaces in qop values
digest: reject broken header with session protocol but without qop
docs/cmdline-opts/gen.pl: encode leading single and double quotes
docs/cmdline-opts: fix example and categories for --form-escape
docs/cmdline: mark fail and fail-with-body as mutually exclusive
docs: add dns category to --resolve
docs: explain curl_easy_escape/unescape curl handle is ignored
docs: remove him/her/he/she from documentation
doh: move doh related struct definitions to doh.h
doh: use https protocol by default
easy_lock.h: include sched.h if available to fix build
easy_lock.h: use asm instead of asm to fix build
easy_lock: fix build for mingw
easy_lock: fix build with icc
easy_lock: fix the #ifdef conditional for ia32_pause
easy_lock: switch to using atomic_int instead of bool
easyoptions: fix icc warning
escape: remove outdated comment
examples/curlx.c: remove
file: add handling of native AmigaOS paths
file: fix icc enumerated type mixed with another type warning
ftp: use a correct expire ID for timer expiry
getinfo: return better error on NULL as first argument
GHA: add two Intel compiler CI jobs
GHA: move libressl CI from zuul to GitHub
gha: move over ngtcp2-gnutls CI job from zuul
GHA: mv CI torture test from Zuul
h2h3: fix overriding the 'TE: Trailers' header
hostip: resolve *.localhost to 127.0.0.1/::1
HTTP3.md: update to msh3 v0.4.0
http: typecast the httpreq assignment to avoid icc compiler warning
http_aws_sigv4.c: remove two unusued includes
http_chunks: remove an assign + typecast
hyper: customize test1274 to how hyper unfolds headers
hyper: enable obs-folded multiline headers
hyper: use wakers for curl pause/resume
imap: use ISALNUM() for alphanumeric checks
ldap: adapt to conn->port now being an 'int'
lib/curl_path.c: add ISC to license expression
lib3026: reduce the number of threads to 100
libcurl-security.3: fix typo on macro "SH_"
libssh2: make atime/mtime date overflow return error
libssh2: provide symlink name in SFTP dir listing
libssh: ignore deprecation warnings
libssh: make atime/mtime date overflow return error
Makefile.m32: add CURL_RC and CURL_STRIP variables [ci skip]
Makefile.m32: add NGTCP2_LIBS option [ci skip]
makefile.m32: add support for custom ARCH [ci skip]
Makefile.m32: allow -nghttp3/-ngtcp2 without -ssl [ci skip]
Makefile.m32: do not set the libcurl.rc debug flag [ci skip]
Makefile.m32: stop trying to build libcares.a [ci skip]
memdebug: add annotation attributes
mprintf: fix *dyn_vprintf() when out-of-memory
mprintf: make dprintf_formatf never return negative
msh3: fix the QUIC disconnect function
multi: fix the return code from Curl_pgrsDone()
multi: have curl_multi_remove_handle close CONNECT_ONLY transfer
multi: use a pipe instead of a socketpair on apple platforms
multi: use larger dns hash table for multi interface
multi_wait: fix and improve Curl_poll error handling on Windows
multi_wait: fix skipping to populate revents for extra_fds
netrc.d: remove spurious quote
netrc: Use the password from lines without login
ngtcp2: Fix build error due to change in nghttp3 prototypes
ngtcp2: fix incompatible function pointer types
ngtcp2: Fix missing initialization of nghttp3_nv.flags
ngtcp2: fix stall or busy loop on STOP_SENDING with upload data
ngtcp2: implement cb_h3_stop_sending and cb_h3_reset_stream callbacks
openssl: add CURL_BORINGSSL_VERSION to identify BoringSSL
openssl: add cert path in error message
openssl: add details to "unable to set client certificate" error
openssl: fix BoringSSL symbol conflicts with LDAP and Schannel
quiche: fix build failure
select: do not return fatal error on EINTR from poll()
sendf: fix paused header writes since after the header API
sendf: make Curl_debug a void function
sendf: skip storing HTTP headers if HTTP disabled
sendf: store the header type in an usigned char to avoid icc warnings
splay: avoid using -1 in unsigned variable
test3026: add support for Windows using native Win32 threads
test3026: require 'threadsafe'
test44[2-4]: add '--resolve' to the keywords
tests/server/sockfilt.c: avoid race condition without a mutex
tests: fix http2 tests to use CRLF headers
tests: several enumerated type cleanups
THANKS: merged two entries for Evgeny Grin
tidy-up: delete unused build configuration macros
tool: reintroduce set file comment code for AmigaOS
tool_cfgable: make 'synthetic_error' a plain bool
tool_formparse: fix variable may be used before its value is set
tool_getparam: make --doh-url "" switch it off
tool_getparam: repair cleanarg
tool_operate: better cleanup of easy handle in exit path
tool_paramhlp: fix "enumerated type mixed with another type"
tool_paramhlp: make check_protocol return ParameterError
tool_progress: avoid division by zero in parallel progress meter
tool_writeout: fix enumerated type mixed with another type
trace: 0x7F character is non-printable
unit1303: four tests should have TRUE for 'connecting'
url: enumerated type mixed with another type
url: really use the user provided in the url when netrc entry exists
url: reject URLs with hostnames longer than 65535 bytes
url: treat missing usernames in netrc as empty
urldata: change second proxytype field to unsigned char to match
urldata: make 'negnpn' use less storage
urldata: make state.httpreq an unsigned char
urldata: make three *_proto struct fields smaller
urldata: move smaller fields down in connectdata struct
urldata: reduce size of several struct fields
vtls: make Curl_ssl_backend() return the enum type curl_sslbackend
windows: improve random source

./configure --disable-ipv6 --without-quiche --without-nghttp2 --without-nghttp3 --without-ngtcp2 --without-librtmp --without-ca-bundle --without-brotli --without-zstd --with-mbedtls --disable-ldap --disable-manual --disable-alt-svc --disable-hsts --disable-rtsp --without-zlib --disable-ntlm-wb --disable-headers-api
@patrikjuvonen patrikjuvonen added enhancement New feature or request upstream Related to vendor library labels Sep 3, 2022
@patrikjuvonen patrikjuvonen added this to the Next Release (1.6.0) milestone Sep 3, 2022
@patrikjuvonen patrikjuvonen added this to In progress in Vendor upgrades via automation Sep 3, 2022
@patrikjuvonen patrikjuvonen marked this pull request as ready for review September 8, 2022 08:25
@patrikjuvonen patrikjuvonen merged commit 0cdd46a into master Sep 8, 2022
Vendor upgrades automation moved this from In progress to Done Sep 8, 2022
@patrikjuvonen patrikjuvonen deleted the vendor/curl-7.85.0 branch September 8, 2022 08:25
Zangomangu added a commit to Zangomangu/mtasa-blue that referenced this pull request Dec 25, 2022
commit ffd2a4bad56d90b52deab8b55b9cbee65623228b
Author: Marek Kulik <me@botder.com>
Date:   Sun Dec 25 22:11:30 2022 +0100

    Use proxy dll method for loading core.dll into GTA process

    Co-Authored-By: ccw <123884+ccw808@users.noreply.github.com>

commit 8dbd57625019153af3637ebcf4d571358827596f
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sun Dec 25 20:55:24 2022 +0000

    Update client en_US pot

commit 82801ab353a5ea50f69c16904d7e678f620729c3
Author: Lpsd <40902730+Lpsd@users.noreply.github.com>
Date:   Sun Dec 25 20:51:30 2022 +0000

    Add set/getChatboxCharacterLimit and increase max chat message length to 255 (#2215)

    * Initial commit

    * Add max input char limit and max input line values as const members to CChat

    * Add GetChatboxMaxCharacterLimit to CCore (for CChat)

    * Update CCoreInterface virtual method ordering

    * Increase MAX_CHAT_LENGTH and make MAX_CHATECHO_LENGTH "dynamic"

    * Fix Packet_ChatEcho to use MAX_CHATECHO_LENGTH instead of MAX_OUTPUTCHATBOX_LENGTH

    Why was it using MAX_OUTPUTCHATBOX_LENGTH all this time? lmao

    * Make setChatboxCharacterLimit reset on passing -1, instead of none

    Otherwise you could pass anything other than a number to setChatBoxCharacterLimit, and you wouldn't know anything was wrong, yet the chatbox input limit would reset

    * Remove extra func definition added by accident

    * Apply suggestions from code review

    * Apply constexpr suggestion from botder's code review

    Suggestion at https://github.com/multitheftauto/mtasa-blue/pull/2215#discussion_r967852686

    Co-authored-by: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
    Co-authored-by: Marek Kulik <me@botder.com>

commit 9f8e6cd2c588ff4516572707cffe943175937ae5
Author: TEDERIs <xcplay@gmail.com>
Date:   Sun Dec 25 22:24:13 2022 +0700

    Possible crash fix for libcef(0x3705563) (#2849)

commit 7e22317d22264a4c425583b0a07c62cc7d3a5a5b
Author: Sarrum <12110157+theSarrum@users.noreply.github.com>
Date:   Sun Dec 25 04:24:31 2022 +0300

    Update available range for fpslimit in all server configuration files (#2848)

    Update fpslimit range description

commit 0ac6c27c59814c738b88c1bd4986c11dadb57ea9
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Sat Dec 24 14:54:00 2022 +0200

    Update links and fix formatting on README.md

commit 88b623ec72da363f83544f540287514fcf8e3bbe
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Sat Dec 24 14:39:20 2022 +0200

    Remove identifiers from http error

    An old upstream change

    [ci skip]

commit ed5e6c4fc06a9ecef21897dbcbe323fa0550e976
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Sat Dec 24 14:37:39 2022 +0200

    Unescape inputs better

    An old upstream change

    [ci skip]

commit 579775d79b166c82c1c2a3c1b020eb2febfff202
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Fri Dec 23 21:42:24 2022 +0200

    Fix broken client gdf xml, update client support forum URL

    [ci skip]

commit 331d695d658c12b6d338e9cdaa1f8525a01aa4d7
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Fri Dec 23 18:32:18 2022 +0200

    Update lunasvg from 2.3.1 to 2.3.5 (#2842)

commit 07d0cf77e990e2b25a4f2c99fd110645a3db225a
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Fri Dec 23 18:23:52 2022 +0200

    Ensure file path is within bounds

    An old upstream change

    [ci skip]

commit 222637bdb69eab03fc7474f9f310a3b84c0a926c
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Fri Dec 23 14:10:16 2022 +0100

    Force rebuild

    For version control purposes

commit 403df24fce070b630ac2f474933daaab62efbc44
Author: TEDERIs <xcplay@gmail.com>
Date:   Fri Dec 23 12:34:27 2022 +0700

    SVG related fixes (#2832)

    * SVG texture lock checks

    * Lock rect with D3DLOCK_DISCARD

    * Fix return type inconsistency

    Co-authored-by: Lpsd <40902730+Lpsd@users.noreply.github.com>

commit 3b89b6768a01e4f056aa4df650d5081b6037e626
Author: TEDERIs <xcplay@gmail.com>
Date:   Fri Dec 23 06:26:34 2022 +0700

    Hotfix for pull request #2831 (PR #2844)

commit c10ca9249cb027598dac99dff19f65b95641d58d
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue Dec 20 22:42:10 2022 +0200

    Update cryptopp from 8.6.0 to 8.7.0 (#2837)

    Update cryptopp from 8.6 to 8.7

commit 44577e8509705ef360cc5da9136337d78b8d70fd
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue Dec 20 15:46:34 2022 +0200

    Update curl from 7.85.0 to 7.86.0 (#2835)

    * Update curl from 7.85.0 to 7.86.0

    * Run configure on macos and linux

    ./configure --disable-ipv6 --without-quiche --without-nghttp2 --without-nghttp3 --without-ngtcp2 --without-librtmp --without-ca-bundle --without-brotli --without-zstd --with-mbedtls --disable-ldap --disable-manual --disable-alt-svc --disable-hsts --disable-rtsp --without-zlib --disable-ntlm-wb --disable-headers-api

commit d8e29bea30d46098ea2da170c4aae24564c5b44a
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue Dec 20 13:13:10 2022 +0200

    Update mbedtls from 2.28.0 to 2.28.2 (#2840)

    * Update mbedtls from 2.28.0 to 2.28.2

    * Remove version based folder structure from mbedtls

commit 3dc9ea39427a45c21d049c536cb438287c89b117
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue Dec 20 11:22:36 2022 +0200

    Update sqlite from 3.39.2 to 3.40.0 (#2836)

commit 6df121b676811b62deca5a55cd0a6bbacc149f6c
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue Dec 20 01:33:33 2022 +0200

    Update zlib from 1.2.12 to 1.2.13 (#2841)

commit 94bab0928f776a86bf77cab612d4d58a4549ec7b
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue Dec 20 00:48:38 2022 +0200

    Update libpng from 1.6.38 to 1.6.39 (#2838)

commit a23a58d809793671d5b830ce8962899f5cfc5aab
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue Dec 20 00:44:39 2022 +0200

    Update nvapi from r510 to r525 (#2839)

commit e791a999651b7258f5778ad2ef667700ec5ae214
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Mon Dec 19 20:21:21 2022 +0000

    Visual Studio Update [skip ci]

    VS2022: 17.4.33122.133 => 17.4.33205.214

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit ddab27743cd7f23a6d206048b0d49a2de87aab51
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Mon Dec 19 22:05:12 2022 +0200

    Add missing comment about 1.5.9 release

commit 12f68a7c9542f32139e11d5642e1a060368df3b8
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Mon Dec 19 21:50:16 2022 +0200

    Revert "Revert "Update CEF to 108.4.13+ga98cd4c+chromium-108.0.5359.125""

    This reverts commit 31267524fc6c1779afcce54568d05a69df2ca28a.

    Seems to be fine after all.

commit 4dac6e566d1323bb19fcc926dc8f468c97b27962
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Mon Dec 19 20:07:56 2022 +0100

    update BASS libraries (#2843)

commit 31267524fc6c1779afcce54568d05a69df2ca28a
Author: Dutchman101 <mcak105@outlook.com>
Date:   Mon Dec 19 19:54:10 2022 +0100

    Revert "Update CEF to 108.4.13+ga98cd4c+chromium-108.0.5359.125"

    Something needs to be fixed first

commit b001206f87ba8303eda0f7354c39637ac991c9c6
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Mon Dec 19 19:44:43 2022 +0100

    Update CEF to 108.4.13+ga98cd4c+chromium-108.0.5359.125

commit d965e068c0d94d85aac491ad3c488fb6bab155d1
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Mon Dec 19 12:12:21 2022 +0200

    Exclude menu and latest news image files from i18n

commit 81da4270ee7a553c9ce076894c4a5bdefd7d3485
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Dec 15 12:43:06 2022 +0000

    Update client en_US pot

commit 8863f603fb9cfa50ffc3822e378b5af6b1090cf9
Author: TEDERIs <xcplay@gmail.com>
Date:   Thu Dec 15 19:37:20 2022 +0700

    Improve CEF DX utilization & thread-safety fixes (PR #2831)

commit e396b35b51273f077783e8681e563e812f965bd0
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Dec 14 08:09:22 2022 +0000

    Visual Studio Update [skip ci]

    VS2019: 16.11.33027.164 => 16.11.33130.400

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 75da591de0fdccafbc0af29c63297b070494ee91
Author: Dutchman101 <mcak105@outlook.com>
Date:   Wed Dec 14 00:51:29 2022 +0100

    Revert ""Default" skin remake/upscale (128x128 => 128x256) (#2829)"

    This reverts commit e35fcf3036f7bc7bc0113a188f72a2699ad210df.

    Rounded edges should be evaluated, and likely we should update "Default" skin with purely upscaling (no rounded edges.. take away what caused) & add another "Default v2" skin which has these rounded edges as it looks way better (further opinions on any PR that does this are required)

commit e35fcf3036f7bc7bc0113a188f72a2699ad210df
Author: BerserkOrchestra <30158626+Haxardous@users.noreply.github.com>
Date:   Tue Dec 13 22:10:08 2022 +0000

    "Default" skin remake/upscale (128x128 => 128x256) (#2829)

    Updated config + imagesets + upscaled & remade image's PNG files.

commit 0fb920aa33a3c965f9eb81d3b4b97de21c182530
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Dec 12 16:01:16 2022 +0000

    Update client en_US pot

commit 44a0f010241f7dcb515e08a700568c065df30004
Author: Marek Kulik <me@botder.com>
Date:   Mon Dec 12 16:57:08 2022 +0100

    Revert "Disable GTA version check in install sequencer"

    This reverts commit 93acb5dc36d228c3e6de4e93711376cd33064907.

commit edfdf19433bd2e120f37ca09f5c6886133ef4911
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Dec 12 15:40:06 2022 +0000

    Update client en_US pot

commit 93acb5dc36d228c3e6de4e93711376cd33064907
Author: Marek Kulik <me@botder.com>
Date:   Mon Dec 12 16:35:40 2022 +0100

    Disable GTA version check in install sequencer

commit d6cfed44c016f66f74d529328620d3ce25285dc7
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Mon Dec 12 09:29:13 2022 +0100

    Addendum to 19831ae: add "forks full AC" netc info

commit 19831ae4b19e7279575ae23ed9df720e1d695ff5
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Mon Dec 12 07:27:50 2022 +0100

    improve MTASA_VERSION_TYPE documentation #2

    This change encourages optimal usage by default

commit 3b2b8fa9017fa27f47af0c6c3090c881a8a44327
Author: Pirulax <patrikjankovics7@gmail.com>
Date:   Mon Dec 12 01:51:15 2022 +0100

    Add proper 3D radius check to getElementsWithinRange (PR #1994)

commit 12057886566f931aca826c768944627c462c7f55
Author: Marek Kulik <me@botder.com>
Date:   Mon Dec 5 22:19:51 2022 +0100

    Force rebuild

commit 3c3af040173b66e21bbc587fbca48548866bb2b7
Author: Inder00 <9884957+Inder00@users.noreply.github.com>
Date:   Sun Dec 4 15:30:58 2022 +0100

    Do not reset handling for custom models on a non-local vehicle (PR #2824)

    This pull request doesn't break backwards compatibility with non-custom vehicles. This change will allow the clientside to keep server-side applied handlings, if you set the vehicle model to a custom one requested with engineRequestModel.

    Since the server-side doesn't support any custom models (yet - there is a pending pull request for this and needs evaluation after this commit), the models coming from the server will always be in the expected range from 400 to 611 and must always reset the handling on the clientside. If the vehicle is local to the client, the handling must reset everytime. If the vehicle is non-local and the new model id is a custom one, the handling will not be reset and any server-side provided handling will remain and it's the duty of the scripter to synchronize that (currently).

commit 1372d354eb07b89446b8e9269e47736c7228cc15
Author: Lpsd <40902730+Lpsd@users.noreply.github.com>
Date:   Sun Dec 4 14:13:10 2022 +0000

    Add support for CRemoteCall userdata in getUserdataType (PR #2823)

commit ba3595edfeed0e11bbe177fae65466a2e295f6d4
Author: Marek Kulik <me@botder.com>
Date:   Sat Dec 3 17:38:44 2022 +0100

    Revert "Reset vehicle handling only for client-side vehicles when changing model (PR #2501)"

    This reverts commit 42057d5968bef0cae404eeb5ffbc621e167d046b.

commit 0b9b6f3445b216a023574126d1b537f8d92536d5
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sat Dec 3 15:59:27 2022 +0000

    Update client en_US pot

commit 42057d5968bef0cae404eeb5ffbc621e167d046b
Author: Inder00 <9884957+Inder00@users.noreply.github.com>
Date:   Sat Dec 3 16:55:08 2022 +0100

    Reset vehicle handling only for client-side vehicles when changing model (PR #2501)

commit b797715d03c2467aeba55f390751239b205f85b0
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Fri Dec 2 05:23:04 2022 +0100

    Update CEF to 107.1.12+g65b79a6+chromium-107.0.5304.122

commit 4731dd38346cd391a86ee81ddb81b65c1fbba3bd
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Fri Dec 2 05:18:51 2022 +0100

    Force rebuild

commit fa76082cf4194de47a917a31c8c0dea8ff17e04e
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue Nov 29 16:10:54 2022 +0000

    Update client en_US pot

commit e50822ac3041267913d4494d855d8fb650752844
Author: lopez <7338099+lopezloo@users.noreply.github.com>
Date:   Tue Nov 29 17:06:53 2022 +0100

    Add "Motion Blur" video option (#2519)

    * Add "Motion Blur" video option

    Co-authored-by: Uladzislau Nikalayevich <thenormalnij@gmail.com>

commit 3f6dac669b5aed51a695cc59e13e3b552e0340e3
Author: Marek Kulik <me@botder.com>
Date:   Tue Nov 29 03:59:00 2022 +0100

    Fix desktop shortcut creation in installer script (part 2)

    ${...} is for constants.

commit 39dc828c276217e667ebe5557539c854271d8552
Author: Dutchman101 <mcak105@outlook.com>
Date:   Mon Nov 28 22:17:33 2022 +0100

    Force rebuild
    * This is for version management purposes

commit db552c042434cbbf0da473cd56015f27dc2a7fdc
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Nov 28 18:37:38 2022 +0000

    Update client en_US pot

commit 136e9cf449d4370e5f30090d5adb7783814e02e0
Author: lopez <7338099+lopezloo@users.noreply.github.com>
Date:   Mon Nov 28 19:33:24 2022 +0100

    Disable rendering ped dynamic shadows when they sit on bikes if vehicle volumetric shadows are disabled (#2821)

commit 1c043468b52348589d0ae379f914e490c0630cdf
Author: Marek Kulik <me@botder.com>
Date:   Mon Nov 28 16:15:29 2022 +0100

    Fix desktop shortcut creation in installer script

commit 847c7e43817ebeb2f029df574c17847380b7aa8a
Author: Marek Kulik <me@botder.com>
Date:   Mon Nov 28 04:07:38 2022 +0100

    Addendum for commit 56fbfc3b69400a86dd682dfbb86ee02bc2e3f3ca

commit 10b4bc71e48032b174aba1289cf82c97938b0912
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri Nov 25 21:33:19 2022 +0000

    Update client en_US pot

commit 4a82776bfccd8ecd91caf9972bd686dfd0ff05a7
Author: Marek Kulik <me@botder.com>
Date:   Fri Nov 25 22:29:16 2022 +0100

    Fix splash screen hiding certain windows (fixes #2819)

commit 56fbfc3b69400a86dd682dfbb86ee02bc2e3f3ca
Author: Marek Kulik <me@botder.com>
Date:   Fri Nov 25 22:28:42 2022 +0100

    Group windows under a single taskbar button on Windows

commit 70237f38d34f307bbc6fedd7190640895d56accb
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Tue Nov 22 09:40:10 2022 +0100

    Force rebuild (4)

    Many of these commits don't look pretty, but its required for a certain version control process

commit 650a21dc12051a134475dc753f90c3b0575ff0bc
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Tue Nov 22 09:01:06 2022 +0100

    Force rebuild (3)

commit 0b29b53ff8e5d7d94c31f609cd3da31c91afab72
Author: Marek Kulik <me@botder.com>
Date:   Tue Nov 22 03:38:15 2022 +0100

    Force rebuild (2)

commit 5594f5be7abb1dacbf8e6d0445e5926562005291
Author: Marek Kulik <me@botder.com>
Date:   Sun Nov 20 00:07:11 2022 +0100

    Force rebuild

commit 11c3116cc29197223b796d7e557907c2fa958c74
Author: Dutchman101 <mcak105@outlook.com>
Date:   Sat Nov 19 23:20:21 2022 +0100

    Addendum to ab2a1b9 (Launcher update is required to make the change work)

commit b7dcb29d6b4c6d8cbfe16c25c8af47492a813fa6
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sat Nov 19 16:14:39 2022 +0000

    Update client en_US pot

commit 3a1798fd930295e800349c104264a5b1d58d403e
Author: Marek Kulik <me@botder.com>
Date:   Sat Nov 19 17:10:14 2022 +0100

    Fix dialog testing in Loader

commit ab2a1b974fc29f9ae8fc009b633283a77a3c4825
Author: Marek Kulik <me@botder.com>
Date:   Sat Nov 19 16:29:53 2022 +0100

    Massively increase quality of splash image

commit e1119f5a54095ef26a8fd857d986a1ef15da4c84
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Fri Nov 18 08:38:23 2022 +0100

    Force rebuild

commit f3dc766a1355311f98212742818a6a8fc0f8f331
Author: Dutchman101 <mcak105@outlook.com>
Date:   Fri Nov 18 07:14:05 2022 +0100

    Revert "Massively increase quality of splash image"

    This reverts commit 4230500696da07a1ad3fd16d4ba8148eeb438be5.

commit 4230500696da07a1ad3fd16d4ba8148eeb438be5
Author: Dutchman101 <mcak105@outlook.com>
Date:   Fri Nov 18 04:11:50 2022 +0100

    Massively increase quality of splash image

commit 02b6184d8364f3a4c0863ca93843459469dc2d79
Author: Dutchman101 <mcak105@outlook.com>
Date:   Fri Nov 18 03:37:15 2022 +0100

    update mirror links to use CDN

commit 17f4f6c9cd5b3c40cc7bdc0e79dab5b970e10173
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Fri Nov 18 03:24:41 2022 +0100

    Update Unifont from v13.0.06 to v15.0.01

commit 65ce05098e190d981a1a3df3129f6c3c150365bc
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Nov 16 08:05:38 2022 +0000

    Visual Studio Update [skip ci]

    VS2022: 17.4.33103.184 => 17.4.33110.190

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 368864b1bd61d5c7eabf14e13014dea7f01e57bd
Author: Dutchman101 <mcak105@outlook.com>
Date:   Tue Nov 15 08:43:38 2022 +0100

    Update launchers

commit e163ee40c2cbcd7315b7b29d40e7a10c5fb9ddef
Author: Dutchman101 <mcak105@outlook.com>
Date:   Tue Nov 15 07:27:09 2022 +0100

    Upgrade windows, linux & macOS premake5 binaries (from 5.0-beta1 to 5.0-beta2)

commit 9a08d8007620679d6e38d9e033cfcfdc6b25ea46
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue Nov 15 06:18:41 2022 +0000

    Update client en_US pot

commit d4d2babc74666cac1ab443a50fc91a7918bfbb70
Author: Dutchman101 <mcak105@outlook.com>
Date:   Tue Nov 15 07:13:28 2022 +0100

    Add final missing files to data files integrity checklist

commit 1f14a8ce90cf46a86cec98b598869587aecfb308
Author: Dutchman101 <mcak105@outlook.com>
Date:   Tue Nov 15 06:51:52 2022 +0100

    update XInput9_1_0_mta.dll (Microsoft/XNA Common Controller API)

commit 64bc755ae4093ea132cf97dda80124cbcb21a62d
Author: Dutchman101 <mcak105@outlook.com>
Date:   Tue Nov 15 05:49:53 2022 +0100

    update dxwebsetup binary

commit 798120e4d3f8be85a00351a9a4db932e122a5636
Author: Dutchman101 <mcak105@outlook.com>
Date:   Tue Nov 15 05:43:08 2022 +0100

    update legacy msvcp files to final released version. See comments on commit

commit 2a724e18e1a22fd545b53c842e7aecdb2fb8919a
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Tue Nov 15 05:26:15 2022 +0100

    Update CEF to 107.1.9+g1f0a21a+chromium-107.0.5304.110

commit 9cdd5f2ca8ac7589138ebf3aaac7a972f72273ad
Author: Dutchman101 <mcak105@outlook.com>
Date:   Tue Nov 15 05:24:18 2022 +0100

    updated 'install_resources' procedure & 7z binaries

commit faedb721bba0da91b50ce502f63b14c9dd1a3f2f
Author: Marek Kulik <me@botder.com>
Date:   Tue Nov 15 04:24:54 2022 +0100

    Force rebuild (2)

commit 5a8c8271794eebdf4ee237d659451999a56fb2aa
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Wed Nov 9 04:24:04 2022 +0100

    Force rebuild

commit d776a8f031784fa91703b48762eac79a20ea06e0
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Tue Nov 8 22:57:06 2022 +0000

    Visual Studio Update [skip ci]

    VS2022: 17.3.32929.385 => 17.4.33103.184

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 52aed9bfd53216b34b0eb5f6c93b74a3709ef1c2
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Tue Nov 8 23:11:06 2022 +0100

    update BASS libraries (#2811)

commit 606998032800e5cfb829855fe0d8c851d1592837
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Tue Nov 8 22:47:50 2022 +0100

    Update CEF to 107.1.5+g58ed78e+chromium-107.0.5304.88

commit 46b7411378d14be469cd2408e52f01d546e493f0
Author: Marek Kulik <me@botder.com>
Date:   Tue Nov 1 21:04:41 2022 +0100

    Fix static variable issue in SharedUtil.Memory.hpp

commit dd571b4793ac6773c634a1cdc6b28bfa00891127
Author: Marek Kulik <me@botder.com>
Date:   Mon Oct 31 23:44:55 2022 +0100

    Add shared function getProcessMemoryStats (Fixes #1563)

    I have tried adding system-wide memory stats, but these were very unreliable for the 32-bit client/server. The numbers would only confuse users of that API and they might assume that there is less memory available. The system-wide memory stats include every running 32-bit process on a x64 host system, not just the one running in WOW64.

commit d81cc9e96b5b866972c3882fc7597c2d543d6c02
Author: Marek Kulik <me@botder.com>
Date:   Sun Oct 30 20:35:42 2022 +0100

    Remove logging for FxSystemBP_c::Load

commit e4446c9707f884ae42961eb13e945de418def43c
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sun Oct 30 19:33:13 2022 +0000

    Update client en_US pot

commit 5e781d51beb923c6f8e3e9f3d904bba3c2d7225e
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Sun Oct 30 20:28:44 2022 +0100

    Clean up game_sa project (Round 9, PR #2804)

commit 0e2b203aa1d12f15931eb7d9522a5edf987f45ff
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Sun Oct 30 20:02:28 2022 +0100

    Split grenade collision from weapon collision (PR #2716)

commit ff5e653a4fcacc80e8c1b59003b982d27bb2dc0f
Author: Marek Kulik <me@botder.com>
Date:   Fri Oct 28 22:01:52 2022 +0200

    Change report log id for FxSystemBP_c::Load hook

commit 7d8718cde378787818637936a9873dfab689638c
Author: Marek Kulik <me@botder.com>
Date:   Fri Oct 28 15:51:12 2022 +0200

    Fix custom model re-streaming issue (Fixes #2801)

commit c667e2ad05c97511e7b5cf63d223f762eea41e10
Author: Marek Kulik <me@botder.com>
Date:   Thu Oct 27 19:01:38 2022 +0200

    Fix model replacement for unstreamed models

commit 05c639c05faf2b01ab001adaff33b503ce2d36b7
Author: Marek Kulik <me@botder.com>
Date:   Wed Oct 26 22:48:48 2022 +0200

    Fix crash in FxPrim_c::Enable

    This fixes the crash at offset 000a9f54. It's a side-effect crash of the patch 5a598d70161a85a961de462f28279d38df70aae3.

commit da4ea45c981dae65001bd8a33574a4e9938bd529
Author: Marek Kulik <me@botder.com>
Date:   Wed Oct 26 22:05:25 2022 +0200

    Add is-modified logging for FxSystemBP_c::Load

commit f4ee8e826b9ea9cb8ed5f950f857281fd535ab74
Author: Marek Kulik <me@botder.com>
Date:   Wed Oct 26 21:38:27 2022 +0200

    Change logging for FxSystemBP_c::Load

commit 3ce9e3ccdd037af269a41805301ca9bb276673aa
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Oct 24 23:38:06 2022 +0000

    Update client en_US pot

commit 9667cbea40a2b834107c781411a2c9658fec5073
Author: Marek Kulik <me@botder.com>
Date:   Tue Oct 25 01:33:02 2022 +0200

    Addendum for commit 5a598d70161a85a961de462f28279d38df70aae3

commit 5a598d70161a85a961de462f28279d38df70aae3
Author: Marek Kulik <me@botder.com>
Date:   Tue Oct 25 01:30:39 2022 +0200

    Fix crash in FxEmitterBP_c::Render

    The game used to crash if it failed to load the main texture in FxEmitterBP_c::LoadTextures (for index 0). Fixes crash offset 000a2cf3.

commit 5589346a180507231e255ce04ea9893099c4b483
Author: Marek Kulik <me@botder.com>
Date:   Mon Oct 24 21:39:52 2022 +0200

    Fix SharedUtil.Profiler.h

commit 262c795a39af127e0d9afd90e15421c2689b98e0
Author: Marek Kulik <me@botder.com>
Date:   Mon Oct 24 00:49:03 2022 +0200

    Add logging for CRenderWareSA::ReplacePedModel

commit d999e3e97770a11f4df25cd96c8bbe360c1fd4d9
Author: Marek Kulik <me@botder.com>
Date:   Sun Oct 23 22:55:49 2022 +0200

    Check custom ped models before replacement

    This commit is a patch for the crash offset 003c51a8.

commit e78ac9e2d2e5d4c46fa8cee60d0553745a095b6f
Author: Marek Kulik <me@botder.com>
Date:   Sun Oct 23 20:00:57 2022 +0200

    Disable CPopulation::RemovePed

    A hook to disable it was removed by accident in 90bcdb487ebd9949173186f78de7d2b22b588f96

    Co-Authored-By: Merlin <Merlin@users.noreply.github.com>

commit 4582f8a81d5dee0713067a5f3ea71948264d077b
Author: Marek Kulik <me@botder.com>
Date:   Sun Oct 23 19:01:03 2022 +0200

    Add null-pointer check for two RpClump functions

    RpAnimBlendClumpGetFirstAssociation and CAnimManager::BlendAnimation

commit 05f0e958a7d8fd32c5e6666d11c9a7d7d5734cfd
Author: Marek Kulik <me@botder.com>
Date:   Sat Oct 22 22:44:34 2022 +0200

    Remove crash fix logging for CPedSA::GetBonePosition

commit 3e348d140618346c9dfadbbd752f450f5535a6cf
Author: Marek Kulik <me@botder.com>
Date:   Sat Oct 22 22:39:50 2022 +0200

    Add null-pointer check for RpClumpForAllAtomics

commit f3cf78144dde61340de2176cb820fe68609b19e4
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Sat Oct 22 17:56:52 2022 +0200

    improve MTASA_VERSION_TYPE documentation

commit 4a4bcbc413ad33b56acd7284c81361187c7df8d6
Author: darkdrifter <darkdrifter@users.noreply.github.com>
Date:   Sat Oct 22 01:30:38 2022 +0200

    Fix zoom_in/out binds being inverted & fix ability to control zoom by weapon_next/previous binds

commit 27e340c630acdc4cb44f6f01b4fc0dd41b97ea6e
Author: Marek Kulik <me@botder.com>
Date:   Fri Oct 21 23:02:03 2022 +0200

    Add log limit for CPedSA::GetBonePosition logging

commit 3d1b87a7c11ef1cdde0c1475923f4a1b80b7f3fb
Author: Marek Kulik <me@botder.com>
Date:   Fri Oct 21 22:45:08 2022 +0200

    Add weak crash fix for CPed::GetBonePosition

    This fix should hide/avoid the crash at 0x00349B7B ("corrupt skin model") due to the RenderWare object being null.

commit c4d66fc17ab7049d995678c0bef3efc6b09f408d
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri Oct 21 14:34:50 2022 +0000

    Update client en_US pot

commit 39e726857ec7b9a146323d63200d3e1c8031478d
Author: JessePinkman <bum8hj123@gmail.com>
Date:   Fri Oct 21 10:29:41 2022 -0400

    Fix typo in CCommandFuncs::FakeLag (#2796)

commit d483d939bf968b7a6af1ffb6d2d25d24d28bcaa0
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Oct 19 08:04:09 2022 +0000

    Visual Studio Update [skip ci]

    VS2022: 17.3.32922.545 => 17.3.32929.385

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 238fdf078472ee39639a8ade3ca7c4a0e70fa49d
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sun Oct 16 15:52:22 2022 +0000

    Update client en_US pot

commit 826de06f8bec48796229ab6d9f8609c81662e6d1
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sun Oct 16 15:43:14 2022 +0000

    Update client en_US pot

commit a22a7de49822f83349cde557b85d3ab195c33785
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sun Oct 16 15:33:36 2022 +0000

    Update client en_US pot

commit b3b58233ca54035dd247d27ae04c34bd7e625164
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sun Oct 16 15:29:25 2022 +0000

    Update installer en_US pot

commit e0de4eddfc87225b0d81f5d4dcb8d80fc119909a
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sun Oct 16 15:29:25 2022 +0000

    Update client en_US pot

commit d55710491940a5023545208ce14c087a78aa37e4
Author: se16n <cyberpooh@ya.ru>
Date:   Sun Oct 16 18:25:04 2022 +0300

    Do not overwrite MTA shortcuts (Fixes #2086, PR #2089)

commit bc54720421d0dcfa188a9e418d36fb732f061002
Author: Sam <samr46@users.noreply.github.com>
Date:   Sun Oct 16 18:16:03 2022 +0300

    Add getElementLighting (PR#2783)

commit 3ecc2877e081bdd2146488efa605f2b7bf691c08
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Oct 12 08:05:15 2022 +0000

    Visual Studio Update [skip ci]

    VS2019: 16.11.32901.82 => 16.11.32929.386

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit ef792d6af62443f97014621334c7188dddb4ef29
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Wed Oct 12 01:00:41 2022 +0200

    Remove vehicle framerate fixes again (#2787)

commit 7c8a1ab93d091b06262749b482d6c8142ca69eea
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Tue Oct 11 12:34:57 2022 +0200

    Fix various high fps issues (PR #2784)

commit d085fb989e86be9668cd3e9f3f4426eefe55df6d
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Fri Oct 7 14:12:57 2022 +0200

    Clean up game_sa project (Round 8, PR #2779)

commit 8e8e63f28da469dfc5e2ac189ecef41e19780f04
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Oct 6 09:21:40 2022 +0000

    Update client en_US pot

commit 3f5b8741b1faae4682942499355ec9a92fcd81a1
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Thu Oct 6 11:17:21 2022 +0200

    Clean up game_sa project (Round 7, PR #2776)

    Cleanup includes

commit e76b5619e3eca1a903b284f8f7da1ddc7a9a081a
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Oct 5 18:45:43 2022 +0000

    Update client en_US pot

commit 74c359bcaa62fe6a6e8aaa281d247f9ee53778cc
Author: lopez <7338099+lopezloo@users.noreply.github.com>
Date:   Wed Oct 5 20:40:23 2022 +0200

    Add dynamic ped shadows (PR #2745)

commit c989da5d367a19449451c87ed3e3334aab00e749
Author: Nicolás Barrios <platincanal@gmail.com>
Date:   Wed Oct 5 10:54:23 2022 -0300

    Update available range for fpslimit in mtaserver.conf (PR #2751)

commit e27d97dbc79e7cadc1740211b4fe2e746970d8b5
Author: lopez <7338099+lopezloo@users.noreply.github.com>
Date:   Wed Oct 5 15:53:44 2022 +0200

    Add ability to enable/disable custom weapons collisions (PR #2756)

commit cdcc4539c4fb76995648506cdbd2c3b7fb7b044e
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Oct 5 13:51:20 2022 +0000

    Update client en_US pot

commit c9c97f1ad4887098b12efd78587b7ec6bed86971
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Wed Oct 5 15:45:30 2022 +0200

    Clean up game_sa project (Round 6, PR #2775)

commit 394d7758e2010bd1e56b501b4d5fb3346c0d8306
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Tue Oct 4 21:36:25 2022 +0200

    Update CEF to 106.0.26+ge105400+chromium-106.0.5249.91

commit d7082ed1109094e89524cdf4e7d63ad2c2d6c65b
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Sun Oct 2 16:47:56 2022 +0200

    Clean up game_sa project (Round 5, PR #2773)

commit 8a6856165a4c79237d938d88ec7525d0401cb3cd
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Sat Oct 1 04:27:30 2022 +0200

    Update CEF to 106.0.23+g1389ac0+chromium-106.0.5249.61

    Note: we need to repeat in a few days (pending CEF build with crash fixes)

commit 90bcdb487ebd9949173186f78de7d2b22b588f96
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Fri Sep 30 18:54:45 2022 +0200

    Clean up game_sa project (Round 4, PR #2771)

commit e92e88f4377c8768a945ad99c1ed6c07fab750d1
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Sep 28 08:07:31 2022 +0000

    Visual Studio Update

    VS2022: 17.3.32901.215 => 17.3.32922.545

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 2338dcbf2b3e23506b3a22bf0b0f0b98e241ed4b
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue Sep 27 12:00:48 2022 +0000

    Update client en_US pot

commit 889b6c8ea719cd1a9152ffee9a382a50ee960c51
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Tue Sep 27 13:56:24 2022 +0200

    Clean up game_sa project (Round 3, PR #2768)

commit acd1ffe261456a9bf05f2e03ce1fecd8122d0023
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Tue Sep 27 13:52:27 2022 +0200

    Recalculate frame rate limit on fps_limit cvar change (PR #2743)

commit 8e8aa3ab41928bd01c09c231679e0ecbc9bf7c97
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Sun Sep 25 08:02:23 2022 +0200

    Add nullptr checks in CWorld::FindObjectsKindaCollidingSectorList (PR #2766)

commit e60acf5da080c5e7e26921586c4d716139815e26
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sat Sep 24 16:53:58 2022 +0000

    Update client en_US pot

commit b63606a7c9bf3de9fac49f96fe963945899aac8c
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sat Sep 24 16:49:25 2022 +0000

    Update client en_US pot

commit f0ba986c21881e7a4fcd3e41c6ac6e256d495b3f
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Sat Sep 24 16:30:33 2022 +0300

    Update libpng to 1.6.38

commit e0abb3087a63e79b4273f8185920d00472b1354a
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Sat Sep 24 15:36:27 2022 +0200

    Clean up game_sa project (Round 2, PR #2764)

commit eebf228224860eed030d59d629e905dc9a79b13c
Author: Inder00 <9884957+Inder00@users.noreply.github.com>
Date:   Thu Sep 22 13:32:18 2022 +0200

    Add HMAC support (PR #2496)

commit cece630440c577f747e9ee890fd1563a542269e7
Author: Marek Kulik <me@botder.com>
Date:   Thu Sep 22 13:31:07 2022 +0200

    Fix crash in CLuaMain::LoadScriptFromBuffer

commit 76b21f7ed5b23f7d734eae20d089bb50336f8518
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Thu Sep 22 11:12:51 2022 +0200

    Clean up game_sa project (Round 1, PR #2761)

commit 2141bf1276bfeafc032e931fb51159efbd152960
Author: Marek Kulik <me@botder.com>
Date:   Sun Sep 18 03:47:49 2022 +0200

    Reduce the symbolspath scope

commit ee65d001a0c410ead1bb9567093016e915651a32
Author: Marek Kulik <me@botder.com>
Date:   Sun Sep 18 02:41:43 2022 +0200

    Use symbolspath in premake5.lua

commit c81e3d1fb4770b156faf2abdf6ba0c2086da476a
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Sat Sep 17 14:54:29 2022 +0200

    Update CEF to 105.3.39+g2ec21f9+chromium-105.0.5195.127

commit 5e47bf3e8dc3b4e427089f5818a8fc25e7187cba
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri Sep 16 23:24:56 2022 +0000

    Update client en_US pot

commit d134c2f1ddce8046a17f2e31c20e873a26333263
Author: lopez <7338099+lopezloo@users.noreply.github.com>
Date:   Sat Sep 17 01:19:59 2022 +0200

    Skip "Are you having problems running MTA" message on custom builds (PR #2744)

commit c33d3648992412a8bb3888702512db654c77d759
Author: lopez <7338099+lopezloo@users.noreply.github.com>
Date:   Thu Sep 15 23:39:35 2022 +0200

    Move some Lua code to wiki (#2738)

commit 0ed03825761017eff2dd6d7e21b1b6ceb152401a
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Sep 14 08:06:04 2022 +0000

    Visual Studio Update

    VS2019: 16.11.32802.440 => 16.11.32901.82

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 651d1b43319ad9ce1f624bc2c252103eef4e6c8b
Author: lopez <7338099+lopezloo@users.noreply.github.com>
Date:   Wed Sep 14 03:54:29 2022 +0200

    Do not display forbidden programs message on custom builds (PR #2739)

commit d9cf731f29195db4b240284e7dd2b827f01debdd
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Sep 12 16:56:16 2022 +0000

    Update client en_US pot

commit 6220faa318c076d1fbd79050edf6eb53aa43819d
Author: Marek Kulik <me@botder.com>
Date:   Mon Sep 12 18:51:43 2022 +0200

    Fix crash in CLatentTransferManager

commit a3706b43e88e0b53ec78089b9cc462b32d6ea880
Author: Marek Kulik <me@botder.com>
Date:   Mon Sep 12 04:36:46 2022 +0200

    Force rebuild

commit 6bbeff60c758e58e3ceaa500fb98c074d5dbdd20
Author: Marek Kulik <me@botder.com>
Date:   Mon Sep 12 01:38:44 2022 +0200

    Remove debug configuration from build workflow

commit cf5d16630f8e0ffa560e1abd1a83b03892d2274e
Author: Pirulax <patrikjankovics7@gmail.com>
Date:   Mon Sep 12 01:34:13 2022 +0200

    Improve setSoundEffectParameters error messages (PR #2552)

    * Add better error handling to setSoundEffectParams

    * Finish

    * Use SString for formatting Lua error (as luaL_error crashes)

    * Add `BASS_ERROR_DENIED` error code

    * Apply suggestions from code review

    * Update Client/mods/deathmatch/logic/CBassAudio.cpp

    Co-authored-by: Marek Kulik <me@botder.com>

commit 716dd6cd59e348d6804fe2382823200598a924d8
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sun Sep 11 18:41:27 2022 +0000

    Update client en_US pot

commit ce50b9ee6c9112db0358e3ddba354021ca084588
Author: Pirulax <patrikjankovics7@gmail.com>
Date:   Sun Sep 11 19:19:23 2022 +0200

    Clear client script memory after load (PR #2713)

commit 2438e4f9e7fbdeb67a8013fc17f268e6d19f2044
Author: Lpsd <40902730+Lpsd@users.noreply.github.com>
Date:   Sun Sep 11 18:12:19 2022 +0100

    Add isMTAWindowFocused() and onClientMTAFocusChange (PR #2371)

commit 093ecf47422f535053f2f4b321bc32ee1c63befd
Author: Nurupo <191977649@qq.com>
Date:   Mon Sep 12 03:09:12 2022 +1000

    Add new world special property 'coronaztest' (PR #2529)

commit 4482f133eff87396029ee1c1d71a02125fbb0834
Author: Pirulax <patrikjankovics7@gmail.com>
Date:   Sun Sep 11 17:57:23 2022 +0200

    Remove CRefCountableST (PR #1825)

commit 49fa84851caf21458809d955a8131edb61ff4086
Author: Pirulax <patrikjankovics7@gmail.com>
Date:   Sun Sep 11 17:37:58 2022 +0200

    Refactor CBufferRef to use std::shared_ptr (PR #1828)

commit 7c750151a1f5ee11330fec23664359f4d2c535e9
Author: lopez <7338099+lopezloo@users.noreply.github.com>
Date:   Sun Sep 11 17:36:10 2022 +0200

    Fix disappearing of server browser search input (PR #2645)

commit f0a2424dd411f5eb454b554addf1eb217090f55b
Author: Uladzislau Nikalayevich <thenormalnij@gmail.com>
Date:   Sun Sep 11 18:27:07 2022 +0300

    Allow allocation of timed-object models using engineRequestModel (PR #1779)

commit 7e7255280d3c42f7a36329f496d72c2b9efafe57
Author: Uladzislau Nikalayevich <thenormalnij@gmail.com>
Date:   Sun Sep 11 18:17:45 2022 +0300

    Add cancelEvent support for on(Client)ElementModelChange (PR #961, Fixes #948)

commit 062dea31dc1a918d440bf7c87bd6957a7d9204ad
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Sun Sep 11 16:52:57 2022 +0200

    Add missing model ids and names scraped from .ide files (PR #2592)

commit 52798a2d923bdb4e29f6fb9c63178e30e40479b6
Author: TFP-dev <72511827+TFP-dev@users.noreply.github.com>
Date:   Sun Sep 11 16:46:51 2022 +0200

    Fix grass rendering (PR #2679, Fixes #2677)

commit e84a15e1ea4d47769e14917243ddb2eac54ae5ee
Author: Lpsd <40902730+Lpsd@users.noreply.github.com>
Date:   Sun Sep 11 15:43:55 2022 +0100

    Add isCapsLockEnabled client function (PR #2708)

commit 50d80403182b1ac377502e08e29ec6ef51214c78
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Sun Sep 11 16:42:26 2022 +0200

    Change max fpslimit to 32767 (PR #2682)

commit a331072759e69f36062ed1c9b848f6df6f808c9a
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Sun Sep 11 16:13:44 2022 +0200

    Remove now unnecessary strafe workaround (PR #2734)

commit 0160e1828127b0f183425074401d8bab6391dc9b
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Sat Sep 10 19:37:34 2022 +0200

    Improve performance of CClientObjectManager::UpdateLimitInfo (PR #2706)

commit d92afab6765915e73a18e892fa1fe3ab9f087fe5
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Sat Sep 10 19:38:02 2022 +0300

    Fix typo

    [ci skip]

commit 50ec687c691891ee65ddf6005935ee0cc09cbab7
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Sat Sep 10 19:27:37 2022 +0300

    Add text equivalents of the main menu text images for translation

commit e6f9fab09e2f9e92a95889f0e6b90a709be77ad6
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Sat Sep 10 14:42:22 2022 +0200

    crash fix: update CEF to 105.3.38+g2a6a54b+chromium-105.0.5195.102

    If we don't update again, https://bitbucket.org/chromiumembedded/cef/issues/3393/alloy-call-to-permissions-api-causes-crash will definately become a big crash on MTA

commit eadd65689f17d84428ef76afc54d3871bd94a79c
Author: Dutchman101 <mcak105@outlook.com>
Date:   Fri Sep 9 23:26:24 2022 +0200

    update BASS libraries

    includes fixes for crashes reported by MTA (checks for OOM allocation)

    verification:
    http://www.un4seen.com/stuff/bass.zip
    http://www.un4seen.com/files/bassmix24.zip
    https://www.un4seen.com/stuff/bass_aac.zip
    https://www.un4seen.com/stuff/bass_ac3.zip
    https://www.un4seen.com/stuff/bassmidi.zip

commit bbf9574f088553752a182c094a096a31903964a7
Author: Dutchman101 <mcak105@outlook.com>
Date:   Fri Sep 9 23:01:25 2022 +0200

    Update launchers

commit b4a3cabc8d965f7ad1e6711a9c6f5f25fd0a191a
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Thu Sep 8 11:29:43 2022 +0300

    Update CEF from 104.4.25+gd80d467+chromium-104.0.5112.102 to 105.3.36+g88e0038+chromium-105.0.5195.102

commit 0cdd46aea46077aefbc7767f720afa5f521cce6a
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Thu Sep 8 11:25:15 2022 +0300

    Update curl from 7.84.0 to 7.85.0 (#2728)

commit bd73e6025ae8365cbf5e52876074f65c1df30287
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Aug 31 08:02:19 2022 +0000

    Visual Studio Update

    VS2022: 17.3.32819.101 => 17.3.32825.248

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 25630065837a7111d56c4167fea40d3a1b156385
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Wed Aug 24 22:42:51 2022 +0300

    Update curl from 7.83.1 to 7.84.0 (#2658)

    Configuration:

    ```
    ./configure --disable-ipv6 --without-quiche --without-nghttp2 --without-nghttp3 --without-ngtcp2 --without-librtmp --without-ca-bundle --without-brotli --without-zstd --with-mbedtls --disable-ldap --disable-manual --disable-alt-svc --disable-hsts --disable-rtsp --without-zlib --disable-ntlm-wb --disable-headers-api
    ```

commit 79896f13c8a6a6ba0236f412f59231be42c47ae7
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue Aug 23 14:56:51 2022 +0300

    Update sqlite from 3.39.0 to 3.39.2 (#2673)

commit d8744248ba49c34d3d2a70edcc419a7daae6d056
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue Aug 23 11:29:47 2022 +0300

    Update CEF from 104.4.18+g2587cf2+chromium-104.0.5112.81 to 104.4.25+gd80d467+chromium-104.0.5112.102

commit 25ec3d6c23e523e0c4f5d1c9b03159b1247a9063
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue Aug 23 11:02:37 2022 +0300

    Force rebuild

commit e5ca4ccbf9d5fb6e12a5f88234261c31ec799aea
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Aug 17 08:23:46 2022 +0000

    Update client en_US pot

commit 861c6a737c09d35cc6dcbe828143e4df4b0feedf
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Aug 17 08:18:29 2022 +0000

    Visual Studio Update

    VS2022: 17.2.32630.192 => 17.3.32811.315

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 3f71f1b64f0359ea2309224d46e1aa65d2d7c3c3
Author: Lpsd <40902730+Lpsd@users.noreply.github.com>
Date:   Sun Aug 14 02:09:44 2022 +0100

    Reset camera drunk/shake level in CClientGame::ResetMapInfo (#2710)

    * Reset camera drunk/shake level in CGameSA::Reset

    * Move reset to CGameSA

    * Move to CClientGame::ResetMapInfo

commit 64e8c73d1eb536140a550b63ab046c2ddef72871
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Aug 10 08:06:01 2022 +0000

    Visual Studio Update

    VS2019: 16.11.32630.194 => 16.11.32802.440

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 40c178ed787b50ef3fc1d878d794b6b885bc00b9
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Sun Aug 7 02:19:57 2022 +0200

    Fix helicopters taking off faster on high fps (#2704)

commit bcc56b5ee6df43697069f38977d09eae23f7e62c
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Sat Aug 6 18:03:29 2022 +0200

    Implement more fixes for high FPS issues (#2703)

    More CTimer::m_FrameCounter fixes:
    * Fix money animation playing faster on high fps
    * Fix walking through water spawn too many particles on high fps
    * Fix spawning too many weather particles on high fps
    * Fix airplane spawning too many damage particles on high fps
    * Fix vehicles spawning too much sand and water particles on high fps
    * Fix boats spawning too many particles on high fps
    * Fix spawning too many rain particles on vehicles on high fps
    * Fix airplanes spawning too many particles when damaged on high fps
    * Fix vehicles spawning too many exhaust particles on high fps
    * Fix spawning too many particles while swiming on high fps

commit 2b13f9e6e0102041a8b04154bbbd69227cd75fa5
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Sat Aug 6 14:10:22 2022 +0200

    Update CEF to 104.4.18+g2587cf2+chromium-104.0.5112.81

commit 2e1042fd67b4438cf2f8e207af241ad98a4e1a88
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Tue Aug 2 22:06:12 2022 +0200

    Fix setPedHeadless spawning too many particles on high fps (#2700)

commit 893858ddc5a768194b435da40230fca8ef7da752
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Tue Aug 2 21:30:28 2022 +0200

    Fix setCameraShakeLevel shaking too fast on high fps (#2698)

commit 32c04f0b25c959007b96d42cdbfefbadca22ca64
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Tue Aug 2 14:21:37 2022 +0200

    Fix water cannon decaying much faster on high FPS (#2696)

commit e9cc0a3d515165072863a6b1d3b1652814c24924
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Tue Aug 2 14:03:30 2022 +0200

    Fix stuntplane and cropduster spawning too many smoke trail particles on high fps (#2693)

commit d2b2c45789747d8412a207e6c7b3094e8556ac73
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Tue Aug 2 13:52:02 2022 +0200

    Fix wheels spawning too many surface effects on high fps (#2691)

commit 167addab6694e76d177989fb4caf3c5bf252dfc7
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Tue Aug 2 13:33:42 2022 +0200

    Fix rocket launcher spawning too many effects on high fps (#2689)

commit 7c26dddcc4ad68dbd79509494bb560fc3f784766
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Tue Aug 2 13:16:58 2022 +0200

    Fixes breakable objects decaying faster on high fps (#2686)

commit f597c46a45dea26742a680b5a2ab56d6dcb02368
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Tue Aug 2 13:03:13 2022 +0200

    Update CTimer::m_FrameCounter only every 33+ ms (#2684)

    Instead of updating every frame we now update only every 33+ ms.
    Remove now unnecessary CHud::RenderHealthBar framerate fix.

commit ea06bf5fc2562b438ae68ab003146235fd7dc437
Author: Dutchman101 <mcak105@outlook.com>
Date:   Fri Jul 22 01:41:18 2022 +0200

    update BASS.dll

    verification: http://www.un4seen.com/stuff/bass.zip

commit d150551debbc29e7f687d16bd08fa1c20cb3e3b5
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jul 21 23:25:45 2022 +0000

    Update client en_US pot

commit c85d285ecb329b0e19e433e5d0768bd40991143e
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Fri Jul 22 01:21:17 2022 +0200

    Update CEF to 103.0.12+g8eb56c7+chromium-103.0.5060.134

commit e64d311f62de2bd848c07b59f4f53a30826c1bed
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Mon Jul 18 15:39:36 2022 +0200

    Fix walking while aiming on higher fps (#502) (#2663)

commit 6b854c4e31d229ac17b9b8fec96546daa90390b7
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jul 14 19:47:54 2022 +0000

    Update client en_US pot

commit a44db243df08cd729c850652e44994de1ceedcb1
Author: Sam <samr46@users.noreply.github.com>
Date:   Thu Jul 14 22:43:35 2022 +0300

    Fix #2510: setVehiclesLODDistance() & setPedsLodDistance() can't override player settings (#2670)

commit 94766cdc671382e261a120e52dcce1b908f10abf
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Jul 13 08:06:29 2022 +0000

    Visual Studio Update

    VS2019: 16.11.32602.291 => 16.11.32630.194

    VS2022: 17.2.32616.157 => 17.2.32630.192

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 80b17d96097c6977915c91f31ae2161a1bce1fdc
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Wed Jul 13 03:55:22 2022 +0200

    Show muzzle flash for last bullet in magazine (#2669)

commit a1a22c25a311e72604c06de3e8bdddbe841da0e0
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Jul 13 01:53:29 2022 +0000

    Update client en_US pot

commit aed055497e2662119ba178b878c74c28aa5e018f
Author: Sam <samr46@users.noreply.github.com>
Date:   Wed Jul 13 04:48:59 2022 +0300

    setWaterLevel: set water sound level outside of game boundaries (#2665)

commit 5c77d974c10fc5096b0ecf600343f7c975e8a2c2
Author: Sam <samr46@users.noreply.github.com>
Date:   Mon Jul 11 20:57:03 2022 +0300

    Fix #1905: Refresh rate limited at 60Hz in full screen mode (alternative solution) (#2666)

    * Alternative implementation compared to 5207a31 (due to Direct3D createDevice errors 80004005 & 8876086c with "Radeon Image Sharpening" feature/other unknown variables for AMD ATI users)

    Set fullscreen refresh rate to D3DPRESENT_RATE_DEFAULT

commit 5207a314272fda9b54443edd30efb11e6e846dd6
Author: Sam <samr46@users.noreply.github.com>
Date:   Sun Jul 10 21:59:28 2022 +0300

    Fix #1905: Refresh rate limited at 60Hz in full screen mode (#2664)

    Set fullscreen refresh rate to display adapter's value

commit d7ce9fc621111b0054fe1f01b70869c352078d23
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Fri Jul 8 22:30:31 2022 +0200

    Update CEF to 103.0.9+gd0bbcbb+chromium-103.0.5060.114

commit 952448d46c9ac6066dc9d51e26b9da41808077e9
Author: Merlin <Merlin@users.noreply.github.com>
Date:   Fri Jul 8 00:41:59 2022 +0200

    Add hook to change vehicle damage debris to the rgb vehicle color (#2662)

commit 0c0ecab94e48257124e6a7504b3e828e83288978
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Sat Jul 2 23:56:11 2022 +0300

    Update sqlite from 3.38.5 to 3.39.0 (#2657)

commit b562b7e3831d7bca960fa1a421df1eeb7ce6e636
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Fri Jul 1 21:25:55 2022 +0200

    Update BASS libraries (#2656)

commit 54cad856e8d5024d8a2d311b4615712a36bc9bac
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Thu Jun 30 23:22:41 2022 +0200

    Update CEF to 103.0.8+g444ebe7+chromium-103.0.5060.66

commit 4ff3850ecfb013cd942f41c06c00b7dad67ac590
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Jun 22 18:11:27 2022 +0000

    Update client en_US pot

commit e0265ed1b29b4c4a80f8b01975007676c1eae3ea
Author: Dutchman101 <12105539+Dutchman101@users.noreply.github.com>
Date:   Wed Jun 22 20:06:19 2022 +0200

    Update CEF to 102.0.10+gf249b2e+chromium-102.0.5005.115

commit dfa8a2767d51d178868b62f7002eba6d72af39cc
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Jun 15 08:06:30 2022 +0000

    Visual Studio Update

    VS2019: 16.11.32510.428 => 16.11.32602.291

    VS2022: 17.2.32526.322 => 17.2.32602.215

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 3ac6dc926dbec43111f3968ba208720e5a988fd7
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue Jun 14 16:29:30 2022 +0000

    Update client en_US pot

commit c4caa4b7e82291aca67056fc0f2e9835322f7db9
Author: lopez <lopez@multitheftauto.pl>
Date:   Tue Jun 14 18:25:33 2022 +0200

    Fix corona rain reflections do not render (#2345) (#2347)

commit 7d3f321ef83dd3d3d272683d7a91aaa871148114
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Jun 1 08:03:29 2022 +0000

    Visual Studio Update

    VS2022: 17.2.32519.379 => 17.2.32526.322

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit bbce52f9b268a1c1475279160f060729bc0c67e5
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue May 31 23:34:04 2022 +0300

    Use direct discord.com invite URL

commit e750700a652edab5122089916711b5413cacfb33
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue May 31 23:09:24 2022 +0300

    Update used GitHub actions

commit 143102a38acdabba8d7837252fd8c95f704d4ef8
Author: Nawaf <30420446+xLive@users.noreply.github.com>
Date:   Tue May 31 22:57:33 2022 +0300

    Register onPedDamage (#2634)

    Previously the [onPedDamage](https://wiki.multitheftauto.com/wiki/OnPedDamage) event was not working.

commit 34acee663cf6affb825b9ba8139ce572628677a4
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Tue May 31 22:27:24 2022 +0300

    Add e44b5b0 to .git-blame-ignore-revs

    [ci skip]

commit ca8b30d6c5f8c1678cbd59b7cbfcd8431f122c84
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Thu May 26 23:03:25 2022 +0300

    Update sqlite from 3.38.2 to 3.38.5 (#2633)

commit 4dac0e237865e5d13927b42c1c93b69b1eb9a401
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Thu May 26 13:28:11 2022 +0300

    Update CEF from 101.0.18+g367b4a0+chromium-101.0.4951.67 to 102.0.8+g60bd108+chromium-102.0.5005.61

commit bb3a0b069ff47f9eb61a27aaafbae2ed0d62bd98
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed May 25 08:03:11 2022 +0000

    Visual Studio Update

    VS2022: 17.2.32516.85 => 17.2.32519.379

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 7eb36134dab77b2edf28d6efe6ef9c82c1e9d3f0
Author: Lpsd <40902730+Lpsd@users.noreply.github.com>
Date:   Mon May 23 13:37:59 2022 -0700

    Check valid player in CClientGame::AudioZoneRadioSwitchHandler (#2627)

    Test fix for #2621 (specifically, the second case for which it got reopened)

commit 748c6087457a0e0751ec4fa170f780c484d429cc
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sat May 21 23:54:09 2022 +0000

    Update client en_US pot

commit d00336070f6f726b66445213f43b50e605aefcd4
Author: Uladzislau Nikalayevich <thenormalnij@gmail.com>
Date:   Sun May 22 02:50:32 2022 +0300

    Fix interior radio crash (#2623)

commit 78b39b14fd858a1ac1eb8ef2b594d2fa0e4a2e75
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed May 18 08:03:42 2022 +0000

    Visual Studio Update

    VS2019: 16.11.32428.217 => 16.11.32510.428

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 2b549e49c7a3456cb668debdf6b02db9a981281c
Author: TEDERIs <xcplay@gmail.com>
Date:   Tue May 17 19:24:11 2022 +0700

    Consider only affected players for element data stats (PR #2620)

commit 5f85d03228207cdc70ee4425c4f4590cc85d0059
Author: Marek Kulik <me@botder.com>
Date:   Sun May 15 23:05:38 2022 +0200

    Visual Studio Update

    VS2022: 17.1.32421.90 => 17.2.32505.173

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit 622939b57d726afa349d724d49588c8a9ae8a03b
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sun May 15 19:34:57 2022 +0000

    Update client en_US pot

commit cd1d2088a92b685b3b6294acb388fc1154ddbee4
Author: Marek Kulik <me@botder.com>
Date:   Sun May 15 20:27:53 2022 +0200

    Fix Lua function parser helpers after PCH commit

commit 693976b7131a87df71d81256a80cc48b22ab7bcf
Author: Marek Kulik <me@botder.com>
Date:   Sun May 15 20:24:46 2022 +0200

    Clean up precompiled headers for Server

commit 4a94343ed44ff66c75d3c04ed2d45fae842054d5
Author: Lpsd <40902730+Lpsd@users.noreply.github.com>
Date:   Sun May 15 08:50:54 2022 -0700

    Check active resource in CLuaDefs::CanUseFunction (#2618)

commit c85a3a9459ffd6305380a03c9d6d1240476ef9f6
Author: Marek Kulik <me@botder.com>
Date:   Sun May 15 14:20:51 2022 +0200

    Revert "Clean up Server/Core PCH"

    This reverts commit a68b51728faa9a52048e4d377c5b2e16c5be485b.

commit 0c5f3204c827819f0c4f972045b706d34ba205ed
Author: Marek Kulik <me@botder.com>
Date:   Sun May 15 14:20:49 2022 +0200

    Revert "Clean up Server/dbconmy PCH"

    This reverts commit 90b4587e59de7a6495e1e147f66ddc3d2f29db49.

commit 2fc90c0d2f0d3fc137ecf0dfdc51a1166001baf1
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sun May 15 10:39:20 2022 +0000

    Update client en_US pot

commit 3ba2a582bb85d2460b117c40b32373f13977229a
Author: Marek Kulik <me@botder.com>
Date:   Sun May 15 12:22:22 2022 +0200

    Revert "Clean up Server/deathmatch"

    This reverts commit 11facfede2db3a23d172d434ff5b0bcaed73a5a2.

commit bb6cfa392e905ce767d3ee61944bfef670a9ae0c
Author: Marek Kulik <me@botder.com>
Date:   Sun May 15 12:22:19 2022 +0200

    Revert "Fix compilation issues on non-Windows"

    This reverts commit a4c24d022357d68b2836c5cc8c6e20790794f1f0.

commit 5d31853265b7befe8a49025ce7247095a0b03b2d
Author: Marek Kulik <me@botder.com>
Date:   Sun May 15 12:22:11 2022 +0200

    Revert "Fix deathmatch version issue"

    This reverts commit 5e57b03beab2140db867fb9256ebce46e30dc980.

commit fbca9e734d2e9fe12654bee22d9af568db0fa7da
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sat May 14 10:17:32 2022 +0000

    Update client en_US pot

commit 1fda10f5c06eb955751c60edc552f38fed124582
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Sat May 14 13:14:18 2022 +0300

    Update CEF from 101.0.15+gca159c5+chromium-101.0.4951.54 to 101.0.18+g367b4a0+chromium-101.0.4951.67

commit 938e6f98d831d7f43994253d7162a097815bea51
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Wed May 11 14:50:32 2022 +0300

    Update curl from 7.82.0 to 7.83.1 (#2614)

commit fa10505754385f93b28030ee472a75485c45a09c
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue May 10 21:53:24 2022 +0000

    Update client en_US pot

commit bce4ae768ab4075fc08e2919787e58591899eee5
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Wed May 11 00:44:18 2022 +0300

    Update freetype from 2.12.0 to 2.12.1

commit 51acb72cc7002d8c9da13abf4262ad96378f3eff
Author: Marek Kulik <me@botder.com>
Date:   Mon May 9 18:23:56 2022 +0200

    Fix Docker commands in README [skip ci]

commit 5e57b03beab2140db867fb9256ebce46e30dc980
Author: Marek Kulik <me@botder.com>
Date:   Mon May 9 18:21:30 2022 +0200

    Fix deathmatch version issue

commit 0377cf92f58735f2e7ee1244f4be6c0e24c688ca
Author: Marek Kulik <me@botder.com>
Date:   Mon May 9 13:28:24 2022 +0200

    Update install_data.lua

commit ffe9b1a721f2e2fbe7d94d124eec62b17047aa69
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon May 9 08:36:41 2022 +0000

    Update client en_US pot

commit 8313df3d50c78e14df710b9b360a6d3c64de001d
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Mon May 9 11:32:49 2022 +0300

    Add CI token secret for pot rebuild action

    Might also need to change user name and email but we'll see.

commit a41d4674255e25ec90f1081d149983b4f61579fe
Author: Marek Kulik <me@botder.com>
Date:   Sun May 8 23:06:19 2022 +0200

    Add Win32 to Build workflow

commit a4c24d022357d68b2836c5cc8c6e20790794f1f0
Author: Marek Kulik <me@botder.com>
Date:   Sun May 8 20:58:02 2022 +0200

    Fix compilation issues on non-Windows

commit 11facfede2db3a23d172d434ff5b0bcaed73a5a2
Author: Marek Kulik <me@botder.com>
Date:   Sun May 8 20:49:36 2022 +0200

    Clean up Server/deathmatch

commit 90b4587e59de7a6495e1e147f66ddc3d2f29db49
Author: Marek Kulik <me@botder.com>
Date:   Wed May 4 19:34:35 2022 +0200

    Clean up Server/dbconmy PCH

commit a68b51728faa9a52048e4d377c5b2e16c5be485b
Author: Marek Kulik <me@botder.com>
Date:   Wed May 4 19:31:32 2022 +0200

    Clean up Server/Core PCH

commit f275c22176bd58fa93e709de34619f28bca6c860
Author: patrikjuvonen <22572159+patrikjuvonen@users.noreply.github.com>
Date:   Thu May 5 23:31:25 2022 +0300

    Update CEF from 100.0.23+ga1e2187+chromium-100.0.4896.127 to 101.0.15+gca159c5+chromium-101.0.4951.54

commit 377a81e026523c42764cf6baad4eac6acfcffd15
Author: Pot Bot <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu May 5 20:20:36 2022 +0000

    Update client en_US pot

commit 99bd9e440cde391cc6ce79f8f1054716ecde9802
Author: Marek Kulik <me@botder.com>
Date:   Thu May 5 01:23:56 2022 +0200

    Update README [skip ci]

commit b3b5f9037ce0cbe5e5ae151a1b06ee91975fb3a2
Author: Marek Kulik <me@botder.com>
Date:   Wed May 4 19:04:46 2022 +0200

    Minor update for README [skip ci]

commit 1ce807e04988fd2fb2351d1e40d8edfc77762f38
Author: Marek Kulik <me@botder.com>
Date:   Wed May 4 19:00:50 2022 +0200

    Fix formatting in README [ci-skip]

commit 18fc9bd53561399c1b78a1af0b147f4a13ba54c8
Author: Marek Kulik <me@botder.com>
Date:   Wed May 4 18:56:46 2022 +0200

    Update build instructions

commit 2130b4de7900abae104cf7f9a78f91ad0a7c388c
Author: Marek Kulik <me@botder.com>
Date:   Wed May 4 18:07:45 2022 +0200

    Fix pthreads copying in Debug

commit c56a2dc8a7fcb5510fbadcaad235fffd7ea419e0
Author: Marek Kulik <me@botder.com>
Date:   Mon May 2 21:14:05 2022 +0200

    Add launcher for MTA Server ARM64.exe

commit a294fb9c52cf79f28c7c52ff41eed84afe9334ad
Author: Marek Kulik <me@botder.com>
Date:   Mon May 2 21:00:42 2022 +0200

    Revert "Set game thread affinity to first cpu core"

    This reverts commit dbc792b3d433378217c96b6b1418a21888ed1d5a.

commit c0b0ccabc71cc07ace8608d6bb6aa86f800e3983
Author: Marek Kulik <me@botder.com>
Date:   Sun May 1 18:35:40 2022 +0200

    Fix vendor library paths for Windows on ARM

commit a75580f89cf5f4a9ae03292b8d697e74651e376e
Author: Marek Kulik <me@botder.com>
Date:   Sat Apr 30 18:09:32 2022 +0200

    Add libmysql.dll for Windows ARM

commit 5874444f7685c2a96e2c48540161b1d3252834e8
Author: MTABot <multitheftautoqa+bot@gmail.com>
Date:   Wed Apr 27 08:05:04 2022 +0000

    Visual Studio Update

    VS2022: 17.1.32328.378 => 17.1.32421.90

    This is an automated commit to keep track of toolchain changes on the build server.
    It applies to every MTA build after this commit until further notice.

commit a11758c71cbbdd4eea9362aba255e324b374c20c
Author: Marek Kulik <me@botder.com>
Date:   Sun Apr 24 02:13:44 2022 +0200

    Fix MTA:SA server executable name for x64 on Windows

commit 812b768214b3fe506f19edec82395002b0b84f2c
Author: Marek Kulik <me@botder.com>
Date:   Sat Apr 23 21:39:06 2022 +0200

    Add missing …
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request upstream Related to vendor library
Projects
Development

Successfully merging this pull request may close these issues.

None yet

1 participant