Skip to content

Commit 42af09b

Browse files
authored
2.3 (#150)
1 parent 8ba2bff commit 42af09b

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

ClojureScript/replete/deps.edn

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
{:deps {org.clojure/clojurescript {:mvn/version "1.10.520"}
1+
{:deps {org.clojure/clojurescript {:mvn/version "1.10.597"}
22
github-replete-repl/replete-shared {:git/url "https://github.com/replete-repl/replete-shared"
3-
:sha "eda33a0cb206b601acf9a2a0a0202e8b139081b7"}}}
3+
:sha "d1b30441e34db96f25bd718e9ee1bd15ae54eac4"}}}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Replete iOS
1+
# Replete REPL iOS
22

33
ClojureScript REPL iOS app.
44

@@ -30,6 +30,6 @@ Happy to take PRs!
3030

3131
# License
3232

33-
Copyright © 2015–2019 Mike Fikes, Roman Liutikov, and Contributors
33+
Copyright © 2015–2020 Mike Fikes, Roman Liutikov, and Contributors
3434

3535
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

Replete.xcodeproj/project.pbxproj

+9-7
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
/* Begin PBXFileReference section */
4949
2B729A836860CF6C7C9AEA5A /* Pods-Replete.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Replete.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Replete/Pods-Replete.debug.xcconfig"; sourceTree = "<group>"; };
5050
41F3B6043256B063EF1F8481 /* Pods-Replete.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Replete.release.xcconfig"; path = "Pods/Target Support Files/Pods-Replete/Pods-Replete.release.xcconfig"; sourceTree = "<group>"; };
51-
ED06DC211B3F62E800100331 /* Replete.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Replete.app; sourceTree = BUILT_PRODUCTS_DIR; };
51+
ED06DC211B3F62E800100331 /* Replete REPL.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Replete REPL.app"; sourceTree = BUILT_PRODUCTS_DIR; };
5252
ED06DC251B3F62E800100331 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5353
ED06DC261B3F62E800100331 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
5454
ED06DC281B3F62E800100331 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
@@ -156,7 +156,7 @@
156156
ED06DC221B3F62E800100331 /* Products */ = {
157157
isa = PBXGroup;
158158
children = (
159-
ED06DC211B3F62E800100331 /* Replete.app */,
159+
ED06DC211B3F62E800100331 /* Replete REPL.app */,
160160
ED06DC3A1B3F62E800100331 /* RepleteTests.xctest */,
161161
);
162162
name = Products;
@@ -241,7 +241,7 @@
241241
);
242242
name = Replete;
243243
productName = Replete;
244-
productReference = ED06DC211B3F62E800100331 /* Replete.app */;
244+
productReference = ED06DC211B3F62E800100331 /* Replete REPL.app */;
245245
productType = "com.apple.product-type.application";
246246
};
247247
ED06DC391B3F62E800100331 /* RepleteTests */ = {
@@ -528,8 +528,9 @@
528528
"$(PROJECT_DIR)/Replete/openssl/iOS/lib",
529529
"$(PROJECT_DIR)/Replete/nghttp2/lib",
530530
);
531-
PRODUCT_BUNDLE_IDENTIFIER = "com.fikesfarm.$(PRODUCT_NAME:rfc1034identifier)";
532-
PRODUCT_NAME = "$(TARGET_NAME)";
531+
MARKETING_VERSION = 2.3;
532+
PRODUCT_BUNDLE_IDENTIFIER = com.fikesfarm.Replete;
533+
PRODUCT_NAME = "Replete REPL";
533534
SWIFT_OBJC_BRIDGING_HEADER = "Replete/Replete-Bridging-Header.h";
534535
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
535536
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
@@ -555,8 +556,9 @@
555556
"$(PROJECT_DIR)/Replete/openssl/iOS/lib",
556557
"$(PROJECT_DIR)/Replete/nghttp2/lib",
557558
);
558-
PRODUCT_BUNDLE_IDENTIFIER = "com.fikesfarm.$(PRODUCT_NAME:rfc1034identifier)";
559-
PRODUCT_NAME = "$(TARGET_NAME)";
559+
MARKETING_VERSION = 2.3;
560+
PRODUCT_BUNDLE_IDENTIFIER = com.fikesfarm.Replete;
561+
PRODUCT_NAME = "Replete REPL";
560562
SWIFT_OBJC_BRIDGING_HEADER = "Replete/Replete-Bridging-Header.h";
561563
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
562564
SWIFT_VERSION = 4.0;

Replete/Info.plist

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<dict>
55
<key>CFBundleDevelopmentRegion</key>
66
<string>en</string>
7+
<key>CFBundleDisplayName</key>
8+
<string>$(PRODUCT_NAME)</string>
79
<key>CFBundleDocumentTypes</key>
810
<array>
911
<dict>
@@ -29,12 +31,10 @@
2931
<string>6.0</string>
3032
<key>CFBundleName</key>
3133
<string>$(PRODUCT_NAME)</string>
32-
<key>CFBundleDisplayName</key>
33-
<string>$(PRODUCT_NAME)</string>
3434
<key>CFBundlePackageType</key>
3535
<string>APPL</string>
3636
<key>CFBundleShortVersionString</key>
37-
<string>2.2</string>
37+
<string>$(MARKETING_VERSION)</string>
3838
<key>CFBundleSignature</key>
3939
<string>????</string>
4040
<key>CFBundleURLTypes</key>

0 commit comments

Comments
 (0)