Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bringing back abstracted file sharing into kDrive #1006

Merged
merged 26 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ec36542
chore: Bump Core / Core UI
adrien-coye Jul 19, 2023
c5cd3f4
refactor(FileImportHelper): WIP using new abstract file handling methods
adrien-coye Jul 19, 2023
210537d
fix(FileImportHelper): convert heic to jpg on the fly
adrien-coye Jul 20, 2023
ac093d2
fix: issues with coliding extensions
adrien-coye Jul 21, 2023
a73bc94
Merge branch 'master' into shareExtensionAbstractCode
adrien-coye Jul 21, 2023
ea1c3e0
chore: bump Core, some clean
adrien-coye Jul 26, 2023
b597551
refactor: removed Throttler type, using Combine instead
adrien-coye Jul 27, 2023
dbddd72
feat: initial import from app speed improvement on large collection o…
adrien-coye Jul 27, 2023
e464058
feat: initial preprocess on import from app speed improvement on larg…
adrien-coye Jul 27, 2023
f547919
chore: bump core
adrien-coye Jul 28, 2023
c2d16be
fix(UploadCountManager): Setup combine earlier to work as expected
adrien-coye Jul 28, 2023
d4de971
Merge branch 'master' into shareExtensionAbstractCode
adrien-coye Jul 28, 2023
c2be5a9
chore: bump core
adrien-coye Aug 3, 2023
7124cee
fix(PHAsset): use edit date instead of FullSizeRender when importing …
adrien-coye Aug 4, 2023
1510ca8
refactor(PHAsset): factorise code
adrien-coye Aug 4, 2023
3da0c08
refactor(PhotoLibraryUploader): split class for readability
adrien-coye Aug 4, 2023
0f98b8c
refactor(PhotoLibraryUploader): Shared asset name generation with PHA…
adrien-coye Aug 4, 2023
1948749
chore: cleanup
adrien-coye Aug 7, 2023
e96a0e4
fix(PhotoLibraryUploader+Scan): request photo from creation date _and…
adrien-coye Aug 7, 2023
d6f4496
chore: pre-merge
adrien-coye Aug 8, 2023
3399c1d
Merge branch 'master' into shareExtensionAbstractCode
adrien-coye Aug 8, 2023
751821e
chore: post-merge
adrien-coye Aug 8, 2023
193b726
Update kDrive/Utils/UploadCountManager.swift
adrien-coye Aug 8, 2023
3af46c3
Merge branch 'master' into shareExtensionAbstractCode
adrien-coye Aug 8, 2023
3eba111
chore: Bump ios-core
adrien-coye Aug 10, 2023
4624ab8
fix: update to new Endpoint API
adrien-coye Aug 10, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,17 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/Infomaniak/ios-core",
"state" : {
"revision" : "3e858f4f769b9fae54581e690d5cae92bd52d2c1",
"version" : "4.1.4"
"revision" : "eb5d1e406126d63bbc0c961f75159c25ead0d25d",
"version" : "4.1.8"
}
},
{
"identity" : "ios-core-ui",
"kind" : "remoteSourceControl",
"location" : "https://github.com/Infomaniak/ios-core-ui",
"state" : {
"revision" : "57104919b320d5b0d1bcb4d92a3e8117e98dabb6",
"version" : "2.5.0"
"revision" : "03e8c3562ff847104e4a92884d02a3650c8a12ac",
"version" : "2.5.1"
}
},
{
Expand Down
4 changes: 2 additions & 2 deletions Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import ProjectDescriptionHelpers
let project = Project(name: "kDrive",
packages: [
.package(url: "https://github.com/Alamofire/Alamofire", .upToNextMajor(from: "5.2.2")),
.package(url: "https://github.com/Infomaniak/ios-core", .upToNextMajor(from: "4.1.4")),
.package(url: "https://github.com/Infomaniak/ios-core-ui", .upToNextMajor(from: "2.5.0")),
.package(url: "https://github.com/Infomaniak/ios-core", .upToNextMajor(from: "4.1.8")),
.package(url: "https://github.com/Infomaniak/ios-core-ui", .upToNextMajor(from: "2.5.1")),
.package(url: "https://github.com/Infomaniak/ios-login", .upToNextMajor(from: "4.0.0")),
.package(url: "https://github.com/Infomaniak/ios-dependency-injection", .upToNextMajor(from: "1.1.9")),
.package(url: "https://github.com/realm/realm-swift", .upToNextMajor(from: "10.39.0")),
Expand Down
Loading
Loading