Skip to content

Commit

Permalink
Merge branch 'main' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Mar 22, 2024
2 parents 2c24c18 + 5f76e85 commit c953b11
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 12 deletions.
12 changes: 4 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,14 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [5.7.15-alpha.1](https://github.com/Cap-go/capacitor-updater/compare/5.7.15-alpha.0...5.7.15-alpha.1) (2024-03-19)
### [5.7.16](https://github.com/Cap-go/capacitor-updater/compare/5.7.15...5.7.16) (2024-03-20)

### [5.7.15](https://github.com/Cap-go/capacitor-updater/compare/5.7.14...5.7.15) (2024-03-20)

### Bug Fixes

* add log for periodcheck ([3a61d2a](https://github.com/Cap-go/capacitor-updater/commit/3a61d2ad2d3b50411d67026bd3c1ed4f5130d226))

### [5.7.15-alpha.0](https://github.com/Cap-go/capacitor-updater/compare/5.7.14...5.7.15-alpha.0) (2024-03-19)

### [5.7.14-alpha.0](https://github.com/Cap-go/capacitor-updater/compare/5.7.13...5.7.14-alpha.0) (2024-03-19)
### Bug Fixes

### [5.7.10-alpha.0](https://github.com/Cap-go/capacitor-updater/compare/5.7.10...5.7.10-alpha.0) (2024-03-19)
* put back race condition prevention ([5751a83](https://github.com/Cap-go/capacitor-updater/commit/5751a8331a3956aefa41a44a4685113cf06d1cab))

### [5.7.14](https://github.com/Cap-go/capacitor-updater/compare/5.7.13...5.7.14) (2024-03-19)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
private static final String channelUrlDefault =
"https://api.capgo.app/channel_self";

private final String PLUGIN_VERSION = "5.7.15-alpha.1";
private final String PLUGIN_VERSION = "5.7.16";
private static final String DELAY_CONDITION_PREFERENCES = "";

private SharedPreferences.Editor editor;
Expand Down Expand Up @@ -864,7 +864,7 @@ public void run() {
}
}
},
0,
this.periodCheckDelay,
this.periodCheckDelay
);
}
Expand Down
2 changes: 1 addition & 1 deletion ios/Plugin/CapacitorUpdaterPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import Version
@objc(CapacitorUpdaterPlugin)
public class CapacitorUpdaterPlugin: CAPPlugin {
public var implementation = CapacitorUpdater()
private let PLUGIN_VERSION: String = "5.7.15-alpha.1"
private let PLUGIN_VERSION: String = "5.7.16"
static let updateUrlDefault = "https://api.capgo.app/updates"
static let statsUrlDefault = "https://api.capgo.app/stats"
static let channelUrlDefault = "https://api.capgo.app/channel_self"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@capgo/capacitor-updater",
"version": "5.7.15-alpha.1",
"version": "5.7.16",
"packageManager": "pnpm@8.15.4",
"license": "MPL-2.0",
"description": "Live update for capacitor apps",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"allowUnreachableCode": false,
"declaration": true,
"esModuleInterop": true,
"inlineSources": true,
"lib": ["dom", "es2017"],
"module": "esnext",
"moduleResolution": "node",
Expand Down

0 comments on commit c953b11

Please sign in to comment.