Skip to content

Commit bec3537

Browse files
Adds NotoSerif to the demo project.
1 parent f487db8 commit bec3537

File tree

6 files changed

+40
-1
lines changed

6 files changed

+40
-1
lines changed

ios/gutenberg.xcodeproj/project.pbxproj

+33
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@
4545
F151983C2100DC3D000F6E97 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F15198392100DC3D000F6E97 /* AppDelegate.swift */; };
4646
F151983D2100DC3D000F6E97 /* MediaProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F151983A2100DC3D000F6E97 /* MediaProvider.swift */; };
4747
F19CFDA821021EB100EAB240 /* Aztec.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = F1289ECA2100E4320091E81D /* Aztec.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
48+
F1EE6F7821E7F0A500241744 /* NotoSerif-BoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F1EE6F7421E7F0A500241744 /* NotoSerif-BoldItalic.ttf */; };
49+
F1EE6F7921E7F0A500241744 /* NotoSerif-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F1EE6F7521E7F0A500241744 /* NotoSerif-Regular.ttf */; };
50+
F1EE6F7A21E7F0A500241744 /* NotoSerif-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F1EE6F7621E7F0A500241744 /* NotoSerif-Italic.ttf */; };
51+
F1EE6F7B21E7F0A500241744 /* NotoSerif-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F1EE6F7721E7F0A500241744 /* NotoSerif-Bold.ttf */; };
4852
/* End PBXBuildFile section */
4953

5054
/* Begin PBXContainerItemProxy section */
@@ -423,6 +427,10 @@
423427
F15198372100DC3C000F6E97 /* gutenberg-Bridging-Header.h */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = "gutenberg-Bridging-Header.h"; sourceTree = "<group>"; tabWidth = 1; };
424428
F15198392100DC3D000F6E97 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = gutenberg/AppDelegate.swift; sourceTree = "<group>"; tabWidth = 1; };
425429
F151983A2100DC3D000F6E97 /* MediaProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.swift; name = MediaProvider.swift; path = gutenberg/MediaProvider.swift; sourceTree = "<group>"; tabWidth = 1; usesTabs = 0; };
430+
F1EE6F7421E7F0A500241744 /* NotoSerif-BoldItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "NotoSerif-BoldItalic.ttf"; sourceTree = "<group>"; };
431+
F1EE6F7521E7F0A500241744 /* NotoSerif-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "NotoSerif-Regular.ttf"; sourceTree = "<group>"; };
432+
F1EE6F7621E7F0A500241744 /* NotoSerif-Italic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "NotoSerif-Italic.ttf"; sourceTree = "<group>"; };
433+
F1EE6F7721E7F0A500241744 /* NotoSerif-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "NotoSerif-Bold.ttf"; sourceTree = "<group>"; };
426434
F619623252704B46A619C33C /* RNTAztecView.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNTAztecView.xcodeproj; path = "../react-native-aztec/ios/RNTAztecView.xcodeproj"; sourceTree = "<group>"; };
427435
/* End PBXFileReference section */
428436

@@ -678,6 +686,7 @@
678686
isa = PBXGroup;
679687
children = (
680688
13B07FAE1A68108700A75B9A /* gutenberg */,
689+
F1EE6F7221E7F0A500241744 /* resources */,
681690
832341AE1AAA6A7D00B99B32 /* Libraries */,
682691
00E356EF1AD99517003FC87E /* gutenbergTests */,
683692
83CBBA001A601CBA00E9B192 /* Products */,
@@ -744,6 +753,26 @@
744753
name = Products;
745754
sourceTree = "<group>";
746755
};
756+
F1EE6F7221E7F0A500241744 /* resources */ = {
757+
isa = PBXGroup;
758+
children = (
759+
F1EE6F7321E7F0A500241744 /* fonts */,
760+
);
761+
name = resources;
762+
path = ../resources;
763+
sourceTree = "<group>";
764+
};
765+
F1EE6F7321E7F0A500241744 /* fonts */ = {
766+
isa = PBXGroup;
767+
children = (
768+
F1EE6F7421E7F0A500241744 /* NotoSerif-BoldItalic.ttf */,
769+
F1EE6F7521E7F0A500241744 /* NotoSerif-Regular.ttf */,
770+
F1EE6F7621E7F0A500241744 /* NotoSerif-Italic.ttf */,
771+
F1EE6F7721E7F0A500241744 /* NotoSerif-Bold.ttf */,
772+
);
773+
path = fonts;
774+
sourceTree = "<group>";
775+
};
747776
FFEDF6EF21241BDF007FCC6D /* Products */ = {
748777
isa = PBXGroup;
749778
children = (
@@ -1266,7 +1295,11 @@
12661295
buildActionMask = 2147483647;
12671296
files = (
12681297
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
1298+
F1EE6F7B21E7F0A500241744 /* NotoSerif-Bold.ttf in Resources */,
1299+
F1EE6F7921E7F0A500241744 /* NotoSerif-Regular.ttf in Resources */,
1300+
F1EE6F7A21E7F0A500241744 /* NotoSerif-Italic.ttf in Resources */,
12691301
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
1302+
F1EE6F7821E7F0A500241744 /* NotoSerif-BoldItalic.ttf in Resources */,
12701303
);
12711304
runOnlyForDeploymentPostprocessing = 0;
12721305
};

ios/gutenberg/Info.plist

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5+
<key>UIAppFonts</key>
6+
<array>
7+
<string>NotoSerif-BoldItalic.ttf</string>
8+
<string>NotoSerif-Regular.ttf</string>
9+
<string>NotoSerif-Italic.ttf</string>
10+
<string>NotoSerif-Bold.ttf</string>
11+
</array>
512
<key>CFBundleDevelopmentRegion</key>
613
<string>en</string>
714
<key>CFBundleDisplayName</key>
@@ -41,7 +48,6 @@
4148
<key>NSLocationWhenInUseUsageDescription</key>
4249
<string></string>
4350
<key>NSAppTransportSecurity</key>
44-
<!--See http://ste.vn/2015/06/10/configuring-app-transport-security-ios-9-osx-10-11/ -->
4551
<dict>
4652
<key>NSExceptionDomains</key>
4753
<dict>

resources/fonts/NotoSerif-Bold.ttf

243 KB
Binary file not shown.
258 KB
Binary file not shown.

resources/fonts/NotoSerif-Italic.ttf

245 KB
Binary file not shown.

resources/fonts/NotoSerif-Regular.ttf

242 KB
Binary file not shown.

0 commit comments

Comments
 (0)