diff --git a/modules/Sources/Generated/Fonts+Generated.swift b/modules/Sources/Generated/Fonts+Generated.swift index 0dee728..3a37047 100644 --- a/modules/Sources/Generated/Fonts+Generated.swift +++ b/modules/Sources/Generated/Fonts+Generated.swift @@ -19,6 +19,27 @@ public typealias SystemFont = FontConvertible.SystemFont // swiftlint:disable identifier_name line_length type_body_length public enum FontFamily { + public enum Archivo { + public static let black = FontConvertible(name: "Archivo-Black", family: "Archivo", path: "Archivo-Black.ttf") + public static let blackItalic = FontConvertible(name: "Archivo-BlackItalic", family: "Archivo", path: "Archivo-BlackItalic.ttf") + public static let bold = FontConvertible(name: "Archivo-Bold", family: "Archivo", path: "Archivo-Bold.ttf") + public static let boldItalic = FontConvertible(name: "Archivo-BoldItalic", family: "Archivo", path: "Archivo-BoldItalic.ttf") + public static let extraBold = FontConvertible(name: "Archivo-ExtraBold", family: "Archivo", path: "Archivo-ExtraBold.ttf") + public static let extraBoldItalic = FontConvertible(name: "Archivo-ExtraBoldItalic", family: "Archivo", path: "Archivo-ExtraBoldItalic.ttf") + public static let extraLight = FontConvertible(name: "Archivo-ExtraLight", family: "Archivo", path: "Archivo-ExtraLight.ttf") + public static let extraLightItalic = FontConvertible(name: "Archivo-ExtraLightItalic", family: "Archivo", path: "Archivo-ExtraLightItalic.ttf") + public static let italic = FontConvertible(name: "Archivo-Italic", family: "Archivo", path: "Archivo-Italic.ttf") + public static let light = FontConvertible(name: "Archivo-Light", family: "Archivo", path: "Archivo-Light.ttf") + public static let lightItalic = FontConvertible(name: "Archivo-LightItalic", family: "Archivo", path: "Archivo-LightItalic.ttf") + public static let medium = FontConvertible(name: "Archivo-Medium", family: "Archivo", path: "Archivo-Medium.ttf") + public static let mediumItalic = FontConvertible(name: "Archivo-MediumItalic", family: "Archivo", path: "Archivo-MediumItalic.ttf") + public static let regular = FontConvertible(name: "Archivo-Regular", family: "Archivo", path: "Archivo-Regular.ttf") + public static let semiBold = FontConvertible(name: "Archivo-SemiBold", family: "Archivo", path: "Archivo-SemiBold.ttf") + public static let semiBoldItalic = FontConvertible(name: "Archivo-SemiBoldItalic", family: "Archivo", path: "Archivo-SemiBoldItalic.ttf") + public static let thin = FontConvertible(name: "Archivo-Thin", family: "Archivo", path: "Archivo-Thin.ttf") + public static let thinItalic = FontConvertible(name: "Archivo-ThinItalic", family: "Archivo", path: "Archivo-ThinItalic.ttf") + public static let all: [FontConvertible] = [black, blackItalic, bold, boldItalic, extraBold, extraBoldItalic, extraLight, extraLightItalic, italic, light, lightItalic, medium, mediumItalic, regular, semiBold, semiBoldItalic, thin, thinItalic] + } public enum Inter { public static let black = FontConvertible(name: "Inter-Black", family: "Inter", path: "Inter-Black.otf") public static let blackItalic = FontConvertible(name: "Inter-BlackItalic", family: "Inter", path: "Inter-BlackItalic.otf") @@ -44,7 +65,7 @@ public enum FontFamily { public static let regular = FontConvertible(name: "ZbotoRegular", family: "Zboto", path: "Zboto.otf") public static let all: [FontConvertible] = [regular] } - public static let allCustomFonts: [FontConvertible] = [Inter.all, Zboto.all].flatMap { $0 } + public static let allCustomFonts: [FontConvertible] = [Archivo.all, Inter.all, Zboto.all].flatMap { $0 } public static func registerAllCustomFonts() { allCustomFonts.forEach { $0.register() } } diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Black.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Black.ttf new file mode 100644 index 0000000..3c17cb2 Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Black.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-BlackItalic.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-BlackItalic.ttf new file mode 100644 index 0000000..218e71b Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-BlackItalic.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Bold.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Bold.ttf new file mode 100644 index 0000000..39bd784 Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Bold.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-BoldItalic.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-BoldItalic.ttf new file mode 100644 index 0000000..51b0ee6 Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-BoldItalic.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ExtraBold.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ExtraBold.ttf new file mode 100644 index 0000000..5041081 Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ExtraBold.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ExtraBoldItalic.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ExtraBoldItalic.ttf new file mode 100644 index 0000000..b4d7f20 Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ExtraBoldItalic.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ExtraLight.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ExtraLight.ttf new file mode 100644 index 0000000..500543e Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ExtraLight.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ExtraLightItalic.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ExtraLightItalic.ttf new file mode 100644 index 0000000..0c53a7f Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ExtraLightItalic.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Italic.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Italic.ttf new file mode 100644 index 0000000..9b55463 Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Italic.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Light.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Light.ttf new file mode 100644 index 0000000..6ae5ea7 Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Light.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-LightItalic.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-LightItalic.ttf new file mode 100644 index 0000000..b92a009 Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-LightItalic.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Medium.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Medium.ttf new file mode 100644 index 0000000..7b49d1a Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Medium.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-MediumItalic.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-MediumItalic.ttf new file mode 100644 index 0000000..5923663 Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-MediumItalic.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Regular.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Regular.ttf new file mode 100644 index 0000000..6987f6e Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Regular.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-SemiBold.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-SemiBold.ttf new file mode 100644 index 0000000..87c9b0d Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-SemiBold.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-SemiBoldItalic.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-SemiBoldItalic.ttf new file mode 100644 index 0000000..708cd49 Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-SemiBoldItalic.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Thin.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Thin.ttf new file mode 100644 index 0000000..b1e132f Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-Thin.ttf differ diff --git a/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ThinItalic.ttf b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ThinItalic.ttf new file mode 100644 index 0000000..e141c58 Binary files /dev/null and b/modules/Sources/Generated/Resources/Fonts/Archivo/Archivo-ThinItalic.ttf differ diff --git a/modules/swiftgen.yml b/modules/swiftgen.yml index c18cfa7..0e479cb 100644 --- a/modules/swiftgen.yml +++ b/modules/swiftgen.yml @@ -16,6 +16,7 @@ fonts: inputs: - Fonts/Zboto.otf - Fonts/Inter + - Fonts/Archivo outputs: templatePath: Templates/fonts/fonts_swift5_swiftui.stencil params: diff --git a/secant/secant-mainnet-Info.plist b/secant/secant-mainnet-Info.plist index 66d1cc0..813991b 100644 --- a/secant/secant-mainnet-Info.plist +++ b/secant/secant-mainnet-Info.plist @@ -72,6 +72,24 @@ Inter-ExtraBold.otf Inter-ExtraLightItalic.otf Inter-ExtraLight.otf + Archivo-Thin.otf + Archivo-ThinItalic.otf + Archivo-BlackItalic.otf + Archivo-Black.otf + Archivo-BoldItalic.otf + Archivo-Bold.otf + Archivo-MediumItalic.otf + Archivo-Medium.otf + Archivo-Italic.otf + Archivo-Regular.otf + Archivo-LightItalic.otf + Archivo-Light.otf + Archivo-SemiBoldItalic.otf + Archivo-SemiBold.otf + Archivo-ExtraBoldItalic.otf + Archivo-ExtraBold.otf + Archivo-ExtraLightItalic.otf + Archivo-ExtraLight.otf UIApplicationSupportsIndirectInputEvents diff --git a/secant/secant-testnet-Info.plist b/secant/secant-testnet-Info.plist index fcdc8ee..5ae90f7 100644 --- a/secant/secant-testnet-Info.plist +++ b/secant/secant-testnet-Info.plist @@ -67,6 +67,24 @@ Inter-ExtraBold.otf Inter-ExtraLightItalic.otf Inter-ExtraLight.otf + Archivo-Thin.otf + Archivo-ThinItalic.otf + Archivo-BlackItalic.otf + Archivo-Black.otf + Archivo-BoldItalic.otf + Archivo-Bold.otf + Archivo-MediumItalic.otf + Archivo-Medium.otf + Archivo-Italic.otf + Archivo-Regular.otf + Archivo-LightItalic.otf + Archivo-Light.otf + Archivo-SemiBoldItalic.otf + Archivo-SemiBold.otf + Archivo-ExtraBoldItalic.otf + Archivo-ExtraBold.otf + Archivo-ExtraLightItalic.otf + Archivo-ExtraLight.otf UIApplicationSceneManifest