Skip to content

Commit 551fdd4

Browse files
author
Gregory Demin
committed
Remove emf support in current.graphics. Release on CRAN - v.0.9.3
1 parent 59e8b9a commit 551fdd4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+5698
-181
lines changed

DESCRIPTION

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
11
Package: excel.link
22
Type: Package
33
Title: Convenient Data Exchange with Microsoft Excel
4-
Version: 0.9.2
4+
Version: 0.9.3
55
Date: 2015-12-06
6-
Author: Gregory Demin <excel.link.feedback@gmail.com>. To comply CRAN policy includes source code from 'RDCOMClient' (http://www.omegahat.org/RDCOMClient) by Duncan Temple Lang <duncan@wald.ucdavis.edu>.
6+
Author: Gregory Demin <excel.link.feedback@gmail.com>. To comply CRAN policy
7+
includes source code from 'RDCOMClient' (http://www.omegahat.org/RDCOMClient) by
8+
Duncan Temple Lang <duncan@wald.ucdavis.edu>.
79
Maintainer: Gregory Demin <excel.link.feedback@gmail.com>
810
Depends:
9-
methods, grDevices, utils
11+
methods,
12+
grDevices,
13+
utils
1014
Suggests:
1115
knitr
12-
VignetteBuilder: knitr
16+
VignetteBuilder: knitr
1317
OS_type: windows
1418
Description: Allows access to data in running instance of Microsoft Excel
15-
(e. g. 'xl[a1] = xl[b2]*3' and so on). Graphics can be transferred with
16-
'xl[a1] = current.graphics()'. There is an Excel workbook with examples of
17-
calling R from Excel in the 'doc' folder. It tries to keep things as
18-
simple as possible - there are no needs in any additional
19-
installations besides R, only 'VBA' code in the Excel workbook.
19+
(e. g. 'xl[a1] = xl[b2]*3' and so on). Graphics can be transferred with
20+
'xl[a1] = current.graphics()'. There is an Excel workbook with examples of
21+
calling R from Excel in the 'doc' folder. It tries to keep things as
22+
simple as possible - there are no needs in any additional
23+
installations besides R, only 'VBA' code in the Excel workbook.
2024
Microsoft Excel is required for this package.
2125
License: GPL (>= 2)
2226
URL: https://github.com/gdemin/excel.link
2327
LazyLoad: yes
2428
ByteCompile: TRUE
2529
NeedsCompilation: yes
26-
27-
30+
RoxygenNote: 5.0.0

NAMESPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by roxygen2 (4.1.1): do not edit by hand
1+
# Generated by roxygen2: do not edit by hand
22

33
S3method("$",excel.range)
44
S3method("$",xl)

NEWS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
0.9.2 (06.12.2015)
1+
0.9.3 (06.12.2015)
22
===============
33
* Make Excel examples compatible with 64-bit Excel version.
4+
* Remove 'emf' format from current.graphics
45

56
0.9.1 (14.07.2015)
67
===============

R/current.graphics.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,12 @@
4949
#' }
5050
#'
5151
#' @export
52-
current.graphics = function(type = c("png","emf","jpeg","bmp","tiff"),filename = NULL,picname = NULL, ...){
52+
current.graphics = function(type = c("png","jpeg","bmp","tiff"),filename = NULL,picname = NULL, ...){
5353
if (is.null(filename)){
5454
type = match.arg(type)
5555
res = paste(tempfile(),".",type,sep = "")
5656
switch(type,
5757
png = dev.copy(png,res,...),
58-
emf = dev.copy(win.metafile,res,...),
5958
jpeg = dev.copy(jpeg,res,...),
6059
bmp = dev.copy(bmp,res,...),
6160
tiff = dev.copy(tiff,res,...)

man/RDCOMClient.Rd

Lines changed: 4 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/current.graphics.Rd

Lines changed: 15 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/excel.link.Rd

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/xl.Rd

Lines changed: 24 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)