Skip to content

Commit 0550efd

Browse files
committed
- Enable SSL by default
- Bump Version to 2.8.0
1 parent ff309a0 commit 0550efd

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
## Version 2.8.0
3+
- SSL is now enabled by default
4+
25
## Version 2.7.6
36
- Internal changes
47
removed QueueList.h and use std::queue instead

src/SinricProConfig.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,16 @@
2424

2525
// Version Configuration
2626
#define SINRICPRO_VERSION_MAJOR 2
27-
#define SINRICPRO_VERSION_MINOR 7
28-
#define SINRICPRO_VERSION_REVISION 6
27+
#define SINRICPRO_VERSION_MINOR 8
28+
#define SINRICPRO_VERSION_REVISION 0
2929
#define SINRICPRO_VERSION STR(SINRICPRO_VERSION_MAJOR) "." STR(SINRICPRO_VERSION_MINOR) "." STR(SINRICPRO_VERSION_REVISION)
3030
#define SINRICPRO_VERSION_STR "SinricPro (v" SINRICPRO_VERSION ")"
3131

3232
// Server Configuration
33+
#ifndef SINRICPRO_NOSSL
34+
#define WEBSOCKET_SSL
35+
#endif
36+
3337
#define SINRICPRO_SERVER_URL "ws.sinric.pro"
3438
#define SINRICPRO_SERVER_PORT 80
3539
#define SINRICPRO_SERVER_SSL_PORT 443

0 commit comments

Comments
 (0)