@capgo/capacitor-updater 7.18.2 → 7.18.4

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
@@ -26,19 +26,22 @@ Open-source Alternative to Appflow, Codepush or Capawesome
26
26
 
27
27
  ## Features
28
28
 
29
- - 🔋 Supports **Android and iOS**
30
- - ⚡️ **Capacitor 7** support
31
- - 🔄 **Auto Update**: Automatically download and set the latest bundle for the app.
32
- - ☁️ **Cloud Support**: Use the [Capgo Cloud](https://capgo.app/) to manage your app updates.
33
- - 📦 **Bundle Management**: Download, set, and delete bundles.
34
- - 📺 **Channel Support**: Set a channel for the app to manage different versions.
35
- - 🛟 **Rollback**: Reset the app to any bundle if an incompatible bundle has been set.
29
+ - ☁️ Cloud / Self hosted Support: Use our [Cloud](https://capgo.app/) to manage your app updates or yours.
30
+ - 📦 Bundle Management: Download, assign to channel, rollback.
31
+ - 📺 Channel Support: Use channels to manage different environements.
32
+ - 🎯 Set Channel to specific device to do QA or debug one user.
33
+ - 🔄 Auto Update: Automatically download and set the latest bundle for the app.
34
+ - 🛟 Rollback: Reset the app to last working bundle if an incompatible bundle has been set.
36
35
  - 🔁 **Delta Updates**: Make instant updates by only downloading changed files.
37
36
  - 🔒 **Security**: Encrypt and sign each updates with best in class security standards.
38
- - ⚔️ **Battle-Tested**: Used in more than 2000 projects.
37
+ - ⚔️ **Battle-Tested**: Used in more than 3000 projects.
38
+ - 📊 View your deployment statistics
39
+ - 🔋 Supports Android and iOS
40
+ - ⚡️ Capacitor 6/7 support
39
41
  - 🌐 **Open Source**: Licensed under the Mozilla Public License 2.0
40
42
  - 🌐 **Open Source Backend**: Self install [our backend](https://github.com/Cap-go/capgo) in your infra
41
43
 
44
+
42
45
  You have 3 ways possible :
43
46
  - Use [capgo.app](https://capgo.app) a full featured auto-update system in 5 min Setup, to manage version, update, revert and see stats.
44
47
  - Use your own server update with auto-update system
@@ -58,7 +58,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
58
58
  private static final String channelUrlDefault = "https://plugin.capgo.app/channel_self";
59
59
  private static final String CUSTOM_ID_PREF_KEY = "CapacitorUpdater.customId";
60
60
 
61
- private final String PLUGIN_VERSION = "7.18.2";
61
+ private final String PLUGIN_VERSION = "7.18.4";
62
62
  private static final String DELAY_CONDITION_PREFERENCES = "";
63
63
 
64
64
  private SharedPreferences.Editor editor;
@@ -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.18.2"
53
+ private let PLUGIN_VERSION: String = "7.18.4"
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"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-updater",
3
- "version": "7.18.2",
3
+ "version": "7.18.4",
4
4
  "license": "MPL-2.0",
5
5
  "description": "Live update for capacitor apps",
6
6
  "main": "dist/plugin.cjs.js",
File without changes