Skip to content

Commit

Permalink
Merge pull request #180 from airsdk/feature/platform-specific-extensi…
Browse files Browse the repository at this point in the history
…ons-projects

Release v1.6.0
  • Loading branch information
marchbold authored Jun 22, 2023
2 parents 8699d73 + 73e3d9d commit 0104556
Show file tree
Hide file tree
Showing 162 changed files with 1,243 additions and 256 deletions.
2 changes: 1 addition & 1 deletion client/src/APMConsoleApp.as
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package
{
Expand Down
2 changes: 1 addition & 1 deletion client/src/airsdk/AIRSDKVersion.as
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 28/8/21
* @created 28/8/2021
*/
package airsdk
{
Expand Down
2 changes: 1 addition & 1 deletion client/src/airsdk/lib/ADTConfig.as
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 5/10/21
* @created 5/10/2021
*/
package airsdk.lib
{
Expand Down
2 changes: 1 addition & 1 deletion client/src/com/apm/SemVer.as
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 4/6/21
* @created 4/6/2021
*/
package com.apm
{
Expand Down
2 changes: 1 addition & 1 deletion client/src/com/apm/SemVerRange.as
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 4/6/21
* @created 4/6/2021
*/
package com.apm
{
Expand Down
6 changes: 4 additions & 2 deletions client/src/com/apm/client/APM.as
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client
{
Expand All @@ -27,6 +27,7 @@ package com.apm.client
import com.apm.client.commands.packages.ListCommand;
import com.apm.client.commands.packages.OutdatedCommand;
import com.apm.client.commands.packages.PackageAddDependencyCommand;
import com.apm.client.commands.packages.PackageCommand;
import com.apm.client.commands.packages.PublishCommand;
import com.apm.client.commands.packages.SearchCommand;
import com.apm.client.commands.packages.UninstallCommand;
Expand Down Expand Up @@ -130,8 +131,9 @@ package com.apm.client
addCommand( CreateCommand.NAME, CreateCommand );
addCommand( BuildCommand.NAME, BuildCommand );
addCommand( PublishCommand.NAME, PublishCommand );
addCommand( PackageCommand.NAME, PackageCommand );
addCommand( PackageAddDependencyCommand.NAME, PackageAddDependencyCommand );

// air sdk commands
addCommand( AIRSDKListCommand.NAME, AIRSDKListCommand );
addCommand( AIRSDKViewCommand.NAME, AIRSDKViewCommand );
Expand Down
2 changes: 1 addition & 1 deletion client/src/com/apm/client/analytics/Analytics.as
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 6/8/21
* @created 6/8/2021
*/
package com.apm.client.analytics
{
Expand Down
2 changes: 1 addition & 1 deletion client/src/com/apm/client/commands/Command.as
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands.airsdk
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands.airsdk
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands.airsdk
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 28/5/21
* @created 28/5/2021
*/
package com.apm.client.commands.airsdk.processes
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 8/9/21
* @created 8/9/2021
*/
package com.apm.client.commands.airsdk.processes
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands.general
{
Expand Down
2 changes: 1 addition & 1 deletion client/src/com/apm/client/commands/general/HelpCommand.as
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands.general
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands.general
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands.general
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands.packages
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands.packages
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands.packages
{
Expand Down
2 changes: 1 addition & 1 deletion client/src/com/apm/client/commands/packages/ListCommand.as
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands.packages
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*
* @brief
* @author marchbold
* @created 27/10/21
* @created 27/10/2021
* @copyright http://distriqt.com/copyright/license.txt
*/
package com.apm.client.commands.packages
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://distriqt.com
*
* @author Michael (https://github.com/marchbold)
* @created 18/5/21
* @created 18/5/2021
*/
package com.apm.client.commands.packages
{
Expand Down
Loading

0 comments on commit 0104556

Please sign in to comment.