Skip to content

Commit

Permalink
fix issue#533
Browse files Browse the repository at this point in the history
  • Loading branch information
jepiqueau committed Apr 9, 2024
1 parent 48e0c21 commit 4667350
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 24 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 5.7.2 (2024-04-09)

### Chore

- Update to @capacitor/core@5.7.2
- Update to @capacitor/ios@5.7.2
- Update to @capacitor/android@5.7.2
- Update to @capacitor/cli@5.7.2

### Bug Fixes

- Fix ionic7-angular-sqlite-app tutorial fails on v5.7.1 issue#533

# 5.7.1 (2024-04-03)

### Chore
Expand Down
Binary file modified android/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
3 changes: 1 addition & 2 deletions ios/Plugin/Utils/UtilsSQLStatement.swift
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ class UtilsSQLStatement {
return foreignKeyInfo
}
// swiftlint:enable type_body_length
// swiftlint:disable function_body_length

// MARK: - extractColumnNames

Expand Down Expand Up @@ -443,7 +442,7 @@ class UtilsSQLStatement {
let indexSemicolon = input.firstIndex(of: ";")
let indexDoubleDash = input.range(of: "--")
let indexCommentStart = input.range(of: "/*")

// Find the minimum index among them
var minIndex = input.endIndex
if let index = indexSemicolon {
Expand Down
32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@
"prepublishOnly": "npm run build && npm run build-electron && npm run docgen"
},
"devDependencies": {
"@capacitor/android": "^5.7.1",
"@capacitor/cli": "^5.7.1",
"@capacitor/core": "^5.7.1",
"@capacitor/android": "^5.7.2",
"@capacitor/cli": "^5.7.2",
"@capacitor/core": "^5.7.2",
"@capacitor/docgen": "^0.0.17",
"@capacitor/ios": "^5.7.1",
"@capacitor/ios": "^5.7.2",
"@ionic/eslint-config": "^0.3.0",
"@ionic/prettier-config": "^1.0.1",
"@ionic/swiftlint-config": "^1.1.2",
Expand Down
3 changes: 1 addition & 2 deletions src/web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class CapacitorSQLiteWeb
private isWebStoreOpen = false;

async initWebStore(): Promise<void> {
customElements.whenDefined('jeep-sqlite').then(async () => {
await customElements.whenDefined('jeep-sqlite')

this.jeepSqliteElement = document.querySelector('jeep-sqlite');
this.ensureJeepSqliteIsAvailable();
Expand Down Expand Up @@ -86,7 +86,6 @@ export class CapacitorSQLiteWeb
}

return;
});
}

async saveToStore(options: capSQLiteOptions): Promise<void> {
Expand Down

0 comments on commit 4667350

Please sign in to comment.