@capgo/capacitor-updater 4.10.4 → 4.11.3
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 +1 -1
- package/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java +6 -3
- package/ios/Plugin/CapacitorUpdater.swift +1 -1
- package/ios/Plugin/CapacitorUpdaterPlugin.swift +4 -0
- package/package.json +1 -1
|
@@ -52,7 +52,7 @@ public class CapacitorUpdater {
|
|
|
52
52
|
private static final String bundleDirectory = "versions";
|
|
53
53
|
|
|
54
54
|
public static final String TAG = "Capacitor-updater";
|
|
55
|
-
public static final String pluginVersion = "4.
|
|
55
|
+
public static final String pluginVersion = "4.11.3";
|
|
56
56
|
|
|
57
57
|
public SharedPreferences.Editor editor;
|
|
58
58
|
public SharedPreferences prefs;
|
|
@@ -145,11 +145,14 @@ public class CapacitorUpdaterPlugin extends Plugin implements Application.Activi
|
|
|
145
145
|
try {
|
|
146
146
|
final JSObject ret = new JSObject();
|
|
147
147
|
ret.put("percent", percent);
|
|
148
|
-
|
|
149
|
-
ret.put("bundle",
|
|
148
|
+
final BundleInfo bundleInfo = this.implementation.getBundleInfo(id);
|
|
149
|
+
ret.put("bundle", bundleInfo.toJSON());
|
|
150
150
|
this.notifyListeners("download", ret);
|
|
151
151
|
if (percent == 100) {
|
|
152
|
-
this.notifyListeners("downloadComplete",
|
|
152
|
+
this.notifyListeners("downloadComplete", bundleInfo.toJSON());
|
|
153
|
+
this.implementation.sendStats("download_complete", bundleInfo.getVersionName());
|
|
154
|
+
} else if (percent % 10 == 0) {
|
|
155
|
+
this.implementation.sendStats("download_" + percent, bundleInfo.getVersionName());
|
|
153
156
|
}
|
|
154
157
|
} catch (final Exception e) {
|
|
155
158
|
Log.e(CapacitorUpdater.TAG, "Could not notify listeners", e);
|
|
@@ -208,7 +208,7 @@ extension CustomError: LocalizedError {
|
|
|
208
208
|
public let TAG = "✨ Capacitor-updater:"
|
|
209
209
|
public let CAP_SERVER_PATH = "serverBasePath"
|
|
210
210
|
public var customId = ""
|
|
211
|
-
public let pluginVersion = "4.
|
|
211
|
+
public let pluginVersion = "4.11.3"
|
|
212
212
|
public var statsUrl = ""
|
|
213
213
|
public var channelUrl = ""
|
|
214
214
|
public var appId = ""
|
|
@@ -84,6 +84,10 @@ public class CapacitorUpdaterPlugin: CAPPlugin {
|
|
|
84
84
|
self.notifyListeners("download", data: ["percent": percent, "bundle": bundle.toJSON()])
|
|
85
85
|
if percent == 100 {
|
|
86
86
|
self.notifyListeners("downloadComplete", data: ["bundle": bundle.toJSON()])
|
|
87
|
+
self.implementation.sendStats(action: "download_complete", versionName: bundle.getVersionName())
|
|
88
|
+
}
|
|
89
|
+
else if percent.isMultiple(of: 10) {
|
|
90
|
+
self.implementation.sendStats(action: "download_\(percent)", versionName: bundle.getVersionName())
|
|
87
91
|
}
|
|
88
92
|
}
|
|
89
93
|
|