Skip to content

Commit 1e57c6e

Browse files
committed
Merge branch 'main' into refactor-66578-p2
2 parents 7b1663b + e9c6494 commit 1e57c6e

21 files changed

Lines changed: 468 additions & 36 deletions

File tree

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 1009035400
115-
versionName "9.3.54-0"
114+
versionCode 1009035401
115+
versionName "9.3.54-1"
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"

docs/articles/new-expensify/getting-started/Navigating-New-Expensify.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ From Account, you can manage:
9898
- **Security** to manage security options and Copilot delegated access
9999

100100
You can also access:
101-
- **Help** to browse Expensify's help site
101+
- **Help** to access help and support resources, including a link to the help site
102102
- **What's new** to view product updates
103103
- **About** to see app details
104104
- **Troubleshoot** to run diagnostics or switch to Expensify Classic

docs/articles/new-expensify/reports-and-expenses/Using-search-operators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ type:expense merchant:Starbucks category:Meals amount>20 has:receipt
5858
- `tag:` – tag or multiple tags
5959
- `amount:` / `purchase-amount:` – supports `=`, `>`, `<`, `>=`, `<=`
6060
- `status:` – unreported, draft, outstanding, approved, paid, done
61-
- `date:` – expense date, supports relative dates like `date:this-month`, `date:last-month`, `date:year-to-date`, `date:this-week`
61+
- `date:` – expense date, supports relative dates like `date:this-month`, `date:last-month`, `date:year-to-date`, `date:this-week`. Also supports comparisons (`date>=2024-01-01 date<=2024-01-31`) for date ranges
6262
- `has:` – attachment, receipt, category, tag
6363
- `expense-type:` – cash, card, distance, per-diem
6464
- `reimbursable:` and `billable:` – yes or no
@@ -69,7 +69,7 @@ type:expense merchant:Starbucks category:Meals amount>20 has:receipt
6969

7070
- `report-id:` – unique report reference
7171
- `status:` – draft, outstanding, approved, paid, done
72-
- `submitted:` / `approved:` / `paid:` / `exported:` – supports absolute or relative dates
72+
- `submitted:` / `approved:` / `paid:` / `exported:` – supports absolute or relative dates, and comparisons for date ranges (e.g., `submitted>=2024-01-01 submitted<=2024-01-31`)
7373
- `title:` – report title
7474
- `total:` – total amount with relative comparisons
7575
- `withdrawn:` – ACH withdrawal date

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.54.0</string>
47+
<string>9.3.54.1</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.54</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.54.0</string>
16+
<string>9.3.54.1</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.54</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.54.0</string>
16+
<string>9.3.54.1</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.3.54-0",
3+
"version": "9.3.54-1",
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/ROUTES.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,8 @@ const DYNAMIC_ROUTES = {
189189
NOTIFICATION_PREFERENCES: {
190190
path: 'notification-preferences',
191191
entryScreens: [SCREENS.REPORT_SETTINGS.ROOT, SCREENS.PROFILE_ROOT],
192+
getRoute: (reportID: string) => getUrlWithParams('notification-preferences', {reportID}),
193+
queryParams: ['reportID'],
192194
},
193195
WORKSPACE_OVERVIEW_PLAN: {
194196
path: 'plan',

0 commit comments

Comments
 (0)