diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/dist/ios_xcode/godot_ios.xcodeproj/project.pbxproj | 16 | ||||
-rw-r--r-- | misc/extension_api_validation/4.1-stable.expected | 49 |
2 files changed, 62 insertions, 3 deletions
diff --git a/misc/dist/ios_xcode/godot_ios.xcodeproj/project.pbxproj b/misc/dist/ios_xcode/godot_ios.xcodeproj/project.pbxproj index cc2b1c64f8..27bc2844d5 100644 --- a/misc/dist/ios_xcode/godot_ios.xcodeproj/project.pbxproj +++ b/misc/dist/ios_xcode/godot_ios.xcodeproj/project.pbxproj @@ -255,7 +255,13 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - OTHER_LDFLAGS = "-ld_classic $linker_flags"; + "LD_CLASSIC_1000" = ""; + "LD_CLASSIC_1100" = ""; + "LD_CLASSIC_1200" = ""; + "LD_CLASSIC_1300" = ""; + "LD_CLASSIC_1400" = ""; + "LD_CLASSIC_1500" = "-ld_classic"; + OTHER_LDFLAGS = "$(LD_CLASSIC_$(XCODE_VERSION_MAJOR)) $linker_flags"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "$targeted_device_family"; }; @@ -294,7 +300,13 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - OTHER_LDFLAGS = "-ld_classic $linker_flags"; + "LD_CLASSIC_1000" = ""; + "LD_CLASSIC_1100" = ""; + "LD_CLASSIC_1200" = ""; + "LD_CLASSIC_1300" = ""; + "LD_CLASSIC_1400" = ""; + "LD_CLASSIC_1500" = "-ld_classic"; + OTHER_LDFLAGS = "$(LD_CLASSIC_$(XCODE_VERSION_MAJOR)) $linker_flags"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "$targeted_device_family"; VALIDATE_PRODUCT = YES; diff --git a/misc/extension_api_validation/4.1-stable.expected b/misc/extension_api_validation/4.1-stable.expected index 0aea0612ab..d51523bd38 100644 --- a/misc/extension_api_validation/4.1-stable.expected +++ b/misc/extension_api_validation/4.1-stable.expected @@ -118,7 +118,6 @@ Excluded unexposed classes from extension_api.json. GH-79311 -------- -Validate extension JSON: API was removed: classes/GraphEdit/signals/delete_nodes_request Validate extension JSON: API was removed: classes/GraphNode/methods/get_connection_input_color Validate extension JSON: API was removed: classes/GraphNode/methods/get_connection_input_count Validate extension JSON: API was removed: classes/GraphNode/methods/get_connection_input_height @@ -265,3 +264,51 @@ Validate extension JSON: Error: Field 'classes/AnimationTree/methods/set_tree_ro These definitions have been moved to those base classes, so the APIs are actually available. Some properties were renamed for integration, but the old setter/getters are kept. Also changed some methods name/argument/signature. Compatibility methods registered. + + +GH-81582 +-------- + +Validate extension JSON: API was removed: classes/GraphEdit/methods/is_arrange_nodes_button_hidden +Validate extension JSON: API was removed: classes/GraphEdit/methods/set_arrange_nodes_button_hidden +Validate extension JSON: API was removed: classes/GraphEdit/properties/arrange_nodes_button_hidden + +Make GraphEdit toolbar more customizable + + +GH-81138 +-------- + +Validate extension JSON: Error: Field 'classes/ImporterMesh/methods/add_surface/arguments/6': meta changed value in new API, from "uint32" to "uint64". +Validate extension JSON: Error: Field 'classes/ImporterMesh/methods/get_surface_format/return_value': meta changed value in new API, from "uint32" to "uint64". +Validate extension JSON: Error: Field 'classes/MeshDataTool/methods/commit_to_surface/arguments': size changed value in new API, from 1 to 2. +Validate extension JSON: Error: Field 'classes/MeshDataTool/methods/get_format/return_value': meta changed value in new API, from "int32" to "uint64". +Validate extension JSON: Error: Field 'classes/RenderingDevice/methods/shader_get_vertex_input_attribute_mask/return_value': meta changed value in new API, from "uint32" to "uint64". +Validate extension JSON: Error: Field 'classes/SurfaceTool/methods/commit/arguments/1': meta changed value in new API, from "uint32" to "uint64". + +Surface format was increased to 64 bits from 32 bits. Compatibility methods registered. + +GH-79527 +-------- +Validate extension JSON: Error: Field 'classes/ParticleProcessMaterial/properties/orbit_velocity_curve': type changed value in new API, from "CurveTexture" to "CurveTexture,CurveXYZTexture". + +Added accepted curve type from only CurveTexture to CurveXYZTexture. + + +GH-84113 +-------- +Validate extension JSON: Error: Field 'classes/Decal/properties/texture_albedo': type changed value in new API, from "Texture" to "Texture2D". +Validate extension JSON: Error: Field 'classes/Decal/properties/texture_emission': type changed value in new API, from "Texture" to "Texture2D". +Validate extension JSON: Error: Field 'classes/Decal/properties/texture_normal': type changed value in new API, from "Texture" to "Texture2D". +Validate extension JSON: Error: Field 'classes/Decal/properties/texture_orm': type changed value in new API, from "Texture" to "Texture2D". +Validate extension JSON: Error: Field 'classes/LineEdit/properties/right_icon': type changed value in new API, from "Texture" to "Texture2D". +Validate extension JSON: Error: Field 'classes/Sprite3D/properties/texture': type changed value in new API, from "Texture" to "Texture2D". + +Changed the hint types of some nodes' properties from Texture to Texture2D. No adjustments should be necessary. + + +GH-84419 +-------- +Validate extension JSON: API was removed: classes/Node/constants/NOTIFICATION_NODE_RECACHE_REQUESTED + +Removed unused NOTIFICATION_NODE_RECACHE_REQUESTED notification. It also used to conflict with CanvasItem.NOTIFICATION_DRAW and Window.NOTIFICATION_VISIBILITY_CHANGED (which still need to be resolved). |