Skip to content

Commit

Permalink
Fixes in automake files to include the Visual Studio solution/project…
Browse files Browse the repository at this point in the history
…. Updated README.md to include release notes.
  • Loading branch information
dgarske committed Nov 9, 2015
1 parent 56accb8 commit ce45d63
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
7 changes: 7 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ include src/include.am
include wolfmqtt/include.am
include examples/mqttclient/include.am

EXTRA_DIST+= README.md
EXTRA_DIST+= LICENSE
EXTRA_DIST+= wolfmqtt.sln
EXTRA_DIST+= wolfmqtt.vcxproj
EXTRA_DIST+= wolfmqtt.vcxproj.filters
EXTRA_DIST+= autogen.sh

TESTS += $(check_PROGRAMS)
test: check

Expand Down
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,15 @@ Here are the steps for creating your own implementation.
6. Call `MqttClient_Subscribe` passing pointer to `MqttSubscribe` structure to send MQTT Subscribe command and wait for Subscribe Ack (depending on QoS level).
7. Call `MqttClient_WaitMessage` passing pointer to `MqttMessage` to wait for incoming MQTT Publish message.

## Other Notes
* Strings should be UTF-8 encoded.
* Publish message payloads are raw bytes.
## Release Notes

### v0.2
* Fixes to handle receival of publish and QoS messages while performing packet writes/waits.
* Added support / tested with Windows.
* Added Visual Studio 2015 solution and projects.
* Added support / tested with FreeRTOS and Lwip.
* Fixes for compiler warnings.

### v0.1
* Initial release with support for MQTT v3.1.1, QoS 0-2, TLS and example client.

6 changes: 4 additions & 2 deletions examples/mqttclient/include.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@ examples_mqttclient_mqttclient_DEPENDENCIES = src/libwolfmqtt.la
dist_example_DATA+= examples/mqttclient/mqttclient.c
dist_example_DATA+= examples/mqttclient/mqttnet.c
DISTCLEANFILES+= examples/mqttclient/.libs/mqttclient
EXTRA_DIST+= examples/mqttclient/mqttnet.h
EXTRA_DIST+= examples/mqttclient/mqttclient.h
EXTRA_DIST+= examples/mqttclient/mqttnet.h \
examples/mqttclient/mqttclient.h \
examples/mqttclient/mqttclient.vcxproj \
examples/mqttclient/mqttclient.vcxproj.filters

0 comments on commit ce45d63

Please sign in to comment.