Skip to content

Commit 4dcc7cc

Browse files
committed
feat: Major release v2.0.0
- Added new fields for contacts to enhance information management - Introduced Material Expressive Design for a modern look and feel - Added preview screen for contacts for quick viewing - Implemented import/export functionality for contacts
1 parent f360de6 commit 4dcc7cc

35 files changed

+2777
-1782
lines changed

.github/prompts/alternate.prompt.md

Whitespace-only changes.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,6 @@ android/local.properties
5151

5252
# Android release files
5353
android/app/release/
54+
55+
# Test files
56+
test.ts

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ android {
101101
applicationId 'com.lulu786.Alternate'
102102
minSdkVersion rootProject.ext.minSdkVersion
103103
targetSdkVersion rootProject.ext.targetSdkVersion
104-
versionCode 3
105-
versionName "1.1.1"
104+
versionCode 4
105+
versionName "2.0.0"
106106
}
107107

108108
signingConfigs {

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
<!-- Explicitly remove permissions added by expo-file-system -->
55
<uses-permission android:name="android.permission.INTERNET" tools:node="remove" />
6-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="remove" />
7-
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" tools:node="remove" />
6+
<!-- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="remove" />
7+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" tools:node="remove" /> -->
88

99
<queries>
1010
<intent>

app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"expo": {
33
"name": "Alternate",
44
"slug": "Alternate",
5-
"version": "1.1.1",
5+
"version": "2.0.0",
66
"orientation": "portrait",
77
"scheme": "alternate",
88
"userInterfaceStyle": "automatic",

app/_layout.tsx

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,25 @@ export default function RootLayout() {
6363
/>
6464
<Stack.Screen
6565
name="new-contact"
66-
options={{ title: "Add Contact" }}
66+
options={{
67+
title: "Add Contact",
68+
header: (props) => (
69+
<CustomNavigationBar {...props} mode="small" />
70+
),
71+
}}
6772
/>
6873
<Stack.Screen
6974
name="edit-contact"
70-
options={{ title: "Edit Contact" }}
75+
options={{
76+
title: "Edit Contact",
77+
header: (props) => (
78+
<CustomNavigationBar
79+
{...props}
80+
mode="small"
81+
popToTop={true}
82+
/>
83+
),
84+
}}
7185
/>
7286
<Stack.Screen
7387
name="settings"

0 commit comments

Comments
 (0)