File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # v0.9: 21 January 2019
2+
3+ * Fix live reload issues on Linux (Delyan Angelov)
4+ * Only inject livereload content if content type is text/html (Mattias Wadman)
5+ * Fix treatment of X-Forwarded-Proto (Marvin Frick)
6+ * Dependency updates and test improvements
7+
8+
19# v0.8: 8 January 2018
210
311* Improvements in file change monitoring, fixing a number of bugs and
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import (
1515
1616 "golang.org/x/net/context"
1717
18- "github.com/GeertJohan/go.rice"
18+ rice "github.com/GeertJohan/go.rice"
1919 "github.com/goji/httpauth"
2020
2121 "github.com/cortesi/devd/httpctx"
@@ -29,7 +29,7 @@ import (
2929
3030const (
3131 // Version is the current version of devd
32- Version = "0.8 "
32+ Version = "0.9 "
3333 portLow = 8000
3434 portHigh = 10000
3535)
@@ -136,9 +136,9 @@ type Devd struct {
136136 Routes RouteCollection
137137
138138 // Shaping
139- Latency int
140- DownKbps uint
141- UpKbps uint
139+ Latency int
140+ DownKbps uint
141+ UpKbps uint
142142 ServingScheme string
143143
144144 // Add headers
You can’t perform that action at this time.
0 commit comments