Merge branch 'develop' into FF/Develop

This commit is contained in:
funkyfranky
2018-05-22 17:03:35 +02:00
43 changed files with 46 additions and 46 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
version: 3.9.1.{build} version: 2.4.a.{build}
shallow_clone: true shallow_clone: true
skip_branch_with_pr: false skip_branch_with_pr: false
skip_commits: skip_commits:
@@ -17,6 +17,7 @@ environment:
platform: platform:
- x64 - x64
init: init:
- ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod ` - ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | ` https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
@@ -61,7 +62,7 @@ build_script:
$project = Invoke-RestMethod -method Post -Uri "$apiUrl/builds" -Headers $headers -Body $RequestBody $project = Invoke-RestMethod -method Post -Uri "$apiUrl/builds" -Headers $headers -Body $RequestBody
} }
- ps: | - ps: |
if( $env:appveyor_repo_branch -eq 'master' ) if( $env:appveyor_repo_branch -eq 'master' -or $env:appveyor_repo_branch -eq 'develop' )
{ {
$apiUrl = 'https://ci.appveyor.com/api' $apiUrl = 'https://ci.appveyor.com/api'
$token = 'qts80b5kpq0ooj4x6vvw' $token = 'qts80b5kpq0ooj4x6vvw'
@@ -69,13 +70,12 @@ build_script:
"Authorization" = "Bearer $token" "Authorization" = "Bearer $token"
"Content-type" = "application/json" "Content-type" = "application/json"
} }
$RequestBody = @{ accountName = 'FlightControl-Master'; projectSlug = 'moose-docs'; branch = 'master'; environmentVariables = @{} } | ConvertTo-Json $RequestBody = @{ accountName = 'FlightControl-Master'; projectSlug = 'moose-docs'; branch = "$env:appveyor_repo_branch"; environmentVariables = @{} } | ConvertTo-Json
# get project with last build details # get project with last build details
$project = Invoke-RestMethod -method Post -Uri "$apiUrl/builds" -Headers $headers -Body $RequestBody $project = Invoke-RestMethod -method Post -Uri "$apiUrl/builds" -Headers $headers -Body $RequestBody
} }
test: off test: off
# test_script: # test_script:
# - cmd: luacheck "Moose Development\Moose\moose.lua" "Moose Mission Setup\moose.lua" # - cmd: luacheck "Moose Development\Moose\moose.lua" "Moose Mission Setup\moose.lua"
+1 -1
View File
@@ -1,6 +1,6 @@
--- **AI** -- (R2.2) - Models the process of Combat Air Patrol (CAP) for airplanes. --- **AI** -- (R2.2) - Models the process of Combat Air Patrol (CAP) for airplanes.
-- --
-- This is a class used in the @{AI_A2A_Dispatcher}. -- This is a class used in the @{AI.AI_A2A_Dispatcher}.
-- --
-- === -- ===
-- --
@@ -155,7 +155,7 @@
-- ### Authors: **FlightControl** rework of GCICAP + introduction of new concepts (squadrons). -- ### Authors: **FlightControl** rework of GCICAP + introduction of new concepts (squadrons).
-- ### Authors: **Stonehouse**, **SNAFU** in terms of the advice, documentation, and the original GCICAP script. -- ### Authors: **Stonehouse**, **SNAFU** in terms of the advice, documentation, and the original GCICAP script.
-- --
-- @module AI_A2A_Dispatcher -- @module AI.AI_A2A_Dispatcher
+1 -1
View File
@@ -9,7 +9,7 @@
-- --
-- === -- ===
-- --
-- @module Base -- @module Core.Base
+1 -1
View File
@@ -7,7 +7,7 @@
-- --
-- === -- ===
-- --
-- @module Database -- @module Core.Database
--- @type DATABASE --- @type DATABASE
+1 -1
View File
@@ -164,7 +164,7 @@
-- --
-- === -- ===
-- --
-- @module Event -- @module Core.Event
--- The EVENT structure --- The EVENT structure
+1 -1
View File
@@ -64,7 +64,7 @@
-- --
-- === -- ===
-- --
-- @module Fsm -- @module Core.Fsm
do -- FSM do -- FSM
+1 -1
View File
@@ -10,7 +10,7 @@
-- --
-- === -- ===
-- --
-- @module Goal -- @module Core.Goal
do -- Goal do -- Goal
+1 -1
View File
@@ -30,7 +30,7 @@
-- --
-- === -- ===
-- --
-- @module Menu -- @module Core.Menu
MENU_INDEX = {} MENU_INDEX = {}
+1 -1
View File
@@ -4,7 +4,7 @@
-- --
-- === -- ===
-- --
-- @module Message -- @module Core.Message
--- The MESSAGE class --- The MESSAGE class
-- @type MESSAGE -- @type MESSAGE
+1 -1
View File
@@ -26,7 +26,7 @@
-- --
-- ### Contributions: -- ### Contributions:
-- --
-- @module Point -- @module Core.Point
+1 -1
View File
@@ -32,7 +32,7 @@
-- --
-- ### Author: Hugues "Grey_Echo" Bousquet -- ### Author: Hugues "Grey_Echo" Bousquet
-- --
-- @module Radio -- @module Core.Radio
--- # RADIO class, extends @{Base#BASE} --- # RADIO class, extends @{Base#BASE}
@@ -30,7 +30,7 @@
-- ### Contributions: - -- ### Contributions: -
-- ### Authors: FlightControl : Design & Programming -- ### Authors: FlightControl : Design & Programming
-- --
-- @module ScheduleDispatcher -- @module Core.ScheduleDispatcher
--- The SCHEDULEDISPATCHER structure --- The SCHEDULEDISPATCHER structure
-- @type SCHEDULEDISPATCHER -- @type SCHEDULEDISPATCHER
+1 -1
View File
@@ -39,7 +39,7 @@
-- --
-- === -- ===
-- --
-- @module Scheduler -- @module Core.Scheduler
--- The SCHEDULER class --- The SCHEDULER class
+1 -1
View File
@@ -30,7 +30,7 @@
-- --
-- === -- ===
-- --
-- @module Set -- @module Core.Set
--- @type SET_BASE --- @type SET_BASE
+1 -1
View File
@@ -16,7 +16,7 @@
-- --
-- * **FlightControl**: Design & Programming -- * **FlightControl**: Design & Programming
-- --
-- @module Settings -- @module Core.Settings
--- @type SETTINGS --- @type SETTINGS
+1 -1
View File
@@ -21,7 +21,7 @@
-- --
-- === -- ===
-- --
-- @module Spawn -- @module Core.Spawn
--- SPAWN Class --- SPAWN Class
+1 -1
View File
@@ -29,7 +29,7 @@
-- --
-- === -- ===
-- --
-- @module SpawnStatic -- @module Core.SpawnStatic
+1 -1
View File
@@ -38,7 +38,7 @@
-- --
-- === -- ===
-- --
-- @module Spot -- @module Core.Spot
do do
+1 -1
View File
@@ -10,7 +10,7 @@
-- --
-- === -- ===
-- --
-- @module UserFlag -- @module Core.UserFlag
do -- UserFlag do -- UserFlag
+1 -1
View File
@@ -10,7 +10,7 @@
-- --
-- === -- ===
-- --
-- @module UserSound -- @module Core.UserSound
do -- UserSound do -- UserSound
+1 -1
View File
@@ -7,7 +7,7 @@
-- --
-- === -- ===
-- --
-- @module Velocity -- @module Core.Velocity
do -- Velocity do -- Velocity
+1 -1
View File
@@ -34,7 +34,7 @@
-- --
-- === -- ===
-- --
-- @module Zone -- @module Core.Zone
--- @type ZONE_BASE --- @type ZONE_BASE
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCSAirbase -- @module DCS.DCSAirbase
--- Represents airbases: airdromes, helipads and ships with flying decks or landing pads. --- Represents airbases: airdromes, helipads and ships with flying decks or landing pads.
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCSCoalitionObject -- @module DCS.DCSCoalitionObject
--- @type CoalitionObject --- @type CoalitionObject
-- @extends Dcs.DCSWrapper.Object#Object -- @extends Dcs.DCSWrapper.Object#Object
+1 -1
View File
@@ -1,4 +1,4 @@
--- @module DCSCommand --- @module DCS.DCSCommand
--- @type Command --- @type Command
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCSController -- @module DCS.DCSController
--- Controller is an object that performs A.I.-routines. Other words controller is an instance of A.I.. Controller stores current main task, active enroute tasks and behavior options. Controller performs commands. Please, read DCS A-10C GUI Manual EN.pdf chapter "Task Planning for Unit Groups", page 91 to understand A.I. system of DCS:A-10C. --- Controller is an object that performs A.I.-routines. Other words controller is an instance of A.I.. Controller stores current main task, active enroute tasks and behavior options. Controller performs commands. Please, read DCS A-10C GUI Manual EN.pdf chapter "Task Planning for Unit Groups", page 91 to understand A.I. system of DCS:A-10C.
-- --
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCSGroup -- @module DCS.DCSGroup
--- Represents group of Units. --- Represents group of Units.
-- @type Group -- @type Group
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCSObject -- @module DCS.DCSObject
--- @type Object --- @type Object
-- @field #Object.Category Category -- @field #Object.Category Category
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCSStaticObject -- @module DCS.DCSStaticObject
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
+1 -1
View File
@@ -1,4 +1,4 @@
--- @module DCSTask --- @module DCS.DCSTask
--- A task descriptor (internal structure for DCS World) --- A task descriptor (internal structure for DCS World)
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCSTime -- @module DCS.DCSTime
--- @type ModelTime --- @type ModelTime
-- @extends #number -- @extends #number
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCSTypes -- @module DCS.DCSTypes
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCSUnit -- @module DCS.DCSUnit
--- @type Unit --- @type Unit
-- @extends Dcs.DCSCoalitionWrapper.Object#CoalitionObject -- @extends Dcs.DCSCoalitionWrapper.Object#CoalitionObject
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCSVec3 -- @module DCS.DCSVec3
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCSZone -- @module DCS.DCSZone
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCScoalition -- @module DCS.DCScoalition
--- @type coalition --- @type coalition
-- @field #coalition.side side -- @field #coalition.side side
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCScountry -- @module DCS.DCScountry
--- @type country --- @type country
-- @field #country.id id -- @field #country.id id
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module env -- @module DCS.DCSenv
--- @type env --- @type env
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module land -- @module DCS.land
--- @type land --- @type land
-- @field #land.SurfaceType SurfaceType -- @field #land.SurfaceType SurfaceType
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCStimer -- @module DCS.DCStimer
--- @type timer --- @type timer
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCStrigger -- @module DCS.DCStrigger
trigger = {} --#timer trigger = {} --#timer
+1 -1
View File
@@ -1,5 +1,5 @@
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- @module DCSWorld -- @module DCS.DCSWorld
--- @type world --- @type world
-- @field #world.event event -- @field #world.event event