Skip to content

Commit 139eca7

Browse files
authored
feat: Remove ParseUI (#1783)
BREAKING CHANGE: This release removes `ParseUI`.
1 parent ef9b00d commit 139eca7

File tree

163 files changed

+0
-14933
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+0
-14933
lines changed

.github/workflows/ci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
script:
2121
- test:ios
2222
- test:macos
23-
- test:parseui:all
2423
- test:parse_live_query:all
2524
- build:starters
2625
- xcode15 # runs build:starters on XCode 15

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ docs/
3737

3838
## AppCode
3939
.idea/
40-
ParseUI/Vendor
4140

4241
# VSC
4342
.project

Package.swift

-12
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ let package = Package(
1313
],
1414
products: [
1515
.library(name: "ParseObjC", targets: ["ParseCore"]),
16-
.library(name: "ParseUI", targets: ["ParseUI"]),
1716
.library(name: "ParseLiveQuery", targets: ["ParseLiveQuery"])
1817
],
1918
dependencies: [
@@ -32,17 +31,6 @@ let package = Package(
3231
publicHeadersPath: "Source",
3332
cSettings: [.headerSearchPath("Internal/**")]
3433
),
35-
.target(
36-
name: "ParseUI",
37-
dependencies: [
38-
"ParseCore"
39-
],
40-
path: "ParseUI/ParseUI",
41-
exclude: ["Resources/Info-iOS.plist"],
42-
resources: [.process("Resources")],
43-
publicHeadersPath: "Source",
44-
cSettings: [.headerSearchPath("Internal/**")]
45-
),
4634
.target(
4735
name: "ParseLiveQuery",
4836
dependencies: [

Parse.xcworkspace/contents.xcworkspacedata

-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ParseStarterProject/iOS/ParseStarterProject-Swift/ParseStarterProject/AppDelegate.swift

-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ import UserNotifications
1212

1313
import ParseCore
1414

15-
// If you want to use any of the UI components, uncomment this line
16-
// import ParseUI
17-
1815
@UIApplicationMain
1916
class AppDelegate: UIResponder, UIApplicationDelegate {
2017

ParseStarterProject/iOS/ParseStarterProject/ParseStarterProject/ParseStarterProjectAppDelegate.m

-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99

1010
@import ParseCore;
1111

12-
// If you want to use any of the UI components, uncomment this line
13-
// #import <ParseUI/ParseUI.h>
14-
1512
#import "ParseStarterProjectAppDelegate.h"
1613
#import "ParseStarterProjectViewController.h"
1714

ParseStarterProject/watchOS/ParseStarterProject-Swift/ParseStarterProject/AppDelegate.swift

-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ import UIKit
1111

1212
import ParseCore
1313

14-
// If you want to use any of the UI components, uncomment this line
15-
// import ParseUI
16-
1714
@UIApplicationMain
1815
class AppDelegate: UIResponder, UIApplicationDelegate {
1916

ParseUI/.gitignore

-1
This file was deleted.

ParseUI/Configurations/ParseUI-iOS-Dynamic.xcconfig

-16
This file was deleted.

ParseUI/Configurations/ParseUI-iOS.xcconfig

-16
This file was deleted.

ParseUI/Configurations/Shared

-1
This file was deleted.

ParseUI/ParseUI.xcodeproj/project.pbxproj

-2,111
This file was deleted.

ParseUI/ParseUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata

-7
This file was deleted.

ParseUI/ParseUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

-8
This file was deleted.

ParseUI/ParseUI.xcodeproj/xcshareddata/xcschemes/ParseUI-Dynamic.xcscheme

-76
This file was deleted.

ParseUI/ParseUI.xcodeproj/xcshareddata/xcschemes/ParseUI.xcscheme

-104
This file was deleted.

0 commit comments

Comments
 (0)