Skip to content

Commit f9be3d5

Browse files
chore(release): 1.31.0 [skip ci]
# [1.31.0](v1.30.12...v1.31.0) (2025-11-01) ### Bug Fixes * **mobile:** fix offline note viewing ([0269dcc](0269dcc)) * **mobile:** resolve attachment badges, temp note sync, and offline editing issues ([025ac5b](025ac5b)) ### Features * **mobile:** implement offline-first architecture with SQLite caching ([84d7d7b](84d7d7b)) ### Performance Improvements * **mobile:** optimize offline folder counts with caching and indexing ([9eff343](9eff343))
1 parent eb9b344 commit f9be3d5

File tree

5 files changed

+24
-6
lines changed

5 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# [1.31.0](https://github.com/typelets/typelets-app/compare/v1.30.12...v1.31.0) (2025-11-01)
2+
3+
4+
### Bug Fixes
5+
6+
* **mobile:** fix offline note viewing ([0269dcc](https://github.com/typelets/typelets-app/commit/0269dcce8a685d5bd3a8dd962731ae8b12348481))
7+
* **mobile:** resolve attachment badges, temp note sync, and offline editing issues ([025ac5b](https://github.com/typelets/typelets-app/commit/025ac5b462171540239ff5a6c571a35f36bb0362))
8+
9+
10+
### Features
11+
12+
* **mobile:** implement offline-first architecture with SQLite caching ([84d7d7b](https://github.com/typelets/typelets-app/commit/84d7d7b90552b35adc32422fbe60d29eec2b18c0))
13+
14+
15+
### Performance Improvements
16+
17+
* **mobile:** optimize offline folder counts with caching and indexing ([9eff343](https://github.com/typelets/typelets-app/commit/9eff343b9d938902b7bad4bff2f39db93d0387a0))
18+
119
## [1.30.12](https://github.com/typelets/typelets-app/compare/v1.30.11...v1.30.12) (2025-10-29)
220

321

apps/mobile/v1/app.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"expo": {
33
"name": "Typelets",
44
"slug": "typelets",
5-
"version": "1.30.13",
5+
"version": "1.31.0",
66
"orientation": "default",
77
"icon": "./assets/images/icon.png",
88
"scheme": "typelets",
@@ -15,7 +15,7 @@
1515
"ios": {
1616
"icon": "./assets/images/ios-icon-dark.png",
1717
"bundleIdentifier": "com.typelets.mobile.ios",
18-
"buildNumber": "60",
18+
"buildNumber": "61",
1919
"supportsTablet": true,
2020
"infoPlist": {
2121
"NSCameraUsageDescription": "This app uses the camera to capture photos for your notes.",
@@ -26,7 +26,7 @@
2626
},
2727
"android": {
2828
"package": "com.typelets.notes",
29-
"versionCode": 60,
29+
"versionCode": 61,
3030
"softwareKeyboardLayoutMode": "resize",
3131
"adaptiveIcon": {
3232
"backgroundColor": "#FFFFFF",

apps/mobile/v1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "v1",
33
"main": "index.js",
4-
"version": "1.30.13",
4+
"version": "1.31.0",
55
"scripts": {
66
"start": "expo start",
77
"reset-project": "node ./scripts/reset-project.js",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const APP_VERSION = '1.30.12';
1+
export const APP_VERSION = '1.31.0';

src/constants/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const APP_VERSION = '1.30.12';
1+
export const APP_VERSION = '1.31.0';

0 commit comments

Comments
 (0)