Skip to content

Commit fbfc98c

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 85e05f2 + 9999392 commit fbfc98c

File tree

31 files changed

+1112
-391
lines changed

31 files changed

+1112
-391
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,11 @@ drizzle/
261261

262262
# Claude Code
263263
.claude
264+
265+
# Environment files
264266
/.env
267+
.env
268+
apps/mobile/v1/.env
265269

266270
# Windows reserved device names
267271
nul

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [1.42.0](https://github.com/typelets/typelets-app/compare/v1.41.0...v1.42.0) (2025-11-23)
2+
3+
4+
### Features
5+
6+
* **mobile:** add public notes feature with publish/unpublish support ([6531831](https://github.com/typelets/typelets-app/commit/65318318720f934de0f04c3ac97093854b2e22cc))
7+
18
# [1.41.0](https://github.com/typelets/typelets-app/compare/v1.40.1...v1.41.0) (2025-11-22)
29

310

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.41.0",
5+
"version": "1.42.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": "113",
18+
"buildNumber": "114",
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": 113,
29+
"versionCode": 114,
3030
"softwareKeyboardLayoutMode": "resize",
3131
"adaptiveIcon": {
3232
"backgroundColor": "#FFFFFF",

apps/mobile/v1/app/_layout.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,6 @@ function AppContent() {
165165
}
166166

167167
export default Sentry.wrap(function RootLayout() {
168-
if (__DEV__) {
169-
console.log('=== MOBILE V1 APP WITH CLERK ===');
170-
console.log('Clerk key loaded:', clerkPublishableKey ? 'YES' : 'NO');
171-
}
172168

173169
// Lock orientation based on device type (phones: portrait only, tablets: all)
174170
useOrientationLock();

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.41.0",
4+
"version": "1.42.0",
55
"scripts": {
66
"start": "expo start",
77
"reset-project": "node ./scripts/reset-project.js",

0 commit comments

Comments
 (0)