Skip to content

Commit f9cb7d3

Browse files
committed
Image Optimisation method implemented, Deprecated includeSchema from query, Added includeContentType in Query
1 parent b92b2c3 commit f9cb7d3

File tree

7 files changed

+20
-8
lines changed

7 files changed

+20
-8
lines changed

ContentStackIO_Internal/CSIOConstants.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ FOUNDATION_EXPORT NSString *const kCSIO_DontSelect;
5353
FOUNDATION_EXPORT NSString *const kCSIO_Regex;
5454
FOUNDATION_EXPORT NSString *const kCSIO_Options;
5555
FOUNDATION_EXPORT NSString *const kCSIO_IncludeSchema;
56+
FOUNDATION_EXPORT NSString *const kCSIO_IncludeContentType;
5657
FOUNDATION_EXPORT NSString *const kCSIO_IncludeCount;
5758
FOUNDATION_EXPORT NSString *const kCSIO_IncludeUnpublished;
5859
FOUNDATION_EXPORT NSString *const kCSIO_BeforeUID;

ContentStackIO_Internal/CSIOConstants.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ @implementation CSIOConstants
5757

5858
//include
5959
NSString *const kCSIO_IncludeSchema = @"include_schema";
60+
NSString *const kCSIO_IncludeContentType = @"include_content_type";
6061
NSString *const kCSIO_IncludeCount = @"include_count";
6162
NSString *const kCSIO_IncludeUnpublished = @"include_unpublished";
6263
//

ContentStackIO_Internal/CSIOCoreHTTPNetworking.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#import "CSIOURLCache.h"
1616
#import "NSObject+Extensions.h"
1717

18-
NSString *const sdkVersion = @"3.1.1";
18+
NSString *const sdkVersion = @"3.2.0";
1919

2020
@interface CSIOCoreHTTPNetworking (){
2121
id networkChangeObserver;

ContentStackIO_Internal/Common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ static inline BOOL isEmpty(id thing) {
8787
&& [(NSData *)thing length] == 0)
8888
|| ([thing respondsToSelector:@selector(count)]
8989
&& [(NSArray *)thing count] == 0);
90-
}
90+
}

Docs/DocGenerationScript.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111

1212
#appledoc Xcode script
1313
# Start constants
14-
company="Built.io Contentstack";
14+
company="Contentstack";
1515
companyForFeed="Contentstack";
1616
companyID="com.builtio";
17-
companyURL="http://contentstack.io";
17+
companyURL="http://contentstack.com";
1818
target="iphoneos";
1919
#target="macosx";
2020
#outputPath ="./../../BuiltIO-Xcode-Generated-Docs/helpdocs";
@@ -25,7 +25,7 @@ target="iphoneos";
2525
/usr/local/bin/appledoc \
2626
--project-name "Built.io Contentstack" \
2727
--project-company "Built.io" \
28-
--project-version "3.1.1" \
28+
--project-version "3.2.0" \
2929
--company-id "${companyID}" \
3030
--docset-bundle-id "${companyID}.${companyForFeed}" \
3131
--docset-bundle-name "${companyForFeed}" \
@@ -45,4 +45,4 @@ target="iphoneos";
4545
--no-warn-invalid-crossref \
4646
--index-desc "${PROJECT_DIR}/Docs/overview.md" \
4747
--exit-threshold 2 \
48-
./Build/Products/Release-universal/Contentstack.framework/Headers
48+
./DerivedData/ContentStackSDK/Build/Products/Release-universal/Contentstack.framework/Headers

Docs/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Overview
22

3-
[Built.io Contentstack](https://www.built.io/products/contentstack/overview) is a content management system that facilitates the process of publication by separating the content from site-related programming and design.
3+
[Contentstack](https://www.contentstack.com/) is a content management system that facilitates the process of publication by separating the content from site-related programming and design.
44

55
#### Installation
66
#####**[CocoaPods (Recommended)](https://cocoapods.org)**

contentstack.xcodeproj/project.pbxproj

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@
578578
isa = PBXProject;
579579
attributes = {
580580
LastUpgradeCheck = 0820;
581-
ORGANIZATIONNAME = Built.io;
581+
ORGANIZATIONNAME = Contentstack;
582582
TargetAttributes = {
583583
230B38BF1C16E98B00444A14 = {
584584
CreatedOnToolsVersion = 7.1;
@@ -809,6 +809,7 @@
809809
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
810810
MACH_O_TYPE = staticlib;
811811
ONLY_ACTIVE_ARCH = YES;
812+
OTHER_CFLAGS = "";
812813
OTHER_LDFLAGS = "";
813814
PRODUCT_BUNDLE_IDENTIFIER = com.builtio.Contentstack;
814815
SKIP_INSTALL = YES;
@@ -835,6 +836,7 @@
835836
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
836837
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
837838
MACH_O_TYPE = staticlib;
839+
OTHER_CFLAGS = "";
838840
OTHER_LDFLAGS = "";
839841
PRODUCT_BUNDLE_IDENTIFIER = com.builtio.Contentstack;
840842
SKIP_INSTALL = YES;
@@ -876,6 +878,7 @@
876878
isa = XCBuildConfiguration;
877879
buildSettings = {
878880
ALWAYS_SEARCH_USER_PATHS = NO;
881+
BITCODE_GENERATION_MODE = marker;
879882
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
880883
CLANG_CXX_LIBRARY = "libc++";
881884
CLANG_ENABLE_MODULES = NO;
@@ -914,6 +917,7 @@
914917
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
915918
MTL_ENABLE_DEBUG_INFO = YES;
916919
ONLY_ACTIVE_ARCH = NO;
920+
OTHER_CFLAGS = "-fembed-bitcode-marker";
917921
OTHER_LDFLAGS = "-fembed-bitcode";
918922
PRODUCT_MODULE_NAME = Contentstack;
919923
PRODUCT_NAME = Contentstack;
@@ -929,6 +933,7 @@
929933
isa = XCBuildConfiguration;
930934
buildSettings = {
931935
ALWAYS_SEARCH_USER_PATHS = NO;
936+
BITCODE_GENERATION_MODE = bitcode;
932937
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
933938
CLANG_CXX_LIBRARY = "libc++";
934939
CLANG_ENABLE_MODULES = NO;
@@ -961,6 +966,7 @@
961966
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
962967
MTL_ENABLE_DEBUG_INFO = NO;
963968
ONLY_ACTIVE_ARCH = NO;
969+
OTHER_CFLAGS = "-fembed-bitcode";
964970
OTHER_LDFLAGS = "-fembed-bitcode";
965971
PRODUCT_MODULE_NAME = Contentstack;
966972
PRODUCT_NAME = Contentstack;
@@ -1015,13 +1021,17 @@
10151021
23A8E71D1B70C872002F13C9 /* Debug */ = {
10161022
isa = XCBuildConfiguration;
10171023
buildSettings = {
1024+
OTHER_CFLAGS = "";
1025+
OTHER_LDFLAGS = "";
10181026
PRODUCT_NAME = "$(TARGET_NAME)";
10191027
};
10201028
name = Debug;
10211029
};
10221030
23A8E71E1B70C872002F13C9 /* Release */ = {
10231031
isa = XCBuildConfiguration;
10241032
buildSettings = {
1033+
OTHER_CFLAGS = "";
1034+
OTHER_LDFLAGS = "";
10251035
PRODUCT_NAME = "$(TARGET_NAME)";
10261036
};
10271037
name = Release;

0 commit comments

Comments
 (0)