diff --git a/01_DCS/Hooks/Perun.lua b/01_DCS/Hooks/Perun.lua index 5923a4f..96b9282 100644 --- a/01_DCS/Hooks/Perun.lua +++ b/01_DCS/Hooks/Perun.lua @@ -17,7 +17,7 @@ -- ########### END OF SETTINGS ########### -- Variable init - Perun.Version = "v0.3.4" + Perun.Version = "v0.3.5" Perun.StatusData = {} Perun.SlotsData = {} Perun.MissionData = {} @@ -100,6 +100,8 @@ temp['realtime']=DCS.getRealTime() temp['pause']=DCS.getPause() temp['multiplayer']=DCS.isMultiplayer() + temp['theatre'] = Perun.MissionData['mission']['theatre'] + temp['weather'] = Perun.MissionData['mission']['weather'] Perun.UpdateStatusPart("mission",temp) -- 2 - Players @@ -201,8 +203,8 @@ end Perun.onMissionLoadEnd = function() - Perun.UpdateSlots() Perun.UpdateMission() + Perun.UpdateSlots() Perun.UpdateVersion() Perun.UpdateJson() end diff --git a/02_Windows_App/Perun_v1/form_Main.cs b/02_Windows_App/Perun_v1/form_Main.cs index fc0d5c0..eec6497 100644 --- a/02_Windows_App/Perun_v1/form_Main.cs +++ b/02_Windows_App/Perun_v1/form_Main.cs @@ -46,7 +46,7 @@ namespace Perun_v1 string sql = ""; // Modify specific - if (type == "1") // Inject app version information + if (type == "1") // Inject app version information { udp_frame.payload["v_win"] = "v"+ publishVersion;