Skip to content

Commit

Permalink
Update version to 0.1.5, rebuild docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AB-Kent committed Jan 25, 2019
1 parent 3a3a509 commit 29f50bc
Show file tree
Hide file tree
Showing 55 changed files with 142 additions and 115 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: phenoptrReports
Title: Create reports using Phenoptics data
Version: 0.1.4.9000
Version: 0.1.5
Date: 2018-11-05
Authors@R: c(
person("Kent S", "Johnson", role = c("aut", "cre"),
Expand Down
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# phenoptrReports 0.1.4.9000
# phenoptrReports 0.1.5
**2019-01-25**

New features:
- The "Merge cell seg files" addin now supports searching sub-directories
Expand Down
4 changes: 2 additions & 2 deletions docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/articles/analysis.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/articles/consolidation.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/articles/unmixing_quality_report.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 19 additions & 2 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ summary {

/* Typographic tweaking ---------------------------------*/

.contents h1.page-header {
.contents .page-header {
margin-top: calc(-60px + 1em);
}

Expand Down
9 changes: 7 additions & 2 deletions docs/pkgdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
for (var i = 0; i < links.length; i++) {
if (links[i].getAttribute("href") === "#")
continue;
// Ignore external links
if (links[i].host !== location.host)
continue;

var nav_path = paths(links[i].pathname);

var length = prefix_length(nav_path, cur_path);
Expand Down Expand Up @@ -52,13 +56,14 @@
return(pieces);
}

// Returns -1 if not found
function prefix_length(needle, haystack) {
if (needle.length > haystack.length)
return(0);
return(-1);

// Special case for length-0 haystack, since for loop won't run
if (haystack.length === 0) {
return(needle.length === 0 ? 1 : 0);
return(needle.length === 0 ? 0 : -1);
}

for (var i = 0; i < haystack.length; i++) {
Expand Down
2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pandoc: 1.19.2.1
pkgdown: 1.2.0
pkgdown: 1.3.0
pkgdown_sha: ~
articles:
analysis: analysis.html
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/add_tissue_category_totals.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/reference/addin_10_merge.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/reference/addin_20_consolidate.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/reference/addin_30_analysis_app.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/reference/addin_40_unmixing_quality.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/reference/addin_50_component_levels.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 29f50bc

Please sign in to comment.