Skip to content

Commit

Permalink
Fix blur starting edges
Browse files Browse the repository at this point in the history
  • Loading branch information
boatbomber committed Aug 18, 2024
1 parent 0fd408e commit 0e1ade6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Via [wally](https://wally.run):

```toml
[dependencies]
GlassmorphicUI = "boatbomber/[email protected].0"
GlassmorphicUI = "boatbomber/[email protected].1"
```

Alternatively, grab the `.rbxm` standalone model from the latest [release.](https://github.com/boatbomber/GlassmorphicUI/releases/latest)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@boatbomber/glassmorphicui",
"version": "0.5.0",
"version": "0.5.1",
"license": "MPL 2.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ end

function GlassmorphicUI._processNextPixel(glassObject: GlassObject, skipTween: boolean?)
local Window = glassObject.Window
if (not Window) or (not Window:IsDescendantOf(game)) then
if (not Window) or not Window.Parent then
return
end

Expand Down
6 changes: 3 additions & 3 deletions wally.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ registry = "test"

[[package]]
name = "boatbomber/editableimageblur"
version = "0.3.1"
version = "0.3.2"
dependencies = []

[[package]]
name = "boatbomber/glassmorphicui"
version = "0.5.0"
dependencies = [["EditableImageBlur", "boatbomber/[email protected].1"], ["PixelColorApproximation", "boatbomber/[email protected]"]]
version = "0.5.1"
dependencies = [["EditableImageBlur", "boatbomber/[email protected].2"], ["PixelColorApproximation", "boatbomber/[email protected]"]]

[[package]]
name = "boatbomber/pixelcolorapproximation"
Expand Down
4 changes: 2 additions & 2 deletions wally.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "boatbomber/glassmorphicui"
description = "Glassmorphic UI in Roblox"
version = "0.5.0"
version = "0.5.1"
license = "MPL 2.0"
authors = ["boatbomber (https://boatbomber.com)"]
registry = "https://github.com/upliftgames/wally-index"
Expand All @@ -10,5 +10,5 @@ include = ["src", "src/**", "wally.toml", "wally.lock", "default.project.json"]
exclude = ["**"]

[dependencies]
EditableImageBlur = "boatbomber/[email protected].1"
EditableImageBlur = "boatbomber/[email protected].2"
PixelColorApproximation = "boatbomber/[email protected]"

0 comments on commit 0e1ade6

Please sign in to comment.