forked from simolus3/sqlite3.dart
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from powersync-ja/feat/update-upstream-sqlite
Update upstream sqlite package to 2.6.0.
- Loading branch information
Showing
138 changed files
with
4,122 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
...tter_libs/ios/Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage/Package.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// swift-tools-version: 5.9 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
// | ||
// Generated file. Do not edit. | ||
// | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "FlutterGeneratedPluginSwiftPackage", | ||
platforms: [ | ||
.iOS("12.0") | ||
], | ||
products: [ | ||
.library(name: "FlutterGeneratedPluginSwiftPackage", type: .static, targets: ["FlutterGeneratedPluginSwiftPackage"]) | ||
], | ||
dependencies: [ | ||
.package(name: "integration_test", path: "/Users/simon/fvm/versions/master/packages/integration_test/ios/integration_test"), | ||
.package(name: "sqlite3_flutter_libs", path: "/Users/simon/src/sqlite3.dart/sqlite3_flutter_libs/darwin/sqlite3_flutter_libs") | ||
], | ||
targets: [ | ||
.target( | ||
name: "FlutterGeneratedPluginSwiftPackage", | ||
dependencies: [ | ||
.product(name: "integration-test", package: "integration_test"), | ||
.product(name: "sqlite3-flutter-libs", package: "sqlite3_flutter_libs") | ||
] | ||
) | ||
] | ||
) |
3 changes: 3 additions & 0 deletions
3
...ckage/Sources/FlutterGeneratedPluginSwiftPackage/FlutterGeneratedPluginSwiftPackage.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// | ||
// Generated file. Do not edit. | ||
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...ter_libs/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"originHash" : "f753fb27fa26d31d71ae095b813ee3082cbd650203f170450c96e6158cc8e4cb", | ||
"pins" : [ | ||
{ | ||
"identity" : "csqlite", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/sbooth/CSQLite.git", | ||
"state" : { | ||
"revision" : "f9bc82fd757667a5d1819db4fbb073c97488eb85", | ||
"version" : "3.47.1" | ||
} | ||
} | ||
], | ||
"version" : 3 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...gration_tests/flutter_libs/macos/Runner.xcworkspace/xcshareddata/swiftpm/Package.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"originHash" : "f753fb27fa26d31d71ae095b813ee3082cbd650203f170450c96e6158cc8e4cb", | ||
"pins" : [ | ||
{ | ||
"identity" : "csqlite", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/sbooth/CSQLite.git", | ||
"state" : { | ||
"revision" : "f9bc82fd757667a5d1819db4fbb073c97488eb85", | ||
"version" : "3.47.1" | ||
} | ||
} | ||
], | ||
"version" : 3 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
import Cocoa | ||
import FlutterMacOS | ||
|
||
@NSApplicationMain | ||
@main | ||
class AppDelegate: FlutterAppDelegate { | ||
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { | ||
return true | ||
} | ||
|
||
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool { | ||
return true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Miscellaneous | ||
*.class | ||
*.log | ||
*.pyc | ||
*.swp | ||
.DS_Store | ||
.atom/ | ||
.build/ | ||
.buildlog/ | ||
.history | ||
.svn/ | ||
.swiftpm/ | ||
migrate_working_dir/ | ||
|
||
# IntelliJ related | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
|
||
# The .vscode folder contains launch configuration and tasks you configure in | ||
# VS Code which you may wish to be included in version control, so this line | ||
# is commented out by default. | ||
#.vscode/ | ||
|
||
# Flutter/Dart/Pub related | ||
**/doc/api/ | ||
**/ios/Flutter/.last_build_id | ||
.dart_tool/ | ||
.flutter-plugins | ||
.flutter-plugins-dependencies | ||
.pub-cache/ | ||
.pub/ | ||
/build/ | ||
|
||
# Symbolication related | ||
app.*.symbols | ||
|
||
# Obfuscation related | ||
app.*.map.json | ||
|
||
# Android Studio will place build artifacts here | ||
/android/app/debug | ||
/android/app/profile | ||
/android/app/release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# This file tracks properties of this Flutter project. | ||
# Used by Flutter tool to assess capabilities and perform upgrades etc. | ||
# | ||
# This file should be version controlled and should not be manually edited. | ||
|
||
version: | ||
revision: "03aeaf158a7bb4b6b51fe8730a673829d64a517c" | ||
channel: "master" | ||
|
||
project_type: app | ||
|
||
# Tracks metadata for the flutter migrate command | ||
migration: | ||
platforms: | ||
- platform: root | ||
create_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
base_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
- platform: android | ||
create_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
base_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
- platform: ios | ||
create_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
base_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
- platform: linux | ||
create_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
base_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
- platform: macos | ||
create_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
base_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
- platform: web | ||
create_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
base_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
- platform: windows | ||
create_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
base_revision: 03aeaf158a7bb4b6b51fe8730a673829d64a517c | ||
|
||
# User provided section | ||
|
||
# List of Local paths (relative to this file) that should be | ||
# ignored by the migrate tool. | ||
# | ||
# Files that are not part of the templates will be ignored by default. | ||
unmanaged_files: | ||
- 'lib/main.dart' | ||
- 'ios/Runner.xcodeproj/project.pbxproj' |
Oops, something went wrong.