@capgo/capacitor-updater 7.7.7 → 7.7.9
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/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java +11 -7
- package/android/src/main/java/ee/forgr/capacitor_updater/CapgoUpdater.java +4 -0
- package/android/src/main/java/ee/forgr/capacitor_updater/DelayUpdateUtils.java +2 -2
- package/ios/Plugin/CapacitorUpdaterPlugin.swift +1 -1
- package/package.json +1 -1
|
@@ -60,7 +60,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
60
60
|
private static final String statsUrlDefault = "https://plugin.capgo.app/stats";
|
|
61
61
|
private static final String channelUrlDefault = "https://plugin.capgo.app/channel_self";
|
|
62
62
|
|
|
63
|
-
private final String PLUGIN_VERSION = "7.7.
|
|
63
|
+
private final String PLUGIN_VERSION = "7.7.9";
|
|
64
64
|
private static final String DELAY_CONDITION_PREFERENCES = "";
|
|
65
65
|
|
|
66
66
|
private SharedPreferences.Editor editor;
|
|
@@ -308,11 +308,13 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
308
308
|
.post(() -> {
|
|
309
309
|
getBridge()
|
|
310
310
|
.eval(
|
|
311
|
-
"
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
311
|
+
"""
|
|
312
|
+
(function() {
|
|
313
|
+
if (window.Capacitor && window.Capacitor.Plugins && window.Capacitor.Plugins.SplashScreen) {
|
|
314
|
+
window.Capacitor.Plugins.SplashScreen.hide();
|
|
315
|
+
}
|
|
316
|
+
})()
|
|
317
|
+
""",
|
|
316
318
|
null
|
|
317
319
|
);
|
|
318
320
|
});
|
|
@@ -1483,9 +1485,10 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
1483
1485
|
public void handleOnStart() {
|
|
1484
1486
|
try {
|
|
1485
1487
|
if (isPreviousMainActivity) {
|
|
1488
|
+
logger.info("handleOnStart: appMovedToForeground");
|
|
1486
1489
|
this.appMovedToForeground();
|
|
1487
1490
|
}
|
|
1488
|
-
logger.info("onActivityStarted " + getActivity().getClass().getName());
|
|
1491
|
+
logger.info("handleOnStart: onActivityStarted " + getActivity().getClass().getName());
|
|
1489
1492
|
isPreviousMainActivity = true;
|
|
1490
1493
|
|
|
1491
1494
|
// Initialize shake menu if enabled and activity is BridgeActivity
|
|
@@ -1507,6 +1510,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
1507
1510
|
try {
|
|
1508
1511
|
isPreviousMainActivity = isMainActivity();
|
|
1509
1512
|
if (isPreviousMainActivity) {
|
|
1513
|
+
logger.info("handleOnStop: appMovedToBackground");
|
|
1510
1514
|
this.appMovedToBackground();
|
|
1511
1515
|
}
|
|
1512
1516
|
} catch (Exception e) {
|
|
@@ -233,6 +233,7 @@ public class CapgoUpdater {
|
|
|
233
233
|
notifyDownload(id, percent);
|
|
234
234
|
break;
|
|
235
235
|
case SUCCEEDED:
|
|
236
|
+
logger.info("Download succeeded: " + workInfo.getState());
|
|
236
237
|
Data outputData = workInfo.getOutputData();
|
|
237
238
|
String dest = outputData.getString(DownloadService.FILEDEST);
|
|
238
239
|
String version = outputData.getString(DownloadService.VERSION);
|
|
@@ -384,8 +385,11 @@ public class CapgoUpdater {
|
|
|
384
385
|
|
|
385
386
|
final Map<String, Object> ret = new HashMap<>();
|
|
386
387
|
ret.put("bundle", next.toJSONMap());
|
|
388
|
+
logger.info("updateAvailable: " + ret);
|
|
387
389
|
CapgoUpdater.this.notifyListeners("updateAvailable", ret);
|
|
390
|
+
logger.info("setNext: " + setNext);
|
|
388
391
|
if (setNext) {
|
|
392
|
+
logger.info("directUpdate: " + this.directUpdate);
|
|
389
393
|
if (this.directUpdate) {
|
|
390
394
|
CapgoUpdater.this.directUpdateFinish(next);
|
|
391
395
|
this.directUpdate = false;
|
|
@@ -183,7 +183,7 @@ public class DelayUpdateUtils {
|
|
|
183
183
|
try {
|
|
184
184
|
this.editor.putLong(BACKGROUND_TIMESTAMP_KEY, backgroundTimestamp);
|
|
185
185
|
this.editor.commit();
|
|
186
|
-
logger.info("
|
|
186
|
+
logger.info("Background timestamp set");
|
|
187
187
|
} catch (final Exception e) {
|
|
188
188
|
logger.error("Failed to delay update, [Error calling '_setBackgroundTimestamp()'] " + e.getMessage());
|
|
189
189
|
}
|
|
@@ -193,7 +193,7 @@ public class DelayUpdateUtils {
|
|
|
193
193
|
try {
|
|
194
194
|
this.editor.remove(BACKGROUND_TIMESTAMP_KEY);
|
|
195
195
|
this.editor.commit();
|
|
196
|
-
logger.info("
|
|
196
|
+
logger.info("Background timestamp unset");
|
|
197
197
|
} catch (final Exception e) {
|
|
198
198
|
logger.error("Failed to delay update, [Error calling '_unsetBackgroundTimestamp()'] " + e.getMessage());
|
|
199
199
|
}
|
|
@@ -50,7 +50,7 @@ public class CapacitorUpdaterPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
|
50
50
|
CAPPluginMethod(name: "isShakeMenuEnabled", returnType: CAPPluginReturnPromise)
|
|
51
51
|
]
|
|
52
52
|
public var implementation = CapgoUpdater()
|
|
53
|
-
private let PLUGIN_VERSION: String = "7.7.
|
|
53
|
+
private let PLUGIN_VERSION: String = "7.7.9"
|
|
54
54
|
static let updateUrlDefault = "https://plugin.capgo.app/updates"
|
|
55
55
|
static let statsUrlDefault = "https://plugin.capgo.app/stats"
|
|
56
56
|
static let channelUrlDefault = "https://plugin.capgo.app/channel_self"
|