-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabLog.R
41 lines (41 loc) · 1.96 KB
/
tabLog.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
tabLog <- tabItem(tabName = "log",
h1("Version Log"),
h2("v0.5 - 2024.09.09"),
tags$div(
tags$ul(
tags$li("Update code for downloading bus timetable"),
tags$li("Fixed potential issue with useShinyDashboard as it has been depreciated")
)
),
h2("v0.4 - 2024.08.01"),
tags$div(
tags$ul(
tags$li("Fixed known issue with Bus 14 (from Coventry to University) and 14a (not showing timeslots)"),
tags$li("Updated Resources section (in Info tab) for relevant post")
)
),
h2("v0.3 - 2024.07.31"),
tags$div(
tags$ul(
tags$li("Added welcome popup message and message about known issue once this app is accessed"),
tags$li("Updated layout (app.R and tabLog.R)"),
tags$li("Updated structure to address issue of timezone in shinyapps.io server (UTC and BST)"),
tags$li("Added timetable of 14a and 14"),
tags$li("Updated Info tab for four different colors in a valueBox")
)
),
h2("v0.2 - 2024.07.30"),
tags$div(
tags$ul(
tags$li("Updated layout with narbarPage instead of dashboardPage"),
tags$li("Updated inputs with VirtualSelectInput() instead of SelectInput()"),
tags$li("Updated Info tab for reporting any issues found")
)
),
h2("v0.1 - 2024.07.29"),
tags$div(
tags$ul(
tags$li("Initial commit with timetable of 12x and 11"),
)
)
)