Skip to content

Commit

Permalink
Bugfix/fix-notes (#210)
Browse files Browse the repository at this point in the history
* ignore .lintr in .Rbuildignore to avoid NOTE

* ci result on commit in repo overview -> remove action badge

* add tidy to enable HTML check

* adjust planned release date

* md: use native syntax for links in README
  • Loading branch information
spoltier authored Jan 30, 2024
1 parent 88b524c commit eb8e7ea
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,4 @@ revdep/
.github/
.devcontainer/
^revdep$
.lintr
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM rocker/verse:devel
RUN apt-get update
RUN apt-get install -y libxml2-dev libssl-dev gpg
# texlive
RUN apt-get install -y libqpdf28 qpdf ghostscript
RUN apt-get install -y libqpdf28 qpdf ghostscript tidy
# RUN tlmgr install xcolor # (more latex libs would be required to include pdf related checks)
RUN install2.r --error devtools rJava RUnit zoo qpdf languageserver
RUN installGithub.r r-lib/revdepcheck
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
- name: Install PDF system dependencies
if: runner.os == 'Linux' && matrix.config.vignettes
run: |
sudo apt-get install -y qpdf ghostscript
sudo apt-get install -y qpdf ghostscript tidy
- name: Session info
run: |
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
XLConnect News
--------------
1.0.8 2024-01-29
1.0.8 2024-01-30
* Avoid log4j2 error on first use (#172)
* Upgrade POI to 5.2.5
* Improvements in XLConnect Java
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@ XLConnect: Excel Connector for R
[![CranLogsTotal](https://cranlogs.r-pkg.org/badges/grand-total/XLConnect?color=yellow)](#xlconnect-excel-connector-for-r)
[![CranLogsMonthly](https://cranlogs.r-pkg.org/badges/XLConnect?color=blue)](#xlconnect-excel-connector-for-r)
[![CranLogsWeekly](https://cranlogs.r-pkg.org/badges/last-week/XLConnect?color=green)](#xlconnect-excel-connector-for-r)
[![R](https://github.com/miraisolutions/xlconnect/workflows/R/badge.svg?branch=master&event=push)](https://github.com/miraisolutions/xlconnect/actions?query=workflow%3AR+branch%3Amaster)
[![codecov](https://codecov.io/gh/miraisolutions/xlconnect/branch/master/graph/badge.svg)](https://app.codecov.io/gh/miraisolutions/xlconnect)

XLConnect is a comprehensive and cross-platform R package for manipulating Microsoft Excel files from within R. XLConnect differs from other related R packages in that it is completely cross-platform and as such runs under Windows, Unix/Linux and Mac (32- and 64-bit). Moreover, it does not require any installation of Microsoft Excel or any other special drivers to be able to read & write Excel files. The only requirement is a recent version of a Java Runtime Environment (JRE).

The package can easily be installed from <a href="https://cran.r-project.org/package=XLConnect">CRAN</a> via `install.packages("XLConnect")`. In order to get started have a look at the <a href="https://cran.r-project.org/package=XLConnect/vignettes/XLConnect.pdf">XLConnect</a> and <a href="https://cran.r-project.org/package=XLConnect/vignettes/XLConnectImpatient.pdf">XLConnect for the Impatient</a> package vignettes, the numerous demos available via `demo(package = "XLConnect")` or browse through the comprehensive <a href="https://cran.r-project.org/package=XLConnect/XLConnect.pdf">reference manual</a>.
The package can easily be installed from [CRAN](https://cran.r-project.org/package=XLConnect) via `install.packages("XLConnect")`. In order to get started have a look at the [XLConnect](https://cran.r-project.org/package=XLConnect/vignettes/XLConnect.pdf) and [XLConnect for the Impatient](https://cran.r-project.org/package=XLConnect/vignettes/XLConnectImpatient.pdf) package vignettes, the numerous demos available via `demo(package = "XLConnect")` or browse through the comprehensive [reference manual](https://cran.r-project.org/package=XLConnect/XLConnect.pdf).

Alternatively, you may install XLConnect directly from our <a href="https://github.com/miraisolutions/xlconnect">github repository</a> using the excellent <a href="https://github.com/r-lib/devtools">devtools</a> package:
Alternatively, you may install XLConnect directly from our [github repository](https://github.com/miraisolutions/xlconnect) using the excellent [devtools](https://github.com/r-lib/devtools) package:

```r
require(devtools)
Expand All @@ -27,8 +26,8 @@ install_github("miraisolutions/xlconnect")
install_github("miraisolutions/xlconnect", ref = "<version>")
```

Please log any enhancement requests or bug reports with a simple and self-contained reproducible example as an issue on our <a href="https://github.com/miraisolutions/xlconnect">github repository</a>.
For other questions you may also use <a href="https://stackoverflow.com/questions/tagged/xlconnect">Stackoverflow</a>.
Please log any enhancement requests or bug reports with a simple and self-contained reproducible example as an issue on our [github repository](https://github.com/miraisolutions/xlconnect).
For other questions you may also use [Stackoverflow](https://stackoverflow.com/questions/tagged/xlconnect).

Build for release on CRAN
-------------------------
Expand Down

0 comments on commit eb8e7ea

Please sign in to comment.