Skip to content

Commit 957fa0d

Browse files
committed
Version 2.3.0 (2018-10-09)
1 parent 39c2e31 commit 957fa0d

23 files changed

+60
-22
lines changed

VERSION.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
## Version 2.3.0 (2018-10-09)
2+
3+
This release provides better error messaging for first-time users who try to
4+
search immediately after installing dasht but before they install any docsets.
5+
It also fixes some HTML rendering issues and improves portability under macOS.
6+
7+
### Minor:
8+
9+
* Notify user when no docsets installed for searching.
10+
11+
* wget: don't be verbose but show download progress.
12+
13+
### Patch:
14+
15+
* GH-28: some docsets embed `<dash>` XML in URL fields.
16+
17+
* GH-25: HTML 4 browsers don't support `&apos;` entity.
18+
19+
See https://stackoverflow.com/a/2083770 which refers to this spec:
20+
21+
C.16. The Named Character Reference `&apos;`
22+
https://www.w3.org/TR/xhtml1/#C_16
23+
24+
The named character reference `&apos;` (the apostrophe, U+0027) was
25+
introduced in XML 1.0 but does not appear in HTML. Authors should
26+
therefore use `&#39;` instead of `&apos;` to work as expected in HTML
27+
4 user agents.
28+
29+
* GH-31: macOS error upon rmdir: illegal option -- v.
30+
31+
Thanks to Frode Aannevik (@frodeaa) for reporting this issue.
32+
33+
### Other:
34+
35+
* README: add installation method for macOS Homebrew.
36+
37+
* README: require gawk; Debian's default mawk hangs.
38+
139
## Version 2.2.0 (2017-08-15)
240

341
This release fixes the ability to install new docsets (which was broken since

bin/dasht

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh -e
22
#
3-
# # DASHT 1 2017-08-15 2.2.0
3+
# # DASHT 1 2018-10-09 2.3.0
44
#
55
# ## NAME
66
#

bin/dasht-docsets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh -e
22
#
3-
# # DASHT-DOCSETS 1 2017-08-15 2.2.0
3+
# # DASHT-DOCSETS 1 2018-10-09 2.3.0
44
#
55
# ## NAME
66
#

bin/dasht-docsets-extract

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh -e
22
#
3-
# # DASHT-DOCSETS-EXTRACT 1 2017-08-15 2.2.0
3+
# # DASHT-DOCSETS-EXTRACT 1 2018-10-09 2.3.0
44
#
55
# ## NAME
66
#

bin/dasht-docsets-install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh -e
22
#
3-
# # DASHT-DOCSETS-INSTALL 1 2017-08-15 2.2.0
3+
# # DASHT-DOCSETS-INSTALL 1 2018-10-09 2.3.0
44
#
55
# ## NAME
66
#

bin/dasht-docsets-remove

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh -e
22
#
3-
# # DASHT-DOCSETS-REMOVE 1 2017-08-15 2.2.0
3+
# # DASHT-DOCSETS-REMOVE 1 2018-10-09 2.3.0
44
#
55
# ## NAME
66
#

bin/dasht-docsets-update

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh -e
22
#
3-
# # DASHT-DOCSETS-UPDATE 1 2017-08-15 2.2.0
3+
# # DASHT-DOCSETS-UPDATE 1 2018-10-09 2.3.0
44
#
55
# ## NAME
66
#

bin/dasht-query-exec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh -e
22
#
3-
# # DASHT-QUERY-EXEC 1 2017-08-15 2.2.0
3+
# # DASHT-QUERY-EXEC 1 2018-10-09 2.3.0
44
#
55
# ## NAME
66
#

bin/dasht-query-html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh -e
22
#
3-
# # DASHT-QUERY-HTML 1 2017-08-15 2.2.0
3+
# # DASHT-QUERY-HTML 1 2018-10-09 2.3.0
44
#
55
# ## NAME
66
#

bin/dasht-query-line

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh -e
22
#
3-
# # DASHT-QUERY-LINE 1 2017-08-15 2.2.0
3+
# # DASHT-QUERY-LINE 1 2018-10-09 2.3.0
44
#
55
# ## NAME
66
#

0 commit comments

Comments
 (0)