@capgo/capacitor-updater 3.0.4 → 3.0.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.
|
@@ -47,7 +47,7 @@ public class CapacitorUpdater {
|
|
|
47
47
|
public String statsUrl = "";
|
|
48
48
|
public String appId = "";
|
|
49
49
|
public String deviceID = "";
|
|
50
|
-
private String pluginVersion = "3.0.
|
|
50
|
+
private String pluginVersion = "3.0.5";
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
private FilenameFilter filter = new FilenameFilter() {
|
|
@@ -37,7 +37,7 @@ extension Bundle {
|
|
|
37
37
|
public var appId = ""
|
|
38
38
|
public var deviceID = UIDevice.current.identifierForVendor?.uuidString ?? ""
|
|
39
39
|
public var notifyDownload: (Int) -> Void = { _ in }
|
|
40
|
-
public var pluginVersion = "3.0.
|
|
40
|
+
public var pluginVersion = "3.0.5"
|
|
41
41
|
private var versionBuild = Bundle.main.releaseVersionNumber ?? ""
|
|
42
42
|
private var lastPathHot = ""
|
|
43
43
|
private var lastPathPersist = ""
|
package/package.json
CHANGED
package/CapacitorUpdater.podspec
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
require 'json'
|
|
2
|
-
|
|
3
|
-
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
4
|
-
|
|
5
|
-
Pod::Spec.new do |s|
|
|
6
|
-
s.name = 'CapacitorUpdater'
|
|
7
|
-
s.version = package['version']
|
|
8
|
-
s.summary = package['description']
|
|
9
|
-
s.license = package['license']
|
|
10
|
-
s.homepage = package['repository']['url']
|
|
11
|
-
s.author = package['author']
|
|
12
|
-
s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
|
|
13
|
-
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
|
|
14
|
-
s.ios.deployment_target = '12.0'
|
|
15
|
-
s.dependency 'Capacitor'
|
|
16
|
-
s.dependency 'SSZipArchive'
|
|
17
|
-
s.dependency 'Alamofire'
|
|
18
|
-
s.dependency 'Version'
|
|
19
|
-
s.swift_version = '5.1'
|
|
20
|
-
end
|