Skip to content
Merged
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
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ android {
applicationId 'org.ZingoLabs.Zingo' // Real
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 304 // Real
versionName "zingo-2.0.17" // Real
versionCode 305 // Real
versionName "zingo-2.0.18" // Real
testBuildType System.getProperty('testBuildType', 'debug')
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
externalNativeBuild {
Expand Down
2 changes: 1 addition & 1 deletion app/translations/en.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"zingo": "Zingo",
"version": "zingo-2.0.17 (304)",
"version": "zingo-2.0.18 (305)",
"loading": "loading...",
"connectingserver": "Connecting to the server...",
"wait": "Please wait...",
Expand Down
2 changes: 1 addition & 1 deletion app/translations/es.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"zingo": "Zingo",
"version": "zingo-2.0.17 (304)",
"version": "zingo-2.0.18 (305)",
"loading": "cargando...",
"connectingserver": "Conectando con el servidor...",
"wait": "Por favor espere...",
Expand Down
2 changes: 1 addition & 1 deletion app/translations/pt.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"zingo": "Zingo",
"version": "zingo-2.0.17 (304)",
"version": "zingo-2.0.18 (305)",
"loading": "carregando...",
"connectingserver": "Conectando-se ao servidor...",
"wait": "Aguarde um momento...",
Expand Down
2 changes: 1 addition & 1 deletion app/translations/ru.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"zingo": "Zingo",
"version": "zingo-2.0.17 (304)",
"version": "zingo-2.0.18 (305)",
"loading": "загрузка...",
"connectingserver": "Подключение к серверу...",
"wait": "Пожалуйста, подождите...",
Expand Down
2 changes: 1 addition & 1 deletion app/translations/tr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"zingo": "Zingo",
"version": "zingo-2.0.17 (304)",
"version": "zingo-2.0.18 (305)",
"loading": "Yükleniyor...",
"connectingserver": "Sunucuya bağlanılıyor...",
"wait": "Lütfen bekleyin...",
Expand Down
2 changes: 1 addition & 1 deletion components/History/components/Filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ const Filters: React.FunctionComponent<FiltersProps> = ({
</TouchableOpacity>
<TouchableOpacity
onPress={() => {
setFilterWithFundsLocal(!filterWithFunds);
setFilterWithFundsLocal(!filterWithFundsLocal);
}}>
<View
style={{
Expand Down
8 changes: 4 additions & 4 deletions ios/Zingo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Zingo/Zingo.entitlements;
CURRENT_PROJECT_VERSION = 304;
CURRENT_PROJECT_VERSION = 305;
DEPLOYMENT_POSTPROCESSING = YES;
DEVELOPMENT_TEAM = 788KRST4S8;
ENABLE_BITCODE = NO;
Expand All @@ -586,7 +586,7 @@
"$(PROJECT_DIR)",
"$(inherited)",
);
MARKETING_VERSION = 2.0.17;
MARKETING_VERSION = 2.0.18;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand All @@ -610,7 +610,7 @@
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Zingo/Zingo.entitlements;
CURRENT_PROJECT_VERSION = 304;
CURRENT_PROJECT_VERSION = 305;
DEPLOYMENT_POSTPROCESSING = YES;
DEVELOPMENT_TEAM = 788KRST4S8;
ENABLE_BITCODE = NO;
Expand All @@ -628,7 +628,7 @@
"$(PROJECT_DIR)",
"$(inherited)",
);
MARKETING_VERSION = 2.0.17;
MARKETING_VERSION = 2.0.18;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zingo-mobile",
"version": "2.0.17",
"version": "2.0.18",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand Down
Loading