- non ascii characters in pbo names crashing server/client
Test case has been sent to Dwarden "Wolf_Krankenhuustest_dedmen.zip".
pbo named "wolf_kränkenhuus.pbo" in addons folder causes
Windows: `Cannot open file 'D:\Steam\steamapps\common\Arma 3\@Wolf_vehicles\addons\wolf_kr�nkenhuus'`
Linux: `Cannot open file '/home/steam/arma3/mods/@wolf_vehicles\addons\wolf_kr�nkenhuus'`
- createVehicleLocal restrictions enabled even though they should not be
unsafeCVL changes were removed from perf/prof previously as the implementation was bugged/unfinished.
For some reason it has been enabled now and createVehicleLocal is being blocked by default, which should not be the case.
https://feedback.bistudio.com/T146139
- parseSimpleArray not properly un-escaping double quotes anymore
1st problem (minor)
KK wrote on biki `Since Arma 3 v.1.95.145925 the command will tolerate extra spaces and supports single quotes.`
But changelog says `Added: Support for 'any' and '' to parseSimpleArray` changelog is missing "tolerate extra spaces", I checked, it does indeed tolerate extra spaces now just missing on changelog.
2nd problem (major, breaks existing SQF scripts, even first broken CBA function reported)
1.94 profiling v2:
```sqf
parseSimpleArray "[""hint """"hello world"""";""]";
//Result: ["hint ""hello world"";"]
```
1.96 release:
```sqf
parseSimpleArray "[""hint """"hello world"""";""]";
//Expected ["hint ""hello world"";"]
//Result: ["hint """"hello world"""";"] (inner escaped double quotes not being un-escaped properly, whereas they were previously)
```
but single quotes now work correctly.
```sqf
parseSimpleArray '[''hint ''''hello world'''';'']'
//Expected ["hint ''hello world'';"]
//Result: ["hint ''hello world'';"]
```
- some weird command line parsing issues on linux
(Arma Discord) https://discordapp.com/channels/105462288051380224/105464899567669248/638819818870669342
https://discordapp.com/channels/105462288051380224/105464899567669248/638826370138505216
- -bepath parameter parsing broken
(Arma Discord) https://discordapp.com/channels/105462288051380224/105464980635176960/638820541985325076
- potential second parseSimpleArray bug
https://github.com/CBATeam/CBA_A3/issues/1246
Still investigating, might be user error. But weird that it happens now.
Seems to not be related to the un-escape quote issue, its the command itself causing a generic error. Which didn't happen before the game update.