@quenty/sprites 11.0.0 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [12.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sprites@11.0.0...@quenty/sprites@12.0.0) (2024-02-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix search to use plain query ([bf8e4c3](https://github.com/Quenty/NevermoreEngine/commit/bf8e4c3cbff3de4e4c7ffbfc768c1f7ae2ff9e42))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [11.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sprites@10.0.0...@quenty/sprites@11.0.0) (2024-02-13)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/sprites
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/sprites",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0",
|
|
4
4
|
"description": "Spritesheet utility for Roblox including a built-in InputImageLibrary",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "77d0a0b5b59a512311fa07293fb573953fcacbeb"
|
|
41
41
|
}
|
|
@@ -109,9 +109,9 @@ function InputImageLibrary:_getDefaultPreferredPlatform()
|
|
|
109
109
|
return nil
|
|
110
110
|
end
|
|
111
111
|
|
|
112
|
-
if string.find(result, "PlayStation") then
|
|
112
|
+
if string.find(result, "PlayStation", nil, true) then
|
|
113
113
|
return "PlayStation"
|
|
114
|
-
elseif string.find(result, "Xbox") then
|
|
114
|
+
elseif string.find(result, "Xbox", nil, true) then
|
|
115
115
|
return "XBox"
|
|
116
116
|
else
|
|
117
117
|
return "XBox"
|