Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d384970
change read citation argument to include all fields
TNRiley Dec 19, 2024
d74de4d
Documentation
actions-user Dec 19, 2024
468fcb1
Merge pull request #224 from ESHackathon/TNRiley-patch-1
TNRiley Apr 29, 2025
ff8e2ca
Merge commit 'd661791d164a999fb95526acc5706e7b5450059c'
TNRiley Apr 30, 2025
6240245
Merge pull request #225 from ESHackathon/merge-dev-state-d661791
TNRiley Apr 30, 2025
022d8d6
Merge branch 'main' into dev
TNRiley May 9, 2025
612bdd4
add google analytics to dev app
TNRiley May 12, 2025
d079137
add google analytics to main
TNRiley May 12, 2025
a097301
add google analytics to app and deploy
TNRiley May 12, 2025
1e2335d
fix: Correct env var quoting in shinyapps deploy steps
TNRiley May 12, 2025
c7c7837
Attempt to fix deploy error by restructuring envVars
TNRiley May 12, 2025
2143779
attempt new GA integration
TNRiley May 12, 2025
2fe7fe3
Merge pull request #233 from ESHackathon/dev
TNRiley May 13, 2025
397a7ef
fix typo in README - closes #234
DrMattG May 14, 2025
270e01c
Merge pull request #236 from ESHackathon/DrMattG-patch-1
DrMattG May 14, 2025
f9aebfe
add 100MB limit size for testing server disconnect issue with large f…
TNRiley May 14, 2025
e6f9cf0
increase to 500MB for testing
TNRiley May 14, 2025
cc0fdf1
add timeout and increase size limit further
TNRiley May 17, 2025
e1a4258
Update README.md
DrMattG Sep 22, 2025
ea6f159
Merge pull request #237 from ESHackathon/DrMattG-patch-2
DrMattG Sep 22, 2025
1d95b0a
added tagging instructions and deduplication information for clarity-…
TNRiley Nov 18, 2025
87ced5b
Merge pull request #239 from ESHackathon/main
TNRiley Nov 18, 2025
37e5435
Merge pull request #240 from ESHackathon/dev
TNRiley Nov 18, 2025
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
10 changes: 8 additions & 2 deletions .github/workflows/document-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ jobs:
R -e "
remotes::install_github('ESHackathon/CiteSource', force = TRUE);
rsconnect::setAccountInfo(name=${{secrets.SHINY_LUKAS_ACCOUNT}}, token=${{secrets.SHINY_LUKAS_TOKEN}}, secret=${{secrets.SHINY_LUKAS_SECRET}});
rsconnect::deployApp(appName = 'CiteSource_latest', appDir = './inst/shiny-app/CiteSource', forceUpdate = TRUE)"
rsconnect::deployApp(
appName = 'CiteSource_latest',
appDir = './inst/shiny-app/CiteSource',
forceUpdate = TRUE)"

- name: Deploy stable version from main
if: github.ref == 'refs/heads/main'
Expand All @@ -63,7 +66,10 @@ jobs:
R -e "
remotes::install_github('ESHackathon/CiteSource', force = TRUE);
rsconnect::setAccountInfo(name=${{secrets.SHINY_LUKAS_ACCOUNT}}, token=${{secrets.SHINY_LUKAS_TOKEN}}, secret=${{secrets.SHINY_LUKAS_SECRET}});
rsconnect::deployApp(appName = 'CiteSource', appDir = './inst/shiny-app/CiteSource', forceUpdate = TRUE)"
rsconnect::deployApp(
appName = 'CiteSource',
appDir = './inst/shiny-app/CiteSource',
forceUpdate = TRUE)"

- name: Create pkgdown
env:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
<!-- badges: end -->

## About the Pacakge
## About the Package

CiteSource was developed to provide researchers the ability to examine the utility and efficacy of literature resources and search methodologies. The idea behind CiteSource is simply allowing users to deduplicate citation records, while maintaining customizable metadata about the citation.

Expand Down Expand Up @@ -48,7 +48,7 @@ Install CiteSource in R with remotes::install_github("ESHackathon/CiteSource")

**Vignettes**

Vignettes covering various use cases can be found on the [CiteSource web page](https://www.eshackathon.org/CiteSource/).
Vignettes covering various use cases can be found on the [CiteSource web page](https://www.eshackathon.org/CiteSource/articles).

## Feedback

Expand Down
Loading
Loading