From 689756b32ac190d75ab64d799c7428939504647a Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Mon, 21 Jan 2019 08:32:35 +1300 Subject: [PATCH] Bump version and update CHANGELOG --- CHANGELOG.md | 8 ++++++++ server.go | 10 +++++----- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88fcefe..7b3de6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v0.9: 21 January 2019 + +* Fix live reload issues on Linux (Delyan Angelov) +* Only inject livereload content if content type is text/html (Mattias Wadman) +* Fix treatment of X-Forwarded-Proto (Marvin Frick) +* Dependency updates and test improvements + + # v0.8: 8 January 2018 * Improvements in file change monitoring, fixing a number of bugs and diff --git a/server.go b/server.go index 17b724d..9dc9885 100644 --- a/server.go +++ b/server.go @@ -15,7 +15,7 @@ import ( "golang.org/x/net/context" - "github.com/GeertJohan/go.rice" + rice "github.com/GeertJohan/go.rice" "github.com/goji/httpauth" "github.com/cortesi/devd/httpctx" @@ -29,7 +29,7 @@ import ( const ( // Version is the current version of devd - Version = "0.8" + Version = "0.9" portLow = 8000 portHigh = 10000 ) @@ -136,9 +136,9 @@ type Devd struct { Routes RouteCollection // Shaping - Latency int - DownKbps uint - UpKbps uint + Latency int + DownKbps uint + UpKbps uint ServingScheme string // Add headers