Skip to content

Commit 8df45ac

Browse files
committed
v3.2.4 - removed camera temporarily
1 parent 95c17e1 commit 8df45ac

File tree

7 files changed

+74
-49
lines changed

7 files changed

+74
-49
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ android {
136136
applicationId "com.geotech.openlittermap"
137137
minSdkVersion rootProject.ext.minSdkVersion
138138
targetSdkVersion rootProject.ext.targetSdkVersion
139-
versionCode 32 // increment this
140-
versionName "3.2.3"
139+
versionCode 33 // increment this
140+
versionName "3.2.4"
141141
missingDimensionStrategy 'react-native-camera', 'general'
142142
multiDexEnabled true
143143
}
120 KB
Binary file not shown.

assets/langs/en/leftpage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"thank-you": "Thank you!!!",
1515
"you-have-uploaded": "You have uploaded {count} photos",
1616
"close": "Close",
17-
"take-photo": "Take a photo or select from gallery",
17+
"take-photo": "Take a photo and select it from the gallery",
1818
"no-images": "No images to upload",
1919
"camera": "Camera"
2020
}

ios/openlittermap.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -925,7 +925,7 @@
925925
CLANG_ENABLE_MODULES = YES;
926926
CODE_SIGN_IDENTITY = "Apple Development";
927927
CODE_SIGN_STYLE = Automatic;
928-
CURRENT_PROJECT_VERSION = 46;
928+
CURRENT_PROJECT_VERSION = 47;
929929
DEAD_CODE_STRIPPING = NO;
930930
DEVELOPMENT_TEAM = QWDQLVZP87;
931931
INFOPLIST_FILE = openlittermap/Info.plist;
@@ -934,7 +934,7 @@
934934
"$(inherited)",
935935
"@executable_path/Frameworks",
936936
);
937-
MARKETING_VERSION = 3.2.3;
937+
MARKETING_VERSION = 3.2.4;
938938
OTHER_LDFLAGS = (
939939
"$(inherited)",
940940
"-ObjC",
@@ -958,15 +958,15 @@
958958
CLANG_ENABLE_MODULES = YES;
959959
CODE_SIGN_IDENTITY = "Apple Development";
960960
CODE_SIGN_STYLE = Automatic;
961-
CURRENT_PROJECT_VERSION = 46;
961+
CURRENT_PROJECT_VERSION = 47;
962962
DEVELOPMENT_TEAM = QWDQLVZP87;
963963
INFOPLIST_FILE = openlittermap/Info.plist;
964964
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
965965
LD_RUNPATH_SEARCH_PATHS = (
966966
"$(inherited)",
967967
"@executable_path/Frameworks",
968968
);
969-
MARKETING_VERSION = 3.2.3;
969+
MARKETING_VERSION = 3.2.4;
970970
OTHER_LDFLAGS = (
971971
"$(inherited)",
972972
"-ObjC",

package-lock.json

Lines changed: 52 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

routes/tabRoutes.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,11 @@ const TabRoutes = ({ navigation }) => (
101101
}
102102
}}>
103103
<Tab.Screen name="HOME" component={HomeScreen} />
104-
<Tab.Screen
105-
name="CAMERA"
106-
component={CameraScreen}
107-
options={{ unmountOnBlur: true }}
108-
/>
104+
{/*<Tab.Screen*/}
105+
{/* name="CAMERA"*/}
106+
{/* component={CameraScreen}*/}
107+
{/* options={{ unmountOnBlur: true }}*/}
108+
{/*/>*/}
109109
<Tab.Screen name="TEAM" component={TeamStack} />
110110
<Tab.Screen name="GLOBAL_DATA" component={GlobalDataScreen} />
111111

screens/setting/SettingsScreen.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,16 @@ class SettingsScreen extends Component {
132132
}
133133
]
134134
},
135+
{
136+
title: 'settings.picked-up',
137+
data: [
138+
{
139+
id: 11,
140+
key: 'picked-up',
141+
title: 'settings.litter-picked-up'
142+
}
143+
]
144+
},
135145
{
136146
title: 'settings.privacy',
137147
data: [
@@ -170,16 +180,6 @@ class SettingsScreen extends Component {
170180
'settings.show-username-createdby'
171181
}
172182
]
173-
},
174-
{
175-
title: 'settings.picked-up',
176-
data: [
177-
{
178-
id: 11,
179-
key: 'picked-up',
180-
title: 'settings.litter-picked-up'
181-
}
182-
]
183183
}
184184
// Temp commented out. This feature will be fixed in a future release.
185185
// {

0 commit comments

Comments
 (0)