Skip to content

Commit a67eb54

Browse files
committed
Merge branch 'main' into perf/optimize-chat-bubble-cell-rendering
2 parents 7dc54b3 + 56ab1e0 commit a67eb54

83 files changed

Lines changed: 1976 additions & 456 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Mobile-Expensify

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ android {
114114
minSdkVersion rootProject.ext.minSdkVersion
115115
targetSdkVersion rootProject.ext.targetSdkVersion
116116
multiDexEnabled rootProject.ext.multiDexEnabled
117-
versionCode 1009017908
118-
versionName "9.1.79-8"
117+
versionCode 1009017911
118+
versionName "9.1.79-11"
119119
// Supported language variants must be declared here to avoid from being removed during the compilation.
120120
// This also helps us to not include unnecessary language variants in the APK.
121121
resConfigs "en", "es"

ios/NewExpensify/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</dict>
4545
</array>
4646
<key>CFBundleVersion</key>
47-
<string>9.1.79.8</string>
47+
<string>9.1.79.11</string>
4848
<key>FullStory</key>
4949
<dict>
5050
<key>OrgId</key>

ios/NotificationServiceExtension/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleShortVersionString</key>
1414
<string>9.1.79</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.1.79.8</string>
16+
<string>9.1.79.11</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionPointIdentifier</key>

ios/ShareViewController/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleShortVersionString</key>
1414
<string>9.1.79</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.1.79.8</string>
16+
<string>9.1.79.11</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionAttributes</key>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "9.1.79-8",
3+
"version": "9.1.79-11",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",

src/CONST/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6848,9 +6848,9 @@ const CONST = {
68486848
},
68496849
LAST_PAYMENT_METHOD: {
68506850
LAST_USED: 'lastUsed',
6851-
IOU: 'Iou',
6852-
EXPENSE: 'Expense',
6853-
INVOICE: 'Invoice',
6851+
IOU: 'iou',
6852+
EXPENSE: 'expense',
6853+
INVOICE: 'invoice',
68546854
},
68556855
SKIPPABLE_COLLECTION_MEMBER_IDS: [String(DEFAULT_NUMBER_ID), '-1', 'undefined', 'null', 'NaN'] as string[],
68566856
SETUP_SPECIALIST_LOGIN: 'Setup Specialist',

src/ROUTES.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1919,6 +1919,10 @@ const ROUTES = {
19191919
getRoute: (backTo?: string) => getUrlWithBackToParam('change-workspace-educational', backTo),
19201920
},
19211921
TRAVEL_MY_TRIPS: 'travel',
1922+
TRAVEL_DOT_LINK_WEB_VIEW: {
1923+
route: 'travel-dot-link',
1924+
getRoute: (token: string, isTestAccount?: boolean) => `travel-dot-link?token=${token}&isTestAccount=${isTestAccount}` as const,
1925+
},
19221926
TRAVEL_TCS: {
19231927
route: 'travel/terms/:domain/accept',
19241928
getRoute: (domain: string, backTo?: string) => getUrlWithBackToParam(`travel/terms/${domain}/accept`, backTo),
@@ -2581,7 +2585,10 @@ const ROUTES = {
25812585
getRoute: (reportID: string) => `r/${reportID}/schedule-call/confirmation` as const,
25822586
},
25832587

2584-
TEST_TOOLS_MODAL: 'test-tools',
2588+
TEST_TOOLS_MODAL: {
2589+
route: 'test-tools',
2590+
getRoute: (backTo?: string) => getUrlWithBackToParam('test-tools' as const, backTo),
2591+
},
25852592
} as const;
25862593

25872594
/**

src/SCREENS.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ const SCREENS = {
3535
DOMAIN_PERMISSION_INFO: 'Travel_DomainPermissionInfo',
3636
PUBLIC_DOMAIN_ERROR: 'Travel_PublicDomainError',
3737
WORKSPACE_ADDRESS: 'Travel_WorkspaceAddress',
38+
TRAVEL_DOT_LINK_WEB_VIEW: 'Travel_DotLinkWebView',
3839
},
3940
SEARCH: {
4041
ROOT: 'Search_Root',

0 commit comments

Comments
 (0)