@capgo/capacitor-updater 5.7.20 → 5.8.2
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/CapacitorUpdater.java +9 -0
- package/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java +2 -1
- package/ios/Plugin/CapacitorUpdater.swift +12 -2
- package/ios/Plugin/CapacitorUpdaterPlugin.swift +2 -1
- package/package.json +1 -1
|
@@ -697,6 +697,15 @@ public class CapacitorUpdater {
|
|
|
697
697
|
return false;
|
|
698
698
|
}
|
|
699
699
|
|
|
700
|
+
public void autoReset() {
|
|
701
|
+
String id = this.prefs.getString(WebView.CAP_SERVER_PATH, "");
|
|
702
|
+
final BundleInfo currentBundle = this.getBundleInfo(id);
|
|
703
|
+
if (!currentBundle.isBuiltin() && !this.bundleExists(id)) {
|
|
704
|
+
Log.i(TAG, "Folder at bundle path does not exist. Triggering reset.");
|
|
705
|
+
this.reset();
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
|
|
700
709
|
public void reset() {
|
|
701
710
|
this.reset(false);
|
|
702
711
|
}
|
|
@@ -55,7 +55,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
55
55
|
private static final String channelUrlDefault =
|
|
56
56
|
"https://api.capgo.app/channel_self";
|
|
57
57
|
|
|
58
|
-
private final String PLUGIN_VERSION = "5.
|
|
58
|
+
private final String PLUGIN_VERSION = "5.8.2";
|
|
59
59
|
private static final String DELAY_CONDITION_PREFERENCES = "";
|
|
60
60
|
|
|
61
61
|
private SharedPreferences.Editor editor;
|
|
@@ -217,6 +217,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
217
217
|
boolean resetWhenUpdate =
|
|
218
218
|
this.getConfig().getBoolean("resetWhenUpdate", true);
|
|
219
219
|
|
|
220
|
+
this.implementation.autoReset();
|
|
220
221
|
if (resetWhenUpdate) {
|
|
221
222
|
this.cleanupObsoleteVersions();
|
|
222
223
|
}
|
|
@@ -726,6 +726,17 @@ extension CustomError: LocalizedError {
|
|
|
726
726
|
return false
|
|
727
727
|
}
|
|
728
728
|
|
|
729
|
+
public func autoReset() {
|
|
730
|
+
guard let id: String = UserDefaults.standard.string(forKey: self.CAP_SERVER_PATH), !id.isEmpty else {
|
|
731
|
+
return
|
|
732
|
+
}
|
|
733
|
+
let currentBundle: BundleInfo = self.getBundleInfo(id: id)
|
|
734
|
+
if !currentBundle.isBuiltin() && !self.bundleExists(id: id) {
|
|
735
|
+
print("\(self.TAG) Folder at bundle path does not exist. Triggering reset.")
|
|
736
|
+
self.reset()
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
|
|
729
740
|
public func reset() {
|
|
730
741
|
self.reset(isInternal: false)
|
|
731
742
|
}
|
|
@@ -1008,8 +1019,7 @@ extension CustomError: LocalizedError {
|
|
|
1008
1019
|
return false
|
|
1009
1020
|
}
|
|
1010
1021
|
let newBundle: BundleInfo = self.getBundleInfo(id: nextId)
|
|
1011
|
-
|
|
1012
|
-
if !newBundle.isBuiltin() && !bundle.exist {
|
|
1022
|
+
if !newBundle.isBuiltin() && !self.bundleExists(id: nextId) {
|
|
1013
1023
|
return false
|
|
1014
1024
|
}
|
|
1015
1025
|
UserDefaults.standard.set(nextId, forKey: self.NEXT_VERSION)
|
|
@@ -15,7 +15,7 @@ import Version
|
|
|
15
15
|
@objc(CapacitorUpdaterPlugin)
|
|
16
16
|
public class CapacitorUpdaterPlugin: CAPPlugin {
|
|
17
17
|
public var implementation = CapacitorUpdater()
|
|
18
|
-
private let PLUGIN_VERSION: String = "5.
|
|
18
|
+
private let PLUGIN_VERSION: String = "5.8.2"
|
|
19
19
|
static let updateUrlDefault = "https://api.capgo.app/updates"
|
|
20
20
|
static let statsUrlDefault = "https://api.capgo.app/stats"
|
|
21
21
|
static let channelUrlDefault = "https://api.capgo.app/channel_self"
|
|
@@ -81,6 +81,7 @@ public class CapacitorUpdaterPlugin: CAPPlugin {
|
|
|
81
81
|
implementation.statsUrl = getConfig().getString("statsUrl", CapacitorUpdaterPlugin.statsUrlDefault)!
|
|
82
82
|
implementation.channelUrl = getConfig().getString("channelUrl", CapacitorUpdaterPlugin.channelUrlDefault)!
|
|
83
83
|
implementation.defaultChannel = getConfig().getString("defaultChannel", "")!
|
|
84
|
+
self.implementation.autoReset()
|
|
84
85
|
if resetWhenUpdate {
|
|
85
86
|
self.cleanupObsoleteVersions()
|
|
86
87
|
}
|