Skip to content

Commit 078b2a3

Browse files
committed
CRAN submission 5.2.1
1 parent 5dc1947 commit 078b2a3

File tree

7 files changed

+233
-9
lines changed

7 files changed

+233
-9
lines changed

NEWS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
bibliometrix V.5.2.1 (Release date: 2025-12-11)
2+
3+
Changes:
4+
5+
* Removed old geemini models 1.5 and 2.0 from biblioAI
6+
* Solved issue with internet connection checking in MS Windows systems
7+
8+
19
bibliometrix V.5.2.0 (Release date: 2025-11-04)
210

311
Features:

NEWS.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
# bibliometrix (development version)
1+
# bibliometrix V.5.2.1 (Release date: 2025-12-11)
22

3-
# bibliometrix 5.2.0
3+
Changes:
4+
5+
* Removed old geemini models 1.5 and 2.0 from biblioAI
6+
* Solved issue with internet connection checking in MS Windows systems
47

58
# bibliometrix V.5.2.0 (Release date: 2025-11-04)
69

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ dplyr::glimpse(authorInfo)
522522
#> $ affiliation_raw <chr> "Department of Economics and Statistics, Università degli Studi di Napoli Federico…
523523
#> $ source_doi <chr> "10.1016/j.joi.2017.08.007"
524524
#> $ source_title <chr> "bibliometrix : An R-tool for comprehensive science mapping analysis"
525-
#> $ query_timestamp <dttm> 2025-11-07 18:40:48
525+
#> $ query_timestamp <dttm> 2025-12-11 09:08:17
526526
```
527527

528528
This function provides comprehensive author profiles including:

inst/biblioshiny/helpContent.R

Lines changed: 198 additions & 0 deletions
Large diffs are not rendered by default.

inst/biblioshiny/server.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10247,7 +10247,7 @@ To ensure the functionality of Biblioshiny,
1024710247
label = "Select the Gemini Model",
1024810248
choices = c(
1024910249
"Gemini 2.5 Flash" = "2.5-flash",
10250-
"Gemini 2.5 Flash Lite" = "2.5-flash-lite",
10250+
"Gemini 2.5 Flash Lite" = "2.5-flash-lite"
1025110251
# "Gemini 2.0 Flash" = "2.0-flash",
1025210252
# "Gemini 2.0 Flash Lite" = "2.0-flash-lite",
1025310253
# "Gemini 1.5 Flash" = "1.5-flash",

inst/biblioshiny/ui.R

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,11 @@ sidebar <- shinydashboardPlus::dashboardSidebar(
235235
"Info",
236236
tabName = "info",
237237
icon = fa_i(name = "circle-info"),
238+
menuSubItem(
239+
"SAAS Workflow",
240+
tabName = "saas",
241+
icon = fa_i("project-diagram")
242+
),
238243
menuSubItem(
239244
"Biblio AI",
240245
tabName = "biblioAI",
@@ -808,6 +813,19 @@ body <- dashboardBody(
808813
)
809814
)
810815
),
816+
tabItem(
817+
"saas",
818+
fluidPage(
819+
fluidRow(
820+
column(1),
821+
column(
822+
10,
823+
HTML(helpContent()$saas)
824+
),
825+
column(1)
826+
)
827+
)
828+
),
811829
tabItem(
812830
"biblioAI",
813831
fluidPage(

inst/biblioshiny/utils.R

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,6 @@ total_downloads <- function(
128128
pkg_name
129129
)
130130

131-
# if (!is_Online(timeout = 1, url)) {
132-
# return(NA)
133-
# }
134131
if (!check_online(host = url, timeout = 1, method = "http")) {
135132
return(NA)
136133
}
@@ -2661,7 +2658,6 @@ check_online <- function(
26612658

26622659
notifications <- function() {
26632660
## check connection and download notifications
2664-
#online <- is_online()
26652661
online <- check_online(host = "www.bibliometrix.org")
26662662
location <- "https://www.bibliometrix.org/bs_notifications/biblioshiny_notifications.csv"
26672663
notifOnline <- NULL
@@ -2744,7 +2740,8 @@ notifications <- function() {
27442740
}
27452741

27462742
is_Online <- function(timeout = 3, url = "https://www.bibliometrix.org") {
2747-
RCurl::url.exists(url, timeout = timeout)
2743+
#RCurl::url.exists(url, timeout = timeout)
2744+
check_online(host = url, timeout = timeout, method = "http")
27482745
}
27492746

27502747
initial <- function(values) {

0 commit comments

Comments
 (0)