forked from cboettig/knitcitations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
180 lines (127 loc) · 5.62 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
NEWS
====
For more fine-grained list of changes or to report a bug, consult
* [The issues log](https://github.com/cboettig/knitcitations/issues)
* [The commit log](https://github.com/cboettig/knitcitations/commits/master)
Versioning
----------
Releases will be numbered with the following semantic versioning format:
<major>.<minor>.<patch>
And constructed with the following guidelines:
* Breaking backward compatibility bumps the major (and resets the minor
and patch)
* New additions without breaking backward compatibility bumps the minor
(and resets the patch)
* Bug fixes and misc changes bumps the patch
For more information on SemVer, please visit http://semver.org/.
v0.5-0
------
* html print method now provides support for bulleted lists, see [#41](https://github.com/cboettig/knitcitations/issues/41)
v0.4-7
------
* Hard-wrap roxygen documentation to avoid line overflows in pdf manual
v0.4-6
------
* html print method now handled directly in knitcitations just like the
markdown print method, with ordering, etc, since default html printing
method sucks
* ~~Tooltip provides HTML formatting, with link (issue [#37](https://github.com/cboettig/knitcitations/issues/37))~~
* HTML formatting inside tooltip (data-html="true") removed, since incompatible
with Pandoc parser. [pandoc/#831](https://github.com/jgm/pandoc/issues/831)
v0.4-5
------
* Provide page range as option to `citep` and `citet` (see issue [#32](https://github.com/cboettig/knitcitations/issues/32))
* Fixes a bug in which page numbers were not grabbed from the DOI look-up
([#33](https://github.com/cboettig/knitcitations/issues/33))
* Date added to Description file so that users can cite the development version
properly ([#34](https://github.com/cboettig/knitcitations/issues/34))
v0.4-4
------
* Depends R (>= 2.15.0)
* Released to CRAN (2013-03-18)
* Minor changes: replace paste0 with paste, sep=""
v0.4-3
------
* Some bugfixes to bib_format method
* tooltip javascript uses class 'showtooltip' rather than rel='tooltip' to
avoid conflicting semantic meaning and styling and to avoid clashes with
existing 'tooltip' class in twitter bootstrap
* cito links fix href and use rel instead of property
v0.4-2
------
* Testing out `bib_format` method to change order of citation elements in
reference list
v0.4-1
------
* Fixes Issue [#27](https://github.com/cboettig/knitcitations/issues/27) in
rdfa printing
* Nicer markdown printing
* keep each function in separate file
v0.4-0
------
### Major changes
* Support for citations by URL. Paste the full URL of any academic
journal or other webpage. Uses the Greycite API
* Introduces linked inline citations as an option (previously active
only for CITO links). Inline citation text will be linked directly
to the article by DOI or URL. Toggle on or off using cite_options
globally, or passing `linked=FALSE` to the calls to `citet` or `citep`
* Introduces tooltips option. Mouse over an inline citation and see
the full citation information. * Introduces `cite_options`, to toggle
certain settings such as tooltips, linked inline text,
### Minor changes
* in-line link will use URL if a DOI is not found
* `cite` is now exported to the namespace. Useful to return a bibentry object
given a DOI or URL.
v0.3-5
------
* Fix formatting of parenthetical citations (bug introduced previously
converted these to citet format)
* Additional documentation
* Install instructions for development version added to README
v0.3-4
------
* Avoid dropped citations caused by redundant key collisions, closes #21
v0.3-3
------
* Added a new display option, `bibliography('markdown')`
* fixed BUG in the printing of the text-based name in bibliography for bibstyle-based calls
v0.3-2
------
* Semantic citations now enabled. `bibliography` can print with method 'rdfa'
to provide RDFa enhanced HTML bibliography data, and citations can take cito
arguments as an option. (Closes issues #16 and #17)
* `bibliography` now takes more options to match the `bibstyle` and `print.bibentry`
functions.
* `citet` and `citep` take an optional argument for formating the citation, defaulting
to `authoryear` format. Future versions may move this into an option.
* `newbib()` function initializes and clears existing cache files.
* README.md updated with semantic examples and more background text (generated by
inst/examples/README.Rmd).
* Some basic unit tests built in. Could use more, but meanwhile closes #8.
* Test cases work with knit2html button in RStudio, closes #14
v0.3-1
------
* Switched to handling citation data using environment rather than an external bibfile.
This does not refer to the handling of user-provided bibtex files as input data,
which are supported as before, but changes only the backend management of that data.
The external bibtex file method can be switched back on by setting
`options("bibtex_data" = TRUE)`.
* There is no need to call `print(bibliography, "html")`, one can simply call
`bibliography()` or `bibliography("html")`. Sort is still an option, other
options that were for internal use (`debug`, `remove_duplicates`) are
removed as they are no longer necessary.
* Several new functions have been added to handle the new methods.
v0.2-0
------
* Fix vignette error that prevents knitr 1.0 submission
* Fixed errors on installing package and lack of entries in bibliography
* Semantic print option added but still in early testing
v0.1-0
------
* `bibliography()` now takes style as an option (html, text, bibtex output)
* imports write.bib from pkgmaker package instead of from doRNG
* URL in description on CRAN
v0.0-2
------
* Initial Release