From 426269c625d029ef481afb9f621cf676e918dad7 Mon Sep 17 00:00:00 2001 From: Norbel AMBANUMBEN Date: Wed, 31 May 2023 07:15:50 +0100 Subject: [PATCH] Updated app for 3.8.2 release (#518) --- Podfile.lock | 10 +++++----- ooniprobe.xcodeproj/project.pbxproj | 8 ++++---- ooniprobe/Utility/LocalizationUtility.m | 5 ++++- ooniprobe/pt-BR.lproj/Localizable.strings | 2 +- 4 files changed, 14 insertions(+), 11 deletions(-) diff --git a/Podfile.lock b/Podfile.lock index 861e75ba..29fc3175 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -9,7 +9,7 @@ PODS: - MBProgressHUD (1.2.0) - MKDropdownMenu (1.4) - OCMapper (2.0) - - oonimkall (2023.03.16-174001) + - oonimkall (2023.05.11-062246) - RHMarkdownLabel (0.0.1): - TTTAttributedLabel - XNGMarkdownParser @@ -30,7 +30,7 @@ DEPENDENCIES: - MBProgressHUD - MKDropdownMenu - OCMapper (= 2.0) - - oonimkall (from `https://github.com/ooni/probe-cli/releases/download/v3.17.1/oonimkall.podspec`) + - oonimkall (from `https://github.com/ooni/probe-cli/releases/download/v3.17.2/oonimkall.podspec`) - RHMarkdownLabel - Sentry (from `https://github.com/getsentry/sentry-cocoa.git`, tag `6.1.4`) - SharkORM (from `https://github.com/sharksync/sharkorm`, tag `v2.3.67`) @@ -53,7 +53,7 @@ SPEC REPOS: EXTERNAL SOURCES: oonimkall: - :podspec: https://github.com/ooni/probe-cli/releases/download/v3.17.1/oonimkall.podspec + :podspec: https://github.com/ooni/probe-cli/releases/download/v3.17.2/oonimkall.podspec Sentry: :git: https://github.com/getsentry/sentry-cocoa.git :tag: 6.1.4 @@ -78,7 +78,7 @@ SPEC CHECKSUMS: MBProgressHUD: 3ee5efcc380f6a79a7cc9b363dd669c5e1ae7406 MKDropdownMenu: 269df4a41d21a1db684ce8bc709befe419fc5bae OCMapper: 9b4d542543794c42adc01f1493d894f53e193cb0 - oonimkall: 9332287f0c14e5b665d981b5c39297d168f52907 + oonimkall: 00a0672bc8e98254fb150185d1dc71c58006c75d RHMarkdownLabel: 81d6772768e621be57302b7fd5212ad4f78fb0bd Sentry: 9d055e2de30a77685e86b219acf02e59b82091fc SharkORM: 252e4411923110ac1b524a993ee2b3fa13eed7c4 @@ -86,6 +86,6 @@ SPEC CHECKSUMS: TTTAttributedLabel: 8cffe8e127e4e82ff3af1e5386d4cd0ad000b656 XNGMarkdownParser: aed98c14f0c0eb20064184ddf9bac26c482722b2 -PODFILE CHECKSUM: 018c5fd3f524c937542870c41216f1bfe526c706 +PODFILE CHECKSUM: 7f887c7f76b13f0f7b8a2822681e1ce01c419e67 COCOAPODS: 1.12.1 diff --git a/ooniprobe.xcodeproj/project.pbxproj b/ooniprobe.xcodeproj/project.pbxproj index d17cddbf..1283a6b8 100644 --- a/ooniprobe.xcodeproj/project.pbxproj +++ b/ooniprobe.xcodeproj/project.pbxproj @@ -1988,7 +1988,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 124; + CURRENT_PROJECT_VERSION = 125; DEVELOPMENT_TEAM = MADPSAYN6T; ENABLE_BITCODE = NO; FRAMEWORK_SEARCH_PATHS = "$(inherited)"; @@ -2011,7 +2011,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited)"; LIBRARY_SEARCH_PATHS = "$(inherited)"; - MARKETING_VERSION = 3.8.0; + MARKETING_VERSION = 3.8.2; PRODUCT_BUNDLE_IDENTIFIER = org.openobservatory.ooniprobe; PRODUCT_NAME = ooniprobe; PROVISIONING_PROFILE = ""; @@ -2037,7 +2037,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 124; + CURRENT_PROJECT_VERSION = 125; DEVELOPMENT_TEAM = MADPSAYN6T; ENABLE_BITCODE = NO; ENABLE_NS_ASSERTIONS = NO; @@ -2061,7 +2061,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited)"; LIBRARY_SEARCH_PATHS = "$(inherited)"; - MARKETING_VERSION = 3.8.0; + MARKETING_VERSION = 3.8.2; PRODUCT_BUNDLE_IDENTIFIER = org.openobservatory.ooniprobe; PRODUCT_NAME = ooniprobe; PROVISIONING_PROFILE = ""; diff --git a/ooniprobe/Utility/LocalizationUtility.m b/ooniprobe/Utility/LocalizationUtility.m index ced8eb55..e6ec4c09 100644 --- a/ooniprobe/Utility/LocalizationUtility.m +++ b/ooniprobe/Utility/LocalizationUtility.m @@ -7,7 +7,10 @@ + (NSString*)getNameForTest:(NSString*)testName { NSDictionary *stringDict = [NSDictionary dictionaryWithContentsOfFile:plistPath]; if ([stringDict objectForKey:testName]) return NSLocalizedString([stringDict objectForKey:testName], nil); - return NSLocalizedString(@"TestResults.Overview.Hero.Tests", nil); + else if (testName == nil) + return NSLocalizedString(@"TestResults.Overview.Hero.Tests", nil); + else + return testName; } + (NSString*)getFilterNameForTest:(NSString*)testName { diff --git a/ooniprobe/pt-BR.lproj/Localizable.strings b/ooniprobe/pt-BR.lproj/Localizable.strings index 6d502eb0..4914e7d5 100644 --- a/ooniprobe/pt-BR.lproj/Localizable.strings +++ b/ooniprobe/pt-BR.lproj/Localizable.strings @@ -70,7 +70,7 @@ "Dashboard.Experimental.Card.Description" = "Executar novos testes experimentais"; "Dashboard.Experimental.Overview.Paragraph" = "Execute os seguintes novos testes experimentais desenvolvidos pela equipe OONI:\n%@\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e [OONI API](https://api.ooni.io/)."; "Dashboard.Experimental.Overview.Paragraph.AutomatedTesting" = "Os testes a seguir serão executados apenas como parte de testes automatizados:"; -"Dashboard.DisabledTests.Label" = "Disabled Tests"; +"Dashboard.DisabledTests.Label" = "Testes Desabilitados"; "TestResults.Gbps" = "Gbit/s"; "TestResults.Mbps" = "Mbit/s"; "TestResults.Kbps" = "kbit/s";