Commit Graph

13 Commits

Author SHA1 Message Date
FlightControl 581414b259 Release automation preparation
-- Updated .launch files to work from workspace. So everybody can use
them from LDT.
-- Deleted obscolete .launch files.
-- Created new Moose_Create.lua script. Now lua makes the Dynamic and
Static Moose.lua stub.
-- One single file is the reference for the Moose sources: Moose.files
located in Moose Setup
-- Removed the l10n directory from Moose Setup\Moose Mission Update.
-- Removed the 7z and other outputs to update missions.
2017-03-29 09:50:39 +02:00
FlightControl 0ebcbb4879 Fix of bug #97
-- Fixed GROUP:IsAlive()
--- Returns if the Group is alive.
-- The Group must:
--
--   * Exist at run-time.
--   * Has at least one unit.
--
-- When the first @{Unit} of the Group is active, it will return true.
-- If the first @{Unit} of the Group is inactive, it will return false.
--
-- @param #GROUP self
-- @return #boolean true if the Group is alive and active.
-- @return #boolean false if the Group is alive but inactive.
-- @return #nil if the group does not exist anymore.

-- Fixed Identifiable:IsAlive()
--- Returns if the Identifiable is alive.
-- If the Identifiable is not alive, nil is returned.
-- If the Identifiable is alive, true is returned.
-- @param #IDENTIFIABLE self
-- @return #boolean true if Identifiable is alive.
-- @return #nil if the Identifiable is not existing or is not alive.

-- Fixed UNIT:IsAlive()
--- Returns if the Unit is alive.
-- If the Unit is not alive, nil is returned.
-- If the Unit is alive and active, true is returned.
-- If the Unit is alive but not active, false is returned.
-- @param #UNIT self
-- @return #boolean true if Unit is alive and active.
-- @return #boolean false if Unit is alive but not active.
-- @return #nil if the Unit is not existing or is not alive.

-- Updated all test missions, as this is a core change.
2017-03-27 10:34:51 +02:00
FlightControl b7166a1295 Testing 2017-03-23 19:15:37 +01:00
FlightControl 69c88bc2a6 Working missions 2017-03-23 13:36:03 +01:00
FlightControl aa806e19e1 Fixed spawn problems, i think ... 2017-03-23 12:57:46 +01:00
FlightControl cd69b8a879 Publish reworked missions with global variables 2017-03-18 14:42:03 +01:00
FlightControl 4e59f1a674 Final commit ... 2017-03-17 21:49:06 +01:00
FlightControl 7231492eaa Release prep 2017-03-17 11:50:24 +01:00
FlightControl 056bebe4c3 Updated all test missions 2017-03-15 19:09:33 +01:00
FlightControl d70d13449d Regression Testing 2017-03-10 22:40:16 +01:00
FlightControl 02c44c158f Updated mission briefing 2017-03-07 09:26:25 +01:00
FlightControl 8dc13f7a0c Finalization of patch. 2017-03-07 09:24:10 +01:00
FlightControl af85399975 Implemented event dispatching for GROUP
-- Created EVT-200 test mission
-- Documentation
2017-03-07 09:15:44 +01:00