Kaynağa Gözat

Update release notes

bel 10 yıl önce
ebeveyn
işleme
747ae5ecb8
2 değiştirilmiş dosya ile 6 ekleme ve 6 silme
  1. 5 5
      RELEASE_NOTES.md
  2. 1 1
      src/civetweb.c

+ 5 - 5
RELEASE_NOTES.md

@@ -1,12 +1,12 @@
 Release Notes v1.7 (Under Development)
 ===
-### Objectives: *???*
+### Objectives: *Examples, documentation, additional API functions, rewritten handle_request method, bug fixes and updates*
 
 Changes
 -------
 
 - Update Lua to 5.2.4
-- Fix build for MinGW-x64 and TDM-GCC
+- Fix build for MinGW-x64, TDM-GCC and clang
 - Update SQLite to 3.8.8.3
 - Fix CGI variables SCRIPT_NAME and PATH_TRANSLATED
 - Set TCP_USER_TIMEOUT to deal faster with broken connections
@@ -20,7 +20,7 @@ Changes
 - Fix upload of huge files
 - Allow multiple SSL instances within one application
 - Improve API and user documentation
-- Allow to chose between static and dynamic Lua library
+- Allow to choose between static and dynamic Lua library
 - Improve unit test
 - Use temporary file name for partially uploaded files
 - Additional API functions exported to C++
@@ -29,8 +29,8 @@ Changes
 - Update websocket example
 - Make content length available in request_info
 - New API functions: access context, callback for create/delete, access user data
-- Upgraded Lua from 5.2.2 to 5.2.3
-- Integrate LuaXML
+- Upgraded Lua from 5.2.2 to 5.2.3 and finally 5.2.4
+- Integrate LuaXML (for testing purposes)
 - Fix compiler warnings
 - Updated version number
 

+ 1 - 1
src/civetweb.c

@@ -7484,7 +7484,7 @@ struct mg_connection *mg_connect_websocket_client(const char *host, int port, in
         DEBUG_TRACE("%s", "Websocket client connect thread could not be started\r\n");
     }
 #else
-    // Appease "unused parameter" warnings
+    /* Appease "unused parameter" warnings */
     (void)host;
     (void)port;
     (void)use_ssl;