diff --git a/README.md b/README.md index 4c2963d6..a3652cde 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The mission is to bring software dev inspired features (refactoring, testing, li ## Latest version -v1.45.1 +v1.45.2 ## OS Support diff --git a/app/package.json b/app/package.json index 6d42d92e..559d4eaf 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "documize", - "version": "1.45.1", + "version": "1.45.2", "description": "The Document IDE", "private": true, "repository": "", diff --git a/core/api/endpoint/server.go b/core/api/endpoint/server.go index 13a17e76..31c2078c 100644 --- a/core/api/endpoint/server.go +++ b/core/api/endpoint/server.go @@ -35,7 +35,7 @@ var Product core.ProdInfo func init() { Product.Major = "1" Product.Minor = "45" - Product.Patch = "1" + Product.Patch = "2" Product.Version = fmt.Sprintf("%s.%s.%s", Product.Major, Product.Minor, Product.Patch) Product.Edition = "Community" Product.Title = fmt.Sprintf("%s Edition", Product.Edition) @@ -132,23 +132,7 @@ func Serve(ready chan struct{}) { log.Info("Starting SSL server on " + port + " with " + certFile + " " + keyFile) - // myTLSConfig := &tls.Config{ - // CipherSuites: []uint16{ - // tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA, - // tls.TLS_RSA_WITH_AES_128_CBC_SHA, - // tls.TLS_RSA_WITH_AES_256_CBC_SHA, - // // tls.TLS_RSA_WITH_AES_128_CBC_SHA256, - // // tls.TLS_RSA_WITH_AES_256_CBC_SHA256, - // tls.TLS_RSA_WITH_AES_128_GCM_SHA256, - // tls.TLS_RSA_WITH_AES_256_GCM_SHA384, - // tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, - // tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, - // // tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, - // // tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, - // tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, - // tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384}} - // // tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256}} - // myTLSConfig.PreferServerCipherSuites = true + // TODO: https://blog.gopheracademy.com/advent-2016/exposing-go-on-the-internet/ server := &http.Server{Addr: ":" + port, Handler: n /*, TLSConfig: myTLSConfig*/} server.SetKeepAlivesEnabled(true)