Skip to content

Commit b5e32ac

Browse files
committed
v0.7: more mimes
1 parent 6bc513b commit b5e32ac

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Title: 'Jupyter' Display Machinery
33
Description:
44
An interface to the rich display capabilities of 'Jupyter' front-ends (e.g. 'Jupyter Notebook') <https://jupyter.org>.
55
Designed to be used from a running 'IRkernel' session <https://irkernel.github.io>.
6-
Version: 0.6.3.9000
6+
Version: 0.7.0
77
Authors@R: c(
88
person('Thomas', 'Kluyver', role = c('aut', 'cph'), email = 'thomas@kluyver.me.uk'),
99
person('Philipp', 'Angerer', role = c('aut', 'cph', 'cre'), email = 'phil.angerer@gmail.com', comment = c(ORCID = "0000-0002-0369-2888")),

R/options.r

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ irdisplay_option_defaults <- list(
3030
'application/json',
3131
'application/javascript',
3232

33+
'application/geo+json',
34+
'application/vdom.v1+json',
35+
'application/vnd.plotly.v1+json',
36+
'application/vnd.vegalite.v2+json',
37+
'application/vnd.vega.v4+json',
38+
3339
'application/pdf',
3440
'image/png',
3541
'image/jpeg',

tests/testthat/test-options.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
context('default options')
22

33
test_that('default options are set', {
4-
expect_equal(length(getOption('jupyter.display_mimetypes')), 10)
4+
expect_equal(length(getOption('jupyter.display_mimetypes')), 15L)
55
})
66

0 commit comments

Comments
 (0)