File tree Expand file tree Collapse file tree 7 files changed +233
-9
lines changed
Expand file tree Collapse file tree 7 files changed +233
-9
lines changed Original file line number Diff line number Diff line change 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+
19bibliometrix V.5.2.0 (Release date: 2025-11-04)
210
311Features:
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
528528This function provides comprehensive author profiles including:
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff 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",
Original file line number Diff line number Diff 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(
Original file line number Diff line number Diff 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
26622659notifications <- 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
27462742is_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
27502747initial <- function (values ) {
You can’t perform that action at this time.
0 commit comments