Skip to content

Commit

Permalink
Update mobile build numbers to 2.4.0 and fix discovery date typo (#2142)
Browse files Browse the repository at this point in the history
* remove extra equals sign in test/terragrunt.hcl

* Update gradle build number

* Update iOS build number

* Fix discovery date typo
  • Loading branch information
ssylver93 authored Nov 8, 2024
1 parent 975d313 commit 48597ad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 155
versionName "2.3.9"
versionName "2.4.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@
INFOPLIST_KEY_CFBundleDisplayName = "BC Wildfire";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 3.1.8;
MARKETING_VERSION = 2.4.0;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = ca.bc.gov.WildfireInformation;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -391,7 +391,7 @@
INFOPLIST_KEY_CFBundleDisplayName = "BC Wildfire";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 3.1.8;
MARKETING_VERSION = 2.4.0;
PRODUCT_BUNDLE_IDENTIFIER = ca.bc.gov.WildfireInformation;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class WildFiresListComponent
{ description: 'Fire Centre', code: 'fireCentreName' },
{ description: 'Name', code: 'incidentName' },
{ description: 'Stage of Control', code: 'stageOfControlCode' },
{ description: 'Discovey Date', code: 'discoveryDate' },
{ description: 'Discovery Date', code: 'discoveryDate' },
{ description: 'Last Updated', code: 'lastUpdatedTimestamp' },
];
public selectedSortValue = '';
Expand Down Expand Up @@ -152,7 +152,7 @@ export class WildFiresListComponent

if (val.length > 2) {
this.filteredOptions = [];
this.placeData.searchAddresses(val).then(function(results) {
this.placeData.searchAddresses(val).then(function (results) {
if (results) {
results.forEach((result) => {
self.sortedAddressList =
Expand Down

0 comments on commit 48597ad

Please sign in to comment.