From 304cc2ebd0279e7607bc5a7107e103ce39cac49c Mon Sep 17 00:00:00 2001 From: Lindsay Carr Date: Tue, 5 Jul 2016 09:22:05 -0500 Subject: [PATCH 1/4] david added as author --- DESCRIPTION | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DESCRIPTION b/DESCRIPTION index 631ace9..9263f06 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -15,6 +15,8 @@ Authors@R: c( person("Jordan", "Read", role = "aut", email = "mhines@usgs.gov"), person("Lindsay","Carr", role="aut", email = "lcarr@usgs.gov")) + person("David","Watkins", role="aut", + email = "wwatkins@usgs.gov")) License: CC0 Description: Workflow and plotting style defaults created for the U.S. Geological Survey. From e088538a39a59c8d610ca2da4a3c4384f6a02c22 Mon Sep 17 00:00:00 2001 From: Lindsay Carr Date: Tue, 5 Jul 2016 09:22:54 -0500 Subject: [PATCH 2/4] version 0.6.9 (will up to 0.7.0 once tested on repgen and any minor changes made - that will be our stable version) --- DESCRIPTION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 9263f06..91083d7 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Package: gsplot Type: Package Title: Geological Survey Plotting -Version: 0.6.1 -Date: 2016-05-12 +Version: 0.6.9 +Date: 2016-07-05 Authors@R: c( person("Jordan", "Read", role = "aut", email = "jread@usgs.gov"), person("Laura", "DeCicco", role = c("aut","cre"), From 742e60ada1531fd891751a289bb4b00f7209e788 Mon Sep 17 00:00:00 2001 From: Lindsay Carr Date: Tue, 5 Jul 2016 09:33:02 -0500 Subject: [PATCH 3/4] forgot comma --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 91083d7..e229b88 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -14,7 +14,7 @@ Authors@R: c( person("Jordan", "Read", role = "aut", person("Megen","Hines", role="aut", email = "mhines@usgs.gov"), person("Lindsay","Carr", role="aut", - email = "lcarr@usgs.gov")) + email = "lcarr@usgs.gov"), person("David","Watkins", role="aut", email = "wwatkins@usgs.gov")) License: CC0 From a0f3844d333b259d4686ed56cb0a3ec6906bc3c0 Mon Sep 17 00:00:00 2001 From: Lindsay Carr Date: Tue, 5 Jul 2016 09:34:00 -0500 Subject: [PATCH 4/4] abline markdown updated from previous PR --- man/abline.Rd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/abline.Rd b/man/abline.Rd index 109ee5b..5efd614 100644 --- a/man/abline.Rd +++ b/man/abline.Rd @@ -29,7 +29,7 @@ gs <- gsplot() gsNew <- points(gs, y=1, x=2, col="blue", pch=18, legend.name="Points") gsNew <- lines(gsNew, c(3,4,3), c(2,4,6), legend.name="Lines") gsNew <- abline(gsNew, b=1, a=0, legend.name="1:1") -gsNew <- legend(gsNew, "topleft",title="Awesome!") +gsNew <- legend(gsNew, location="topleft",title="Awesome!") gsNew }