@capgo/capacitor-updater 6.0.61 → 6.0.63

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/README.md CHANGED
@@ -34,6 +34,16 @@ Join the [discord](https://discord.gg/VnYRvBfgA6) to get help.
34
34
  ## Documentation
35
35
  I maintain a more user-friendly and complete [documentation here](https://capgo.app/docs/).
36
36
 
37
+ ## Compatibility
38
+
39
+ | Plugin version | Capacitor compatibility | Maintained |
40
+ | -------------- | ----------------------- | ----------------- |
41
+ | v6.\*.\* | v6.\*.\* | ✅ |
42
+ | v5.\*.\* | v5.\*.\* | Critical bug only |
43
+ | v4.\*.\* | v4.\*.\* | ⚠️ Deprecated |
44
+ | v3.\*.\* | v3.\*.\* | ⚠️ Deprecated |
45
+ | > 7 | v4.\*.\* | ⚠️ Deprecated, our CI got crazy and bumped too much version |
46
+
37
47
  ### iOS
38
48
 
39
49
  #### Privacy manifest
@@ -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 = "6.0.61";
58
+ private final String PLUGIN_VERSION = "6.0.63";
59
59
  private static final String DELAY_CONDITION_PREFERENCES = "";
60
60
 
61
61
  private SharedPreferences.Editor editor;
@@ -888,7 +888,6 @@ public class CapacitorUpdaterPlugin extends Plugin {
888
888
  final JSObject ret = new JSObject();
889
889
  ret.put("bundle", bundle.toJSON());
890
890
  call.resolve(ret);
891
- call.resolve();
892
891
  } catch (final Exception e) {
893
892
  Log.e(
894
893
  CapacitorUpdater.TAG,
@@ -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 = "6.0.61"
18
+ private let PLUGIN_VERSION: String = "6.0.63"
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"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-updater",
3
- "version": "6.0.61",
3
+ "version": "6.0.63",
4
4
  "packageManager": "pnpm@8.15.9",
5
5
  "license": "MPL-2.0",
6
6
  "description": "Live update for capacitor apps",