Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Mijnhout committed Aug 24, 2017
2 parents 23af185 + ebb78b3 commit f01dfc6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
Changelog based on guidelines from [Keep a CHANGELOG](http://keepachangelog.com/).

## 1.0.2
#### Fixed:
- script_time_radar.lua had a bug, not sending messages.

## 1.0.1
#### Fixed:
- script_timae_radar.lua script now uses alert virtual hardware device with status updates.
- script_timae_traffic.lua script now uses alert virtual hardware device with status updates.
- script_time_radar.lua script now uses alert virtual hardware device with status updates.
- script_time_traffic.lua script now uses alert virtual hardware device with status updates.

## 1.0.0
#### Added:
- script_timae_radar.lua script.
- script_timae_traffic.lua script.
- script_time_radar.lua script.
- script_time_traffic.lua script.
2 changes: 1 addition & 1 deletion script_time_radar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ end
message = message.." (update "..tostring(os.date("%H:%M"))..")"

-- send message if radars are found
if radar_found and message_sent == 0 then
if total_radars > 0 and message_sent == 0 then
commandArray["SendNotification"] = message
commandArray["Variable:"..user_variable_name] = "1"
end
Expand Down

0 comments on commit f01dfc6

Please sign in to comment.