@quenty/sprites 10.0.0 → 10.0.1-canary.445.bf8e4c3.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 +11 -0
- package/LICENSE.md +1 -1
- package/package.json +7 -7
- package/src/Shared/InputImageLibrary/init.lua +2 -2
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
|
+
## [10.0.1-canary.445.bf8e4c3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sprites@10.0.0...@quenty/sprites@10.0.1-canary.445.bf8e4c3.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
|
# [10.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/sprites@9.3.0...@quenty/sprites@10.0.0) (2024-02-13)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/sprites
|
package/LICENSE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2014-
|
|
3
|
+
Copyright (c) 2014-2024 James Onnen (Quenty)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/sprites",
|
|
3
|
-
"version": "10.0.0",
|
|
3
|
+
"version": "10.0.1-canary.445.bf8e4c3.0",
|
|
4
4
|
"description": "Spritesheet utility for Roblox including a built-in InputImageLibrary",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,16 +26,16 @@
|
|
|
26
26
|
"Quenty"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@quenty/baseobject": "
|
|
30
|
-
"@quenty/loader": "
|
|
31
|
-
"@quenty/maid": "
|
|
32
|
-
"@quenty/uiobjectutils": "
|
|
29
|
+
"@quenty/baseobject": "8.0.1-canary.445.bf8e4c3.0",
|
|
30
|
+
"@quenty/loader": "8.0.1-canary.445.bf8e4c3.0",
|
|
31
|
+
"@quenty/maid": "3.0.0",
|
|
32
|
+
"@quenty/uiobjectutils": "4.0.1-canary.445.bf8e4c3.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@quenty/string": "
|
|
35
|
+
"@quenty/string": "3.1.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "bf8e4c3cbff3de4e4c7ffbfc768c1f7ae2ff9e42"
|
|
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"
|