Skip to content

Commit e00978c

Browse files
committed
update version 1.0.5
1 parent d78fd1b commit e00978c

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

DESCRIPTION

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
Package: simpletex
22
Type: Package
33
Title: Mathematical Formulas and Character Recognition
4-
Version: 1.0.4
4+
Version: 1.0.5
55
Authors@R: person("Xinyuan", "Chu", email = "chuxinyuan@outlook.com", role = c("aut", "cre"))
66
Maintainer: Xinyuan Chu <chuxinyuan@outlook.com>
7-
Date: 2024-07-07 08:46:16 UTC
7+
Date: 2025-03-22 13:17:39 UTC
88
Description: By calling the 'SimpleTex' <https://simpletex.cn/> open API implements
99
text and mathematical formula recognition on the image, and the output formula
1010
can be used directly with 'Markdown' and 'LaTeX'.
1111
License: MIT + file LICENSE
12-
URL: https://gitlab.com/chuxinyuan/simpletex
13-
BugReports: https://gitlab.com/chuxinyuan/simpletex/-/issues
12+
URL: https://github.com/chuxinyuan/simpletex
13+
BugReports: https://github.com/chuxinyuan/simpletex/issues
1414
Depends:
1515
R (>= 3.6)
1616
Imports:
1717
glue,
1818
digest,
1919
httr,
2020
jsonlite
21-
RoxygenNote: 7.3.1
21+
RoxygenNote: 7.2.3
2222
Suggests:
2323
testthat (>= 2.1.0),
2424
knitr,

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
YEAR: 2024--2024
1+
YEAR: 2024--2025
22
COPYRIGHT HOLDER: Xinyuan Chu

R/imgocr.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
#---------------------------------------------------------------------------
2424

25-
imgocr = \(img, mode = "latex_ocr") {
25+
imgocr = function(img, mode = "latex_ocr") {
2626

2727
# Get the APP ID and SECRET for SimpleTex API
2828
SIMPLETEX_APP_ID = Sys.getenv("SIMPLETEX_APP_ID")

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ By calling the 'SimpleTex' <https://simpletex.cn/> open API implements text and
66
## Installation
77

88
``` r
9-
# Install development version from GitLab
10-
remotes::install_gitlab("chuxinyuan/simpletex")
9+
# Install development version from GitHub
10+
remotes::install_github("chuxinyuan/simpletex")
1111
# Install from CRAN
1212
install.packages("simpletex")
1313
```

0 commit comments

Comments
 (0)