mirror of
https://github.com/m13253/dns-over-https.git
synced 2026-04-01 16:05:41 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
72165bffff | ||
|
|
82317bd63e | ||
|
|
acf3e3c328 |
@@ -4,6 +4,10 @@ This Changelog records major changes between versions.
|
|||||||
|
|
||||||
Not all changes are recorded. Please check git log for details.
|
Not all changes are recorded. Please check git log for details.
|
||||||
|
|
||||||
|
## Version 2.2.1
|
||||||
|
|
||||||
|
- Fix messy log
|
||||||
|
|
||||||
## Version 2.2.0
|
## Version 2.2.0
|
||||||
|
|
||||||
- Breaking change: The configuration format of doh-server is changed
|
- Breaking change: The configuration format of doh-server is changed
|
||||||
|
|||||||
@@ -24,6 +24,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
const (
|
const (
|
||||||
VERSION = "2.2.0"
|
VERSION = "2.2.1"
|
||||||
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -97,7 +97,6 @@ var rxUpstreamWithTypePrefix = regexp.MustCompile("^[a-z-]+(:)")
|
|||||||
|
|
||||||
func addressAndType(us string) (string, string) {
|
func addressAndType(us string) (string, string) {
|
||||||
p := rxUpstreamWithTypePrefix.FindStringSubmatchIndex(us)
|
p := rxUpstreamWithTypePrefix.FindStringSubmatchIndex(us)
|
||||||
fmt.Println(p)
|
|
||||||
if len(p) != 4 {
|
if len(p) != 4 {
|
||||||
return "", ""
|
return "", ""
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,6 +24,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
const (
|
const (
|
||||||
VERSION = "2.2.0"
|
VERSION = "2.2.1"
|
||||||
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user