esoftplay 0.0.126-t → 0.0.126-u
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/bin/cli.js +6 -0
- package/modules/user/index.tsx +0 -2
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -138,6 +138,10 @@ function switchStatusAssets(status) {
|
|
|
138
138
|
const icondebug = DIR + "assets/icon.debug.png"
|
|
139
139
|
const iconlive = DIR + "assets/icon.live.png"
|
|
140
140
|
|
|
141
|
+
const icon_iospng = DIR + "assets/icon_ios.png"
|
|
142
|
+
const icon_iosdebug = DIR + "assets/icon_ios.debug.png"
|
|
143
|
+
const icon_ioslive = DIR + "assets/icon_ios.live.png"
|
|
144
|
+
|
|
141
145
|
const iconNotifpng = DIR + "assets/iconNotif.png"
|
|
142
146
|
const iconNotifdebug = DIR + "assets/iconNotif.debug.png"
|
|
143
147
|
const iconNotiflive = DIR + "assets/iconNotif.live.png"
|
|
@@ -156,11 +160,13 @@ function switchStatusAssets(status) {
|
|
|
156
160
|
}
|
|
157
161
|
if (status.includes('l')) {
|
|
158
162
|
copyFileFromTo(iconlive, iconpng)
|
|
163
|
+
copyFileFromTo(icon_ioslive, icon_iospng)
|
|
159
164
|
copyFileFromTo(splashlive, splashpng)
|
|
160
165
|
copyFileFromTo(iconNotiflive, iconNotifpng)
|
|
161
166
|
}
|
|
162
167
|
if (status.includes('d')) {
|
|
163
168
|
copyFileFromTo(icondebug, iconpng)
|
|
169
|
+
copyFileFromTo(icon_iosdebug, icon_iospng)
|
|
164
170
|
copyFileFromTo(splashdebug, splashpng)
|
|
165
171
|
copyFileFromTo(iconNotifdebug, iconNotifpng)
|
|
166
172
|
}
|
package/modules/user/index.tsx
CHANGED