Skip to content

Commit 0104556

Browse files
authored
Merge pull request #180 from airsdk/feature/platform-specific-extensions-projects
Release v1.6.0
2 parents 8699d73 + 73e3d9d commit 0104556

File tree

162 files changed

+1243
-256
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+1243
-256
lines changed

client/src/APMConsoleApp.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package
1515
{

client/src/airsdk/AIRSDKVersion.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 28/8/21
12+
* @created 28/8/2021
1313
*/
1414
package airsdk
1515
{

client/src/airsdk/lib/ADTConfig.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 5/10/21
12+
* @created 5/10/2021
1313
*/
1414
package airsdk.lib
1515
{

client/src/com/apm/SemVer.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 4/6/21
12+
* @created 4/6/2021
1313
*/
1414
package com.apm
1515
{

client/src/com/apm/SemVerRange.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 4/6/21
12+
* @created 4/6/2021
1313
*/
1414
package com.apm
1515
{

client/src/com/apm/client/APM.as

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client
1515
{
@@ -27,6 +27,7 @@ package com.apm.client
2727
import com.apm.client.commands.packages.ListCommand;
2828
import com.apm.client.commands.packages.OutdatedCommand;
2929
import com.apm.client.commands.packages.PackageAddDependencyCommand;
30+
import com.apm.client.commands.packages.PackageCommand;
3031
import com.apm.client.commands.packages.PublishCommand;
3132
import com.apm.client.commands.packages.SearchCommand;
3233
import com.apm.client.commands.packages.UninstallCommand;
@@ -130,8 +131,9 @@ package com.apm.client
130131
addCommand( CreateCommand.NAME, CreateCommand );
131132
addCommand( BuildCommand.NAME, BuildCommand );
132133
addCommand( PublishCommand.NAME, PublishCommand );
134+
addCommand( PackageCommand.NAME, PackageCommand );
133135
addCommand( PackageAddDependencyCommand.NAME, PackageAddDependencyCommand );
134-
136+
135137
// air sdk commands
136138
addCommand( AIRSDKListCommand.NAME, AIRSDKListCommand );
137139
addCommand( AIRSDKViewCommand.NAME, AIRSDKViewCommand );

client/src/com/apm/client/analytics/Analytics.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 6/8/21
12+
* @created 6/8/2021
1313
*/
1414
package com.apm.client.analytics
1515
{

client/src/com/apm/client/commands/Command.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands
1515
{

client/src/com/apm/client/commands/airsdk/AIRSDKInstallCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands.airsdk
1515
{

client/src/com/apm/client/commands/airsdk/AIRSDKListCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands.airsdk
1515
{

client/src/com/apm/client/commands/airsdk/AIRSDKViewCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands.airsdk
1515
{

client/src/com/apm/client/commands/airsdk/processes/DownloadAIRSDKProcess.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 28/5/21
12+
* @created 28/5/2021
1313
*/
1414
package com.apm.client.commands.airsdk.processes
1515
{

client/src/com/apm/client/commands/airsdk/processes/InstallAIRSDKFinaliseProcess.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 8/9/21
12+
* @created 8/9/2021
1313
*/
1414
package com.apm.client.commands.airsdk.processes
1515
{

client/src/com/apm/client/commands/general/ConfigCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands.general
1515
{

client/src/com/apm/client/commands/general/HelpCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands.general
1515
{

client/src/com/apm/client/commands/general/UpgradeCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands.general
1515
{

client/src/com/apm/client/commands/general/VersionCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands.general
1515
{

client/src/com/apm/client/commands/packages/BuildCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands.packages
1515
{

client/src/com/apm/client/commands/packages/CreateCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands.packages
1515
{

client/src/com/apm/client/commands/packages/InstallCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands.packages
1515
{

client/src/com/apm/client/commands/packages/ListCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands.packages
1515
{

client/src/com/apm/client/commands/packages/OutdatedCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @brief
1212
* @author marchbold
13-
* @created 27/10/21
13+
* @created 27/10/2021
1414
* @copyright http://distriqt.com/copyright/license.txt
1515
*/
1616
package com.apm.client.commands.packages

client/src/com/apm/client/commands/packages/PackageAddDependencyCommand.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* http://distriqt.com
1010
*
1111
* @author Michael (https://github.com/marchbold)
12-
* @created 18/5/21
12+
* @created 18/5/2021
1313
*/
1414
package com.apm.client.commands.packages
1515
{

0 commit comments

Comments
 (0)