Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
Package: shinyMatrix
Title: Shiny Matrix Input Field
Version: 0.8.1
Date: 2024-04-10
Author: Andreas Neudecker
Maintainer: Andreas Neudecker <andreas.neudecker@inwt-statistics.de>
Date: 2026-03-05
Authors@R: person(given = "Andreas",
family = "Neudecker",
role = c("aut", "cre"),
email = "andreas.neudecker@inwt-statistics.de")
Description: Implements a custom matrix input field.
Depends: R (>= 3.5)
License: MIT + file LICENSE
Expand All @@ -12,5 +14,5 @@ Imports: shiny,
jsonlite
Suggests: testthat,
covr
RoxygenNote: 7.3.1
URL: https://inwtlab.github.io/shiny-matrix/
RoxygenNote: 7.3.2
URL: https://inwtlab.github.io/shinyMatrix/
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# ShinyMatrix 0.8.1

* Make matrixInputs' labels' classes like other Shiny inputs'

# ShinyMatrix 0.8.0

* Add parameter to format cells
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Matrix Input for Shiny

[![R-CMD-check](https://github.com/INWTlab/shiny-matrix/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/INWTlab/shiny-matrix/actions/workflows/R-CMD-check.yaml)
[![Coverage Status](https://img.shields.io/codecov/c/github/INWTlab/shiny-matrix/master.svg)](https://app.codecov.io/github/INWTlab/shiny-matrix?branch=master)
[![R-CMD-check](https://github.com/INWTlab/shinyMatrix/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/INWTlab/shinyMatrix/actions/workflows/R-CMD-check.yaml)
[![Coverage Status](https://img.shields.io/codecov/c/github/INWTlab/shinyMatrix/master.svg)](https://app.codecov.io/github/INWTlab/shinyMatrix?branch=master)
[![CRAN status](https://www.r-pkg.org/badges/version/shinyMatrix)](https://cran.r-project.org/package=shinyMatrix)

# Matrix Input for Shiny

This package provides an input field to enter matrix conveniently in a shiny application. It supports tabbing and jumping linewise in the matrix.

![Screenshot Simple Matrix](https://github.com/INWTlab/shiny-matrix/raw/master/screenshot1.png)
![Screenshot Simple Matrix](https://github.com/INWTlab/shinyMatrix/raw/master/screenshot1.png)

## Installation
From CRAN:
Expand All @@ -18,7 +18,7 @@ install.packages("shinyMatrix")
From GitHub:

```r
if (require("devtools")) install_github("INWTlab/shiny-matrix")
if (require("devtools")) install_github("INWTlab/shinyMatrix")
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion _pkgdown.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
url: https://inwtlab.github.io/shiny-matrix/
url: https://inwtlab.github.io/shinyMatrix/
template:
bootstrap: 5

19 changes: 11 additions & 8 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
## R CMD check results

On local Pop!_OS 24.04 LTS, R 4.5.2:
0 errors ✔ | 0 warnings ✔ | 0 notes ✔

## Updates in 0.8.0
## Submission summary
This is a patch release

## Updates in 0.8.1

* Make matrixInputs' labels' classes like other Shiny inputs for better UI consistency.

* Add parameter to format cells
## Resubmission

## Updates in 0.7.0
* Fix: Bug when using extend feature for rows in the matrix #21
* Feature: Change or disable click behavior #26
* Improve tabbing and extension functionality
* Online Documentation (pkgdown) & R-CMD Check
The previous submission was flagged for a missing Authors@R field.

## Changes
* Replaced Author and Maintainer fields with Authors@R in DESCRIPTION as requested by CRAN.
Loading