From 74aa3cf9ce341d8f4c006c69f307e9207b673599 Mon Sep 17 00:00:00 2001 From: Brooke Rhodes Date: Sun, 24 May 2026 18:13:56 +0100 Subject: [PATCH] bump packages --- .lune/commands/install/init.luau | 2 +- plugin/patches/Foundation_2.patch | 15 +++++++++++++ plugin/patches/Foundation_3.patch | 37 +++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 plugin/patches/Foundation_2.patch create mode 100644 plugin/patches/Foundation_3.patch diff --git a/.lune/commands/install/init.luau b/.lune/commands/install/init.luau index c9af5bf..a9aea9d 100644 --- a/.lune/commands/install/init.luau +++ b/.lune/commands/install/init.luau @@ -35,7 +35,7 @@ install.arguments = { local PROJECT_FILE = "plugin/default.project.json" local SOURCEMAP_PATH = "plugin/generated/sourcemap.json" -local VERSION_PIN = "0.719.0.7191339" +local VERSION_PIN = "0.722.0.7221024" local PACKAGE_DIRS = { "Packages", "DevPackages", diff --git a/plugin/patches/Foundation_2.patch b/plugin/patches/Foundation_2.patch new file mode 100644 index 0000000..a543121 --- /dev/null +++ b/plugin/patches/Foundation_2.patch @@ -0,0 +1,15 @@ +diff --git a/Foundation/Components/Popover/Content/PopoverContent.lua.rej b/Foundation/Components/Popover/Content/PopoverContent.lua.rej +deleted file mode 100644 +index cde91c8..0000000 +--- a/Foundation/Components/Popover/Content/PopoverContent.lua.rej ++++ /dev/null +@@ -1,9 +0,0 @@ +-diff a/plugin/Packages/_Index/Foundation/Foundation/Components/Popover/Content/PopoverContent.lua b/plugin/Packages/_Index/Foundation/Foundation/Components/Popover/Content/PopoverContent.lua (rejected hunks) +-@@ -205,6 +205,7 @@ local function PopoverContent(contentProps: PopoverContentProps, forwardedRef: R +- Position = position:map(function(value: Vector2) +- return UDim2.fromOffset(value.X, value.Y) +- end), +-+ InputSink = Enum.InputSink.All, +- selection = props.selection, +- selectionGroup = props.selectionGroup, +- sizeConstraint = { diff --git a/plugin/patches/Foundation_3.patch b/plugin/patches/Foundation_3.patch new file mode 100644 index 0000000..b6537fe --- /dev/null +++ b/plugin/patches/Foundation_3.patch @@ -0,0 +1,37 @@ +diff --git a/Foundation/Components/Sheet/Sheet.lua b/Foundation/Components/Sheet/Sheet.lua +index 95d05c4..5aaa8a9 100644 +--- a/Foundation/Components/Sheet/Sheet.lua ++++ b/Foundation/Components/Sheet/Sheet.lua +@@ -1,17 +1,12 @@ + local Foundation = script:FindFirstAncestor("Foundation") + local Packages = Foundation.Parent + local React = require(Packages.React) +-local ReactUtils = require(Packages.ReactUtils) +- +-local Flags = require(Foundation.Utility.Flags) + + local BottomSheet = require(script.Parent.BottomSheet) + local CenterSheet = require(script.Parent.CenterSheet) ++local DialogSize = require(Foundation.Enums.DialogSize) + local SideSheet = require(script.Parent.SideSheet) + local useOverlay = require(Foundation.Providers.Overlay.useOverlay) +-local useScreen = require(Foundation.Providers.Overlay.useScreen) +-local GuiService = require(Foundation.Utility.Wrappers).Services.GuiService +-local DialogSize = require(Foundation.Enums.DialogSize) + local withDefaults = require(Foundation.Utility.withDefaults) + type DialogSize = DialogSize.DialogSize + +@@ -39,11 +34,11 @@ local function Sheet(sheetProps: SheetProps, ref: React.Ref): React.R + end + + local function update() +- setSmallDisplay(screen.AbsoluteSize.X <= 500) ++ setSmallDisplay(screen.AbsoluteSize.X <= 640) + end + update() + +- local connection = GuiService:GetPropertyChangedSignal("ViewportDisplaySize"):Connect(update) ++ local connection = screen:GetPropertyChangedSignal("AbsoluteSize"):Connect(update) + return function() + connection:Disconnect() + end