diff --git a/DESCRIPTION b/DESCRIPTION index 34d5c51..f4e3a07 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: bibleRe Title: Access the Webinterface of the Public Library in Koeniz -Version: 0.3.1.9003 +Version: 0.3.1.9004 Author: Stefan Lanz Maintainer: Stefan Lanz Description: The public library of Koeniz, Switzerland, offers a diff --git a/R/shiny.R b/R/shiny.R index 05acec0..e9777d0 100644 --- a/R/shiny.R +++ b/R/shiny.R @@ -346,6 +346,21 @@ show_about <- function() { shiny::HTML( as_link("K\u00f6nizer Bibliotheken", "https://koenizerbibliotheken.ch")), ".", shiny::tags$br(), shiny::tags$br(), + + if (bibleRe:::can_write_excel()) { + "Excel-Export ist auf diesem System möglich." + } else { + shiny::HTML( + "Excel-Export ist auf diesem System nicht möglich. Bitte installiere", + as_link("perl", "https://www.perl.org/"), + "und", + as_link("WriteXLS", "https://cran.r-project.org/web/packages/WriteXLS/"), + "." + ) + }, + + shiny::tags$br(), shiny::tags$br(), + as.character(utils::packageVersion("bibleRe")), shiny::tags$br(), shiny::HTML( as_link("github.com/stibu81/bibleRe", "https://github.com/stibu81/bibleRe")),