Skip to content

Commit 72f8675

Browse files
committed
Merge branch 'main' into fix/composer-sidepanel-focus
2 parents 181d589 + e38712f commit 72f8675

170 files changed

Lines changed: 5029 additions & 1693 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
@@ -111,8 +111,8 @@ android {
111111
minSdkVersion rootProject.ext.minSdkVersion
112112
targetSdkVersion rootProject.ext.targetSdkVersion
113113
multiDexEnabled rootProject.ext.multiDexEnabled
114-
versionCode 1009035102
115-
versionName "9.3.51-2"
114+
versionCode 1009035107
115+
versionName "9.3.51-7"
116116
// Supported language variants must be declared here to avoid from being removed during the compilation.
117117
// This also helps us to not include unnecessary language variants in the APK.
118118
resConfigs "en", "es"

assets/images/camera-flip.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/articles/new-expensify/getting-started/Expensify-Home-Overview.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Expensify Home Overview
33
description: Learn what you’ll see on Home and how it helps you understand what needs attention, get oriented, and stay informed when you sign in.
4-
keywords: [New Expensify, Expensify Home, Home, Home tab, For you, Discover, Announcements, time-sensitive, urgent alerts, Expensify Card fraud, broken bank connection, assigned cards. Expensify Card limit, available limit, available balance]
5-
internalScope: Audience is all Expensify members. Covers what Home is and what appears on it, including the For you, Discover, Announcements, Time-sensitive, and Assigned cards sections. Does not cover how to complete actions like submitting, approving, paying, exporting, or fixing expenses.
4+
keywords: [New Expensify, Expensify Home, Home, Home tab, For you, Discover, Announcements, time-sensitive, urgent alerts, Expensify Card fraud, broken bank connection, assigned cards, Expensify Card limit, available limit, available balance, Spend over time, spending chart, insights]
5+
internalScope: Audience is all Expensify members. Covers what Home is and what appears on it, including the For you, Spend over time, Discover, Announcements, Time-sensitive, and Assigned cards sections. Does not cover how to complete actions like submitting, approving, paying, exporting, or fixing expenses.
66

77
---
88

@@ -32,6 +32,7 @@ Home is made up of a small set of sections that summarize what’s happening in
3232
Home includes:
3333
- **Time-sensitive alerts** (when applicable)
3434
- **For you**
35+
- **Spend over time** (when applicable)
3536
- **Discover**
3637
- **Announcements**
3738
- **Assigned cards** (when applicable)
@@ -68,6 +69,16 @@ If there’s nothing that needs action, the **For you** section may appear empty
6869

6970
---
7071

72+
## How the Spend over time section works on Home
73+
74+
The **Spend over time** section displays a line chart showing your workspace spending trends over time.
75+
76+
This section is available to Workspace Admins, Auditors, and approvers on paid workspaces that have transaction data. Click **View** to open the full **Spend over time** chart on the Search page.
77+
78+
If you don't hold one of these roles or your workspace has no transactions yet, this section won't appear.
79+
80+
---
81+
7182
## How the Discover section works on Home
7283

7384
The **Discover** section helps you get familiar with things you can do in Expensify.
@@ -114,6 +125,10 @@ If there are no current financial to-dos, the **For you** section may appear emp
114125

115126
The **Time-sensitive** section only appears when there is an urgent issue or limited-time action that requires attention. If everything is up to date, this section will not be visible.
116127

128+
## Why don’t I see the Spend over time section?
129+
130+
The **Spend over time** section only appears if you are a Workspace Admin, Auditor, or approver on a paid workspace that has existing transactions. If you don't hold one of these roles, or your workspace has no transactions yet, this section won't be visible.
131+
117132
## Why don’t I see the Assigned cards section?
118133

119134
The **Assigned cards** section only appears if you have an active **Expensify Card** assigned to you.

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.3.51.2</string>
47+
<string>9.3.51.7</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.3.51</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.51.2</string>
16+
<string>9.3.51.7</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.3.51</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.51.2</string>
16+
<string>9.3.51.7</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionAttributes</key>

jest/setup.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -375,10 +375,3 @@ jest.mock('@src/hooks/useDomainDocumentTitle', () => ({
375375
__esModule: true,
376376
default: jest.fn(),
377377
}));
378-
379-
jest.mock('react-native-vision-camera', () => ({
380-
Camera: 'Camera',
381-
useCameraDevice: jest.fn(() => null),
382-
useCameraFormat: jest.fn(() => null),
383-
useCameraPermission: jest.fn(() => ({hasPermission: false, requestPermission: jest.fn()})),
384-
}));

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.3.51-2",
3+
"version": "9.3.51-7",
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.",

0 commit comments

Comments
 (0)