Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/fair-birds-rule.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/olive-gifts-peel.md

This file was deleted.

12 changes: 12 additions & 0 deletions packages/mobile/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @trizum/mobile

## 1.7.1

### Patch Changes

- 92c0ea9: Migrate the PWA's virtualized emoji picker and expense log from `@tanstack/react-virtual` to `react-window`.

This keeps the existing user flows intact while simplifying scroll restoration and removing the React 19 workaround the old virtualization layer required.

- Updated dependencies [09ef7ba]
- Updated dependencies [92c0ea9]
- @trizum/pwa@1.7.1

## 1.7.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/mobile/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "app.trizum.capacitor"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 10070000
versionName "1.7.0"
versionCode 10070100
versionName "1.7.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
12 changes: 6 additions & 6 deletions packages/mobile/ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 10070000;
CURRENT_PROJECT_VERSION = 10070100;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
Expand Down Expand Up @@ -333,7 +333,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 10070000;
CURRENT_PROJECT_VERSION = 10070100;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand Down Expand Up @@ -361,12 +361,12 @@
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 10070000;
CURRENT_PROJECT_VERSION = 10070100;
DEVELOPMENT_TEAM = NYWQ2ZGWYB;
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 1.7.1;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = app.trizum.capacitor;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -385,12 +385,12 @@
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 10070000;
CURRENT_PROJECT_VERSION = 10070100;
DEVELOPMENT_TEAM = NYWQ2ZGWYB;
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 1.7.1;
PRODUCT_BUNDLE_IDENTIFIER = app.trizum.capacitor;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
4 changes: 2 additions & 2 deletions packages/mobile/ios/App/App/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.7.0</string>
<string>1.7.1</string>
<key>CFBundleVersion</key>
<string>10070000</string>
<string>10070100</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@trizum/mobile",
"description": "",
"keywords": [],
"version": "1.7.0",
"version": "1.7.1",
"license": "MIT",
"private": true,
"author": "Horus Lugo <hola@horus.dev> (https://horus.dev)",
Expand Down
13 changes: 13 additions & 0 deletions packages/pwa/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @trizum/pwa

## 1.7.1

### Patch Changes

- 09ef7ba: Replace the PWA icon loader with a generated SVG sprite pipeline.
- generate a minimal sprite from the icons actually referenced in the app
- add typed sprite IDs for Lucide static icons and custom SVG icon sets
- remove the old Lucide lazy-loading and preload generation setup

- 92c0ea9: Migrate the PWA's virtualized emoji picker and expense log from `@tanstack/react-virtual` to `react-window`.

This keeps the existing user flows intact while simplifying scroll restoration and removing the React 19 workaround the old virtualization layer required.

## 1.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/pwa/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@trizum/pwa",
"description": "Split bills with friends and family. Track, calculate, and settle expenses together.",
"version": "1.7.0",
"version": "1.7.1",
"private": true,
"type": "module",
"imports": {
Expand Down