Skip to content

Commit

Permalink
Release v1.6.3 (#186)
Browse files Browse the repository at this point in the history
* fix(platforms): fix project with no platforms not generating app descriptor additions correctly

* chore: version bump
  • Loading branch information
marchbold authored Jul 12, 2023
1 parent 8665e8f commit a3ae38a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,9 @@ package com.apm.client.commands.project

private function shouldProcessPlatform( platforms:Vector.<Platform>, platform:String ):Boolean
{
if (platforms.length == 0)
return true;

for each (var item:Platform in platforms)
{
if (item.name == platform) return true;
Expand Down
4 changes: 2 additions & 2 deletions version.config
Original file line number Diff line number Diff line change
@@ -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=

0 comments on commit a3ae38a

Please sign in to comment.