From f5d499ad14ea3bad688688f6332c1e6b6e93e7c8 Mon Sep 17 00:00:00 2001 From: Leopold Jacquot Date: Fri, 12 Jan 2024 21:27:26 +0100 Subject: [PATCH] chore: change font to SuisseIntl --- .../actions/prepare-android-build/action.yaml | 7 +++++ .github/actions/prepare-ios-build/action.yaml | 14 +++++++++ .github/workflows/build-ios-beta.yml | 30 ++----------------- .github/workflows/build-ios-release.yml | 29 ++---------------- .github/workflows/build-pr.yml | 2 ++ .github/workflows/github-release.yml | 2 ++ .gitignore | 1 + app/components/badge/index.tsx | 2 +- app/components/files/image_file_overlay.tsx | 2 +- .../floating_text_input_label/index.tsx | 6 ++-- .../button_binding/index.tsx | 2 +- .../content/embedded_bindings/embed_title.tsx | 2 +- .../action_button/index.tsx | 2 +- .../message_attachments/attachment_fields.tsx | 2 +- .../message_attachments/attachment_title.tsx | 2 +- app/components/tablet_title/index.tsx | 4 +-- app/components/tag/index.tsx | 2 +- .../account/components/user_info/index.tsx | 4 +-- app/screens/in_app_notification/index.tsx | 2 +- app/screens/in_app_notification/server.tsx | 2 +- app/screens/in_app_notification/title.tsx | 2 +- app/screens/login/form.tsx | 2 +- app/screens/login/login_options_separator.tsx | 2 +- app/screens/login/sso_options.tsx | 2 +- app/screens/navigation.ts | 6 ++-- app/utils/buttonStyles.ts | 2 +- app/utils/font_family.ts | 2 +- app/utils/markdown/index.ts | 12 ++++---- app/utils/typography.ts | 5 +++- ios/Mattermost/Info.plist | 3 ++ ios/MattermostShare/Info.plist | 3 ++ 31 files changed, 72 insertions(+), 88 deletions(-) diff --git a/.github/actions/prepare-android-build/action.yaml b/.github/actions/prepare-android-build/action.yaml index 7ed8ac938d2..6cd4dab8ef3 100644 --- a/.github/actions/prepare-android-build/action.yaml +++ b/.github/actions/prepare-android-build/action.yaml @@ -47,3 +47,10 @@ runs: echo ${STORE_ALIAS} | tee -a android/gradle.properties > /dev/null echo ${STORE_PASSWORD} | tee -a android/gradle.properties > /dev/null echo "::endgroup::" + + - name: ci/append-fonts-to-build + shell: bash + run: | + echo "::group::append-fonts-to-build" + cp ${{ github.workspace }}/mobile-private/fonts/* assets/fonts/ + echo "::endgroup::" diff --git a/.github/actions/prepare-ios-build/action.yaml b/.github/actions/prepare-ios-build/action.yaml index 9c4a1dbb77d..d82f03faab0 100644 --- a/.github/actions/prepare-ios-build/action.yaml +++ b/.github/actions/prepare-ios-build/action.yaml @@ -23,3 +23,17 @@ runs: npm run ios-gems npm run pod-install echo "::endgroup::" + + - name: ci/checkout-private-repo + uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 + with: + repository: infomaniak/mobile-private + token: ${{ env.MATTERMOST_BUILD_GH_TOKEN }} + path: ${{ github.workspace }}/mobile-private + + - name: ci/append-fonts-to-build + shell: bash + run: | + echo "::group::append-fonts-to-build" + cp ${{ github.workspace }}/mobile-private/fonts/* assets/fonts/ + echo "::endgroup::" diff --git a/.github/workflows/build-ios-beta.yml b/.github/workflows/build-ios-beta.yml index 6ba35bd5666..cc91aed35c5 100644 --- a/.github/workflows/build-ios-beta.yml +++ b/.github/workflows/build-ios-beta.yml @@ -21,34 +21,6 @@ jobs: - name: ci/test uses: ./.github/actions/test - build-ios-simulator: - runs-on: macos-12 - if: ${{ !contains(github.ref_name, 'beta-ios') }} - needs: - - test - steps: - - name: ci/checkout-repo - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 - - - name: ci/prepare-ios-build - uses: ./.github/actions/prepare-ios-build - - - name: ci/build-ios-simulator - env: - TAG: "${{ github.ref_name }}" - AWS_ACCESS_KEY_ID: "${{ secrets.MM_MOBILE_BETA_AWS_ACCESS_KEY_ID }}" - AWS_SECRET_ACCESS_KEY: "${{ secrets.MM_MOBILE_BETA_AWS_SECRET_ACCESS_KEY }}" - MATTERMOST_WEBHOOK_URL: "${{ secrets.MM_MOBILE_BETA_MATTERMOST_WEBHOOK_URL }}" - GITHUB_TOKEN: "${{ secrets.MM_MOBILE_GITHUB_TOKEN }}" - run: bundle exec fastlane ios simulator --env ios.simulator - working-directory: ./fastlane - - - name: ci/upload-ios-pr-simulator - uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 - with: - name: ios-build-simulator-${{ github.run_id }} - path: Mattermost-simulator-x86_64.app.zip - build-and-deploy-ios-beta: runs-on: macos-12 if: ${{ !contains(github.ref_name, 'beta-sim') }} @@ -69,6 +41,8 @@ jobs: - name: ci/prepare-ios-build uses: ./.github/actions/prepare-ios-build + env: + MATTERMOST_BUILD_GH_TOKEN: "${{ secrets.MATTERMOST_BUILD_GH_TOKEN }}" - name: ci/build-and-deploy-ios-beta env: diff --git a/.github/workflows/build-ios-release.yml b/.github/workflows/build-ios-release.yml index 2616500e80b..37f1e4df116 100644 --- a/.github/workflows/build-ios-release.yml +++ b/.github/workflows/build-ios-release.yml @@ -32,6 +32,8 @@ jobs: - name: ci/prepare-ios-build uses: ./.github/actions/prepare-ios-build + env: + MATTERMOST_BUILD_GH_TOKEN: "${{ secrets.MATTERMOST_BUILD_GH_TOKEN }}" - name: ci/output-ssh-private-key shell: bash @@ -70,30 +72,3 @@ jobs: name: ios-build-release-${{ github.run_id }} path: "*.ipa" - build-ios-simulator: - runs-on: macos-12 - if: ${{ !contains(github.ref_name , 'release-ios') }} - needs: - - test - steps: - - name: ci/checkout-repo - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 - - - name: ci/prepare-ios-build - uses: ./.github/actions/prepare-ios-build - - - name: ci/build-ios-simulator - env: - TAG: "${{ github.ref_name }}" - AWS_ACCESS_KEY_ID: "${{ secrets.MM_MOBILE_BETA_AWS_ACCESS_KEY_ID }}" - AWS_SECRET_ACCESS_KEY: "${{ secrets.MM_MOBILE_BETA_AWS_SECRET_ACCESS_KEY }}" - MATTERMOST_WEBHOOK_URL: "${{ secrets.MM_MOBILE_BETA_MATTERMOST_WEBHOOK_URL }}" - GITHUB_TOKEN: "${{ secrets.MM_MOBILE_GITHUB_TOKEN }}" - run: bundle exec fastlane ios simulator --env ios.simulator - working-directory: ./fastlane - - - name: ci/upload-ios-pr-simulator - uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 - with: - name: ios-build-simulator-${{ github.run_id }} - path: Mattermost-simulator-x86_64.app.zip diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index 6364a3e748b..58060e5dd1c 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -34,6 +34,8 @@ jobs: - name: ci/prepare-ios-build uses: ./.github/actions/prepare-ios-build + env: + MATTERMOST_BUILD_GH_TOKEN: "${{ secrets.MATTERMOST_BUILD_GH_TOKEN }}" - name: ci/output-ssh-private-key shell: bash diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index 5cb16f63251..77c8a1fb139 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -24,6 +24,8 @@ jobs: - name: ci/prepare-ios-build uses: ./.github/actions/prepare-ios-build + env: + MATTERMOST_BUILD_GH_TOKEN: "${{ secrets.MATTERMOST_BUILD_GH_TOKEN }}" - name: ci/output-ssh-private-key shell: bash diff --git a/.gitignore b/.gitignore index 600fc0dfad0..67391ced051 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ assets/override +assets/fonts/SuisseIntl*.ttf dist build-ios *.zip diff --git a/app/components/badge/index.tsx b/app/components/badge/index.tsx index 84ec359cd85..e6eef88f9ff 100644 --- a/app/components/badge/index.tsx +++ b/app/components/badge/index.tsx @@ -134,6 +134,6 @@ const styles = StyleSheet.create({ paddingHorizontal: 4, overflow: 'hidden', borderWidth: 2, - fontFamily: 'OpenSans-Bold', + fontFamily: 'SuisseIntl-SemiBold', }, }); diff --git a/app/components/files/image_file_overlay.tsx b/app/components/files/image_file_overlay.tsx index 66dda7a6be4..c875c675d5f 100644 --- a/app/components/files/image_file_overlay.tsx +++ b/app/components/files/image_file_overlay.tsx @@ -22,7 +22,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ }, moreImagesText: { color: theme.sidebarHeaderTextColor, - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', textAlign: 'center', }, })); diff --git a/app/components/floating_text_input_label/index.tsx b/app/components/floating_text_input_label/index.tsx index 708ac8b452a..39a84bf7bfe 100644 --- a/app/components/floating_text_input_label/index.tsx +++ b/app/components/floating_text_input_label/index.tsx @@ -36,7 +36,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ }, errorText: { color: theme.errorTextColor, - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', fontSize: 12, lineHeight: 16, paddingVertical: 5, @@ -53,7 +53,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ position: 'absolute', color: changeOpacity(theme.centerChannelColor, 0.64), left: 16, - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', fontSize: 16, zIndex: 10, maxWidth: 315, @@ -66,7 +66,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ }, textInput: { flexDirection: 'row', - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', fontSize: 16, paddingTop: 12, paddingBottom: 12, diff --git a/app/components/post_list/post/body/content/embedded_bindings/button_binding/index.tsx b/app/components/post_list/post/body/content/embedded_bindings/button_binding/index.tsx index c8704d66dd7..e646e82a49a 100644 --- a/app/components/post_list/post/body/content/embedded_bindings/button_binding/index.tsx +++ b/app/components/post_list/post/body/content/embedded_bindings/button_binding/index.tsx @@ -49,7 +49,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => { text: { color: STATUS_COLORS.default, fontSize: 15, - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', lineHeight: 17, }, }; diff --git a/app/components/post_list/post/body/content/embedded_bindings/embed_title.tsx b/app/components/post_list/post/body/content/embedded_bindings/embed_title.tsx index 49bf4a4de3a..d5709b71465 100644 --- a/app/components/post_list/post/body/content/embedded_bindings/embed_title.tsx +++ b/app/components/post_list/post/body/content/embedded_bindings/embed_title.tsx @@ -23,7 +23,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => { }, title: { color: theme.centerChannelColor, - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', marginBottom: 5, fontSize: 14, lineHeight: 20, diff --git a/app/components/post_list/post/body/content/message_attachments/action_button/index.tsx b/app/components/post_list/post/body/content/message_attachments/action_button/index.tsx index d429ae9f7d2..5902345f5f4 100644 --- a/app/components/post_list/post/body/content/message_attachments/action_button/index.tsx +++ b/app/components/post_list/post/body/content/message_attachments/action_button/index.tsx @@ -41,7 +41,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => { text: { color: STATUS_COLORS.default, fontSize: 15, - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', lineHeight: 17, }, }; diff --git a/app/components/post_list/post/body/content/message_attachments/attachment_fields.tsx b/app/components/post_list/post/body/content/message_attachments/attachment_fields.tsx index 590e2e9fe22..a8289ac7929 100644 --- a/app/components/post_list/post/body/content/message_attachments/attachment_fields.tsx +++ b/app/components/post_list/post/body/content/message_attachments/attachment_fields.tsx @@ -37,7 +37,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => { }, heading: { color: theme.centerChannelColor, - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', }, table: { flex: 1, diff --git a/app/components/post_list/post/body/content/message_attachments/attachment_title.tsx b/app/components/post_list/post/body/content/message_attachments/attachment_title.tsx index 3cd8e57f156..43569463a9a 100644 --- a/app/components/post_list/post/body/content/message_attachments/attachment_title.tsx +++ b/app/components/post_list/post/body/content/message_attachments/attachment_title.tsx @@ -28,7 +28,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => { title: { color: theme.centerChannelColor, fontSize: 14, - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', lineHeight: 20, marginBottom: 5, }, diff --git a/app/components/tablet_title/index.tsx b/app/components/tablet_title/index.tsx index f16467802cc..c89a9883609 100644 --- a/app/components/tablet_title/index.tsx +++ b/app/components/tablet_title/index.tsx @@ -26,7 +26,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ }, action: { color: changeOpacity(theme.centerChannelColor, 0.7), - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', fontSize: 16, lineHeight: 24, }, @@ -50,7 +50,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ }, title: { color: theme.centerChannelColor, - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', fontSize: 18, lineHeight: 24, }, diff --git a/app/components/tag/index.tsx b/app/components/tag/index.tsx index b1b27c879fa..2ac5ac457b3 100644 --- a/app/components/tag/index.tsx +++ b/app/components/tag/index.tsx @@ -30,7 +30,7 @@ const getStyleFromTheme = makeStyleSheetFromTheme((theme: Theme) => { }, text: { color: theme.centerChannelColor, - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', fontSize: 10, textTransform: 'uppercase', }, diff --git a/app/screens/home/account/components/user_info/index.tsx b/app/screens/home/account/components/user_info/index.tsx index fbc0561944c..86384cd1ef7 100644 --- a/app/screens/home/account/components/user_info/index.tsx +++ b/app/screens/home/account/components/user_info/index.tsx @@ -34,14 +34,14 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => { fontSize: 28, lineHeight: 36, color: theme.sidebarText, - fontFamily: 'Metropolis-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', marginTop: 16, }, textUserName: { fontSize: 16, lineHeight: 24, color: theme.sidebarText, - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', marginTop: 4, }, }; diff --git a/app/screens/in_app_notification/index.tsx b/app/screens/in_app_notification/index.tsx index 1e2c2e5c234..3bfde4ce44b 100644 --- a/app/screens/in_app_notification/index.tsx +++ b/app/screens/in_app_notification/index.tsx @@ -49,7 +49,7 @@ const styles = StyleSheet.create({ message: { color: '#FFFFFF', fontSize: 13, - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', }, titleContainer: { flex: 1, diff --git a/app/screens/in_app_notification/server.tsx b/app/screens/in_app_notification/server.tsx index 66eb960173c..51b7205b6e8 100644 --- a/app/screens/in_app_notification/server.tsx +++ b/app/screens/in_app_notification/server.tsx @@ -15,7 +15,7 @@ const styles = StyleSheet.create({ }, text: { color: 'rgba(255, 255, 255, 0.64)', - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', fontSize: 10, }, }); diff --git a/app/screens/in_app_notification/title.tsx b/app/screens/in_app_notification/title.tsx index d9b1c13ee41..39150cc954b 100644 --- a/app/screens/in_app_notification/title.tsx +++ b/app/screens/in_app_notification/title.tsx @@ -25,7 +25,7 @@ const styles = StyleSheet.create({ title: { color: '#FFFFFF', fontSize: 14, - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', }, }); diff --git a/app/screens/login/form.tsx b/app/screens/login/form.tsx index 9bf88fd235d..94d0c21dff7 100644 --- a/app/screens/login/form.tsx +++ b/app/screens/login/form.tsx @@ -58,7 +58,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ paddingVertical: 10, color: theme.buttonBg, fontSize: 14, - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', }, loadingContainerStyle: { marginRight: 10, diff --git a/app/screens/login/login_options_separator.tsx b/app/screens/login/login_options_separator.tsx index e5843b7493c..e30e24bacc6 100644 --- a/app/screens/login/login_options_separator.tsx +++ b/app/screens/login/login_options_separator.tsx @@ -27,7 +27,7 @@ const getStyleFromTheme = makeStyleSheetFromTheme((theme: Theme) => ({ marginLeft: 6, textAlign: 'center', color: changeOpacity(theme.centerChannelColor, 0.64), - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', fontSize: 12, top: -2, }, diff --git a/app/screens/login/sso_options.tsx b/app/screens/login/sso_options.tsx index af6a3291956..2ab99d684db 100644 --- a/app/screens/login/sso_options.tsx +++ b/app/screens/login/sso_options.tsx @@ -144,7 +144,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ }, buttonText: { color: theme.centerChannelColor, - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', fontSize: 16, lineHeight: 18, top: 2, diff --git a/app/screens/navigation.ts b/app/screens/navigation.ts index 613f2b90857..0f6f1049972 100644 --- a/app/screens/navigation.ts +++ b/app/screens/navigation.ts @@ -195,7 +195,7 @@ Navigation.setDefaultOptions({ }, topBar: { title: { - fontFamily: 'Metropolis-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', fontSize: 18, fontWeight: '600', }, @@ -203,7 +203,7 @@ Navigation.setDefaultOptions({ enableMenu: false, }, subtitle: { - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', fontSize: 12, fontWeight: '400', }, @@ -801,7 +801,7 @@ export async function dismissAllModals() { export const buildNavigationButton = (id: string, testID: string, icon?: ImageResource, text?: string): OptionsTopBarButton => ({ fontSize: 16, - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', fontWeight: '600', id, icon, diff --git a/app/utils/buttonStyles.ts b/app/utils/buttonStyles.ts index 46a85e643e4..e871f5b00a0 100644 --- a/app/utils/buttonStyles.ts +++ b/app/utils/buttonStyles.ts @@ -378,7 +378,7 @@ export const buttonTextStyle = ( const styles = StyleSheet.create({ main: { - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', fontWeight: '600', textAlignVertical: 'center', alignItems: 'center', diff --git a/app/utils/font_family.ts b/app/utils/font_family.ts index 5da2abb6f23..21ed848e243 100644 --- a/app/utils/font_family.ts +++ b/app/utils/font_family.ts @@ -14,7 +14,7 @@ import {StyleSheet, Text} from 'react-native'; const setFontFamily = () => { const styles = StyleSheet.create({ defaultText: { - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', fontSize: 16, }, }); diff --git a/app/utils/markdown/index.ts b/app/utils/markdown/index.ts index 9611c3f6ce6..1b22ba96335 100644 --- a/app/utils/markdown/index.ts +++ b/app/utils/markdown/index.ts @@ -34,10 +34,10 @@ export const getMarkdownTextStyles = makeStyleSheetFromTheme((theme: Theme) => { return { emph: { - fontFamily: 'OpenSans-Italic', + fontFamily: 'SuisseIntl-RegularItalic', }, strong: { - fontFamily: 'OpenSans-SemiBold', + fontFamily: 'SuisseIntl-SemiBold', fontWeight: '600', }, del: { @@ -45,7 +45,7 @@ export const getMarkdownTextStyles = makeStyleSheetFromTheme((theme: Theme) => { }, link: { color: theme.linkColor, - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', }, heading1: { ...typography('Heading', 700), @@ -98,15 +98,15 @@ export const getMarkdownTextStyles = makeStyleSheetFromTheme((theme: Theme) => { fontFamily: codeFont, }, mention: { - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', color: theme.linkColor, }, error: { - fontFamily: 'OpenSans', + fontFamily: 'SuisseIntl-Regular', color: theme.errorTextColor, }, table_header_row: { - fontFamily: 'OpenSans-Bold', + fontFamily: 'SuisseIntl-SemiBold', }, mention_highlight: { color: theme.mentionHighlightLink, diff --git a/app/utils/typography.ts b/app/utils/typography.ts index 3e3dc036f7b..36b11168b45 100644 --- a/app/utils/typography.ts +++ b/app/utils/typography.ts @@ -15,6 +15,9 @@ const fontFamily = StyleSheet.create({ Metropolis: { fontFamily: 'Metropolis', }, + SuisseIntl: { + fontFamily: 'SuisseIntl', + }, }); const fontStyle = StyleSheet.create({ @@ -105,7 +108,7 @@ export const typography = ( style = type === 'Heading' ? 'SemiBold' : 'Regular'; } - const font = type === 'Heading' && size > 100 ? fontFamily.Metropolis : fontFamily.OpenSans; + const font = fontFamily.SuisseIntl; const typeStyle = { ...font, diff --git a/ios/Mattermost/Info.plist b/ios/Mattermost/Info.plist index 3acbcbff025..c318b9fdfe9 100644 --- a/ios/Mattermost/Info.plist +++ b/ios/Mattermost/Info.plist @@ -99,6 +99,9 @@ Metropolis-SemiBold.ttf Metropolis-Light.ttf compass-icons.ttf + SuisseIntl-Regular.ttf + SuisseIntl-RegularItalic.ttf + SuisseIntl-SemiBold.ttf UIBackgroundModes diff --git a/ios/MattermostShare/Info.plist b/ios/MattermostShare/Info.plist index 62a60c3ba03..cb5e5511e79 100644 --- a/ios/MattermostShare/Info.plist +++ b/ios/MattermostShare/Info.plist @@ -64,6 +64,9 @@ Metropolis-SemiBold.ttf Metropolis-Light.ttf compass-icons.ttf + SuisseIntl-Regular.ttf + SuisseIntl-RegularItalic.ttf + SuisseIntl-SemiBold.ttf