@capgo/capacitor-updater 4.61.4 → 4.61.5
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 -2
- package/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java +1 -1
- package/ios/Plugin/CapacitorUpdater.swift +1 -1
- package/ios/Plugin/CapacitorUpdaterPlugin.swift +1 -1
- package/package.json +1 -1
|
@@ -1015,8 +1015,7 @@ public class CapacitorUpdater {
|
|
|
1015
1015
|
result = new BundleInfo(trueId, null, BundleStatus.PENDING, "", "");
|
|
1016
1016
|
}
|
|
1017
1017
|
}
|
|
1018
|
-
|
|
1019
|
-
Log.d(TAG, "Returning info [" + trueId + "] " + result);
|
|
1018
|
+
// Log.d(TAG, "Returning info [" + trueId + "] " + result);
|
|
1020
1019
|
return result;
|
|
1021
1020
|
}
|
|
1022
1021
|
|
|
@@ -55,7 +55,7 @@ public class CapacitorUpdaterPlugin
|
|
|
55
55
|
private static final String channelUrlDefault =
|
|
56
56
|
"https://api.capgo.app/channel_self";
|
|
57
57
|
|
|
58
|
-
private final String PLUGIN_VERSION = "4.61.
|
|
58
|
+
private final String PLUGIN_VERSION = "4.61.5";
|
|
59
59
|
private static final String DELAY_CONDITION_PREFERENCES = "";
|
|
60
60
|
|
|
61
61
|
private SharedPreferences.Editor editor;
|
|
@@ -755,7 +755,7 @@ extension CustomError: LocalizedError {
|
|
|
755
755
|
result = BundleInfo(id: trueId, version: "", status: BundleStatus.PENDING, checksum: "")
|
|
756
756
|
}
|
|
757
757
|
}
|
|
758
|
-
print("\(self.TAG) Returning info bundle [\(result.toString())]")
|
|
758
|
+
// print("\(self.TAG) Returning info bundle [\(result.toString())]")
|
|
759
759
|
return result
|
|
760
760
|
}
|
|
761
761
|
|
|
@@ -15,7 +15,7 @@ import Version
|
|
|
15
15
|
@objc(CapacitorUpdaterPlugin)
|
|
16
16
|
public class CapacitorUpdaterPlugin: CAPPlugin {
|
|
17
17
|
private var implementation = CapacitorUpdater()
|
|
18
|
-
private let PLUGIN_VERSION: String = "4.61.
|
|
18
|
+
private let PLUGIN_VERSION: String = "4.61.5"
|
|
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"
|