From a3ae38aed6bbca014ab6774268806443109d96b2 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 12 Jul 2023 22:09:43 +1000 Subject: [PATCH] Release v1.6.3 (#186) * fix(platforms): fix project with no platforms not generating app descriptor additions correctly * chore: version bump --- .../client/commands/project/GenerateAppDescriptorCommand.as | 3 +++ version.config | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/client/src/com/apm/client/commands/project/GenerateAppDescriptorCommand.as b/client/src/com/apm/client/commands/project/GenerateAppDescriptorCommand.as index 11a7819..42bc220 100644 --- a/client/src/com/apm/client/commands/project/GenerateAppDescriptorCommand.as +++ b/client/src/com/apm/client/commands/project/GenerateAppDescriptorCommand.as @@ -254,6 +254,9 @@ package com.apm.client.commands.project private function shouldProcessPlatform( platforms:Vector., platform:String ):Boolean { + if (platforms.length == 0) + return true; + for each (var item:Platform in platforms) { if (item.name == platform) return true; diff --git a/version.config b/version.config index d4ed6ef..1d00c69 100644 --- a/version.config +++ b/version.config @@ -1,6 +1,6 @@ -#Wed, 12 Jul 2023 16:28:17 +1000 +#Wed, 12 Jul 2023 22:08:30 +1000 version_major=1 version_minor=6 -version_build=2 +version_build=3 version_preview=