Skip to content

Commit

Permalink
Fix vector icons for ios
Browse files Browse the repository at this point in the history
  • Loading branch information
denniske committed Oct 21, 2024
1 parent 9ccc446 commit dcc8c4c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/src/changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export const changelog4: IChangelog = {
};

export const changelog: IChangelog = {
'113.0.0': [
'114.0.0': [
{
type: 'minor',
title: 'Implemented [AoE II DE Update 125283](https://www.ageofempires.com/news/age-of-empires-ii-definitive-edition-update-preview-125283/)',
Expand Down
2 changes: 1 addition & 1 deletion app2.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const sentryConfigPlugin = [
}
];

const version = '113.0.0';
const version = '114.0.0';
const versionParts = version.split('.');

const runtimeVersion = versionParts[0] + '.' + versionParts[1] + '.0';
Expand Down
17 changes: 15 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,21 @@
"ios": "expo run:ios",
"build:plugin": "yarn clean:plugin && EXPO_NONINTERACTIVE=1 expo-module build plugin && ./plugin/src/scripts/copy.sh",
"clean:plugin": "expo-module clean plugin",
"postinstall": "patch-package",
"lint": "eslint ."
"lint": "eslint .",
"postinstall": "patch-package && npx --yes copy-files-from-to"
},
"copyFiles": [
{
"from": "node_modules/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf",
"to": "node_modules/react-native-vector-icons/Fonts/FontAwesome6_Solid.ttf"
},
{
"from": "node_modules/@expo/vector-icons/build/vendor/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf",
"to": "node_modules/@expo/vector-icons/build/vendor/react-native-vector-icons/Fonts/FontAwesome6_Solid.ttf"
}
],
"copyFilesSettings": {
"whenFileExists": "overwrite"
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
Expand Down

0 comments on commit dcc8c4c

Please sign in to comment.