-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated README.md, Changelogs and added test script.
- Loading branch information
1 parent
f9ec0fc
commit d89ba6f
Showing
5 changed files
with
71 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,25 @@ | ||
### Changes: | ||
### General Improvements | ||
- Modified method of setting version number. Now provided at compile time through ldflags | ||
- Built and tested basic Release Generation Pipelines for both Prereleases and Proper releases. | ||
- Added block to prevent spamming out transmittions that include blank titles and messages. | ||
- Corrected reconnect protocal to function as expected. | ||
- Broken connections will not be reestablished until 1 second after connection was lost. | ||
- Discord Webhooks how hidden unless hovered over. | ||
- Refactored internal package names for clarity. | ||
- Version of the change log is now present within the Plugin Info Page. | ||
- Limited to changes since last non prerelease. (Contents of MAJOR_CHANGELOG.md in repo) | ||
- Discord Webhooks how hidden unless hovered over. | ||
- Updated README.md | ||
- Removed certain planned features. | ||
|
||
### Bug Fixes | ||
- Added block to prevent spamming out transmittions that include blank titles and messages. | ||
- Corrected reconnect protocal to function as expected. | ||
- Broken connections will not be reestablished until 1 second after connection was lost. | ||
|
||
### New Features | ||
- Added ability to have transmit counts. | ||
- Updated within the GUI once every 5 seconds currently. | ||
- Logs for the plugin spesifically are now visible within the UI. | ||
- Refreshes every 5 seconds | ||
- Refreshes every 5 seconds | ||
- Implemented New Relay Transmitters. | ||
- Discord Advance | ||
- Makes use of Embed elements in Discord messages. | ||
- Currently provides limited benefit over normal Discord Transmitter. | ||
- Pushbullet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
while true | ||
do | ||
curl "http://localhost:8080/message?token=$1" -F "title=Test Message" -F "message=Repeating Test Message" | ||
echo | ||
if [ $? -ne 0 ] | ||
then | ||
break | ||
fi | ||
sleep 10 | ||
done | ||
|