Lubosz Sarnecki
cc10a572af
GLMHelpers: Don't redefine lerp.
...
Fixes GCC build error on C++20.
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
426c1519fd
cmake: Bump C++ to 20.
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
d69f90635f
input-plugins/KeyboardMouseDevice: Cast Qt::Key to uint16_t for bitwise operation.
...
Fixes warning:
bitwise operation between different enumeration types ‘Qt::Key’ and ‘KeyboardMouseDevice::KeyboardChannel’ is deprecated.
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
4ce72674e9
interface/Menu: Use only Qt::Key enums for QKeySequence.
...
Fixes the C++20 warning:
bitwise operation between different enumeration types ‘Qt::Modifier’ and ‘Qt::Key’ is deprecated [-Wdeprecated-enum-enum-conversion]
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
676de4b75b
interface+libraries+tools: Capture this explicitly in lambda copy capture.
...
Since C++20 it is deprecated to implicitly capture this with [=] lambda
copy expressions.
See: https://en.cppreference.com/w/cpp/language/lambda#Lambda_capture
This patch replaces these occurances with [this] where only this is
required and [=, this] where more scope is required.
In case only this and another variable is required in the scope I chose
to use that variable explicitly in favor of =.
This fixes the GCC14 warning: implicit capture of ‘this’ via ‘[=]’ is deprecated in C++20 [-Wdeprecated].
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
c09ae79b70
BlurTask: Remove totalWeight that is never read.
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
a6b3797982
CubicHermiteSpline: Explicitly cast enums to float.
...
Fixes -Wdeprecated-enum-float-conversion on GCC 14.
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
65bbe18dd7
render/Item: Fix -Wdeprecated-enum-enum-conversion.
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
d6546f5c23
graphics/Material: Fix -Wdeprecated-enum-enum-conversion.
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
43e80972f6
cmake: Bump C++ to 17.
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
373f32a804
gpu/Texture_ktx: Fix -Wclass-memaccess.
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
109694ab84
octre/PacketData: Fix -Wclass-memaccess.
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
e33a5006d5
interface/raypick: Fix -Wdouble-promotion.
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
91076e2000
libraries: Drop std::iterator template usage.
...
Define iterator traits manually instead of using deprecated std:iterator template.
See https://www.fluentcpp.com/2018/05/08/std-iterator-deprecated/
This fixes a C++17 deprecation warning and C++20 error on GCC 14.
2024-08-03 18:59:15 +02:00
Lubosz Sarnecki
473a5dc79d
cmake: Drop incorrect min requirement for CMake 3.2.
2024-08-03 13:02:30 +02:00
HifiExperiments
493c9c9441
Merge pull request #1058 from HifiExperiments/fallbacks
...
Custom shader fallbacks
2024-08-01 14:55:15 -07:00
Dale Glass
b69ab5a157
Merge pull request #1093 from JulianGro/fix-login-error
...
Fix login failure handling and improve logging.
2024-07-27 21:53:46 +02:00
Dale Glass
cc8e14ada7
Merge pull request #1091 from AleziaKurdis/createApp_MatAssistant2.0
...
Create App: Material Assistant: Add Mtoon, Shader_simple, missing PBR properties and bug fixes.
2024-07-27 21:48:37 +02:00
3034ce7093
Improve logging for abnormal behaviour.
2024-07-25 03:19:29 +02:00
b9239f451f
Fix error printing message during login failure and make it a warning.
2024-07-25 03:18:34 +02:00
d6150c3684
Fix login failure handling in LoggingInBody.qml.
2024-07-25 03:16:42 +02:00
Alezia Kurdis
448250883a
Ui Adjustment
...
Ui Adjustment:
- UV Animation scroll speed X and Y is now -3 to 3
- MToon and Shader (Simple) (instead of MTOON and SHARDER (Simple))
- Opacity mode: "Not used" instead of "Do not used" ("Do not use" would be also wrong as it means more "Don't even think to touch it" ranther than "currently not using it")
2024-07-22 18:46:29 -04:00
Alezia Kurdis
c1fb08e509
Add better error messages.
...
Add better error messages.
2024-07-22 14:38:15 -04:00
Alezia Kurdis
a987ab0e65
Support MTOON in Material Assistant
...
Support MTOON in Material Assistant
2024-07-21 22:35:27 -04:00
Alezia Kurdis
d189f70b36
Support MTOON in Material Assistant
...
Support MTOON in Material Assistant
2024-07-21 22:34:16 -04:00
Alezia Kurdis
4a69e90035
Support MTOON in Material Assistant
...
Support MTOON in Material Assistant
2024-07-21 22:31:56 -04:00
Dale Glass
2be3011d28
Merge pull request #1088 from daleglass-overte/fix-wireshark-dissector
...
Fix wireshark dissector
2024-07-18 22:07:39 +02:00
Dale Glass
e771bd1706
Merge pull request #1087 from daleglass-overte/dump-protocol-data
...
Dump protocol data
2024-07-18 22:07:16 +02:00
Dale Glass
56ab058543
Expand documentation and add packet type to the info column
2024-07-18 20:00:22 +02:00
Dale Glass
c06a60eaea
Fix wireshark dissector, update with new packet types.
...
Probably still incomplete, but getting closer.
2024-07-18 16:39:37 +02:00
Dale Glass
13579a2b6b
Add --getProtocolVersionData and --getProtocolVersionHash arguments
2024-07-17 23:33:25 +02:00
Dale Glass
afddb463ec
Remove question mark, the guess was correct
2024-07-17 23:32:40 +02:00
54e993f220
Merge pull request #1086 from Armored-Dragon/fix/ControllerScripts-uncaught-exception
...
Fix controllerScripts uncaught exception.
2024-07-17 00:52:48 +02:00
Armored Dragon
8656f23147
Fix variable name.
...
Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
2024-07-16 17:38:32 -05:00
d7eb29b665
Merge pull request #1081 from Armored-Dragon/fix/mouselook-ignoring-setting
...
Fix mouselook ignoring setting.
2024-07-16 23:55:15 +02:00
673ccdf85d
Merge pull request #1083 from Armored-Dragon/fix/ArmoredChat-Link-Colors
...
Hard code link colors in Armored Chat
2024-07-16 23:17:35 +02:00
76de0958b1
Update LICENSE
2024-07-13 22:26:46 +02:00
Armored Dragon
06f4550e55
Hardcode link colorization.
...
Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
2024-07-13 14:38:56 -05:00
Armored Dragon
e901cea8ef
Check if setting is enabled.
...
Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
2024-07-12 16:01:45 -05:00
a651b6b978
Merge pull request #1004 from Armored-Dragon/mouselook_refactor
...
MouseLook.js refactor
2024-07-11 22:06:50 +02:00
1d1a680678
Merge pull request #961 from Armored-Dragon/ArmoredChat
...
Replace Floofchat with ArmoredChat
2024-07-11 21:27:36 +02:00
Armored Dragon
9964d91729
Fixed message subscription.
...
Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
2024-07-11 14:21:32 -05:00
Armored Dragon
fe4625839b
Sanity check on message channel.
...
Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
2024-07-09 13:23:44 -05:00
20f2bf0c69
Merge pull request #1072 from overte-org/fix_uploads
...
Fix broken upload paths for RPM distributions.
2024-07-09 19:58:10 +02:00
8582ccf036
Merge pull request #1073 from JulianGro/vcpkg_update
...
Update VCPKG on Windows, so it can find newer versions of Visual Studio.
2024-07-09 19:57:47 +02:00
dcf2b1f0af
Merge pull request #1077 from JulianGro/RELEASE_NAME
...
Remove remnants of RELEASE_NAME.
2024-07-09 19:57:32 +02:00
Armored Dragon
252b33b73f
Removed commented code.
...
Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
2024-07-08 11:25:19 -05:00
Armored Dragon
6cf6e6c9ec
Disallow all text formatting by default.
...
Removed now redundant <script> filtering.
Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
2024-07-08 11:21:04 -05:00
6d3d90f6a2
Remove remnants of RELEASE_NAME.
2024-07-08 12:31:25 +02:00
ebcd6c09c2
Merge pull request #1071 from JulianGro/fix_multiple_server_builds
...
Fix GHA building hundreds of servers
2024-07-08 12:08:02 +02:00