-
Notifications
You must be signed in to change notification settings - Fork 2
/
NEWS.rmd
1222 lines (832 loc) · 24.8 KB
/
NEWS.rmd
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "NEWS"
author: Erik.Leppo@tetratech.com and jon.harcum@tetratech.com
output: github_document
#md_document:
# variant: markdown_github
---
<!-- NEWS.md is generated from NEWS.Rmd. Please edit that file -->
```{r Options, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "NEWS-"
)
```
```{r LastUpdate, echo = FALSE}
cat(paste0("Last Update: ",Sys.time()))
```
baytrendsmap 1.2.6.9003
===========
Released - 2024-02-07
* refactor: Update GitHub Actions to v2; usethis::use_github_actions("foo")
* docs: Update Readme badge for CRAN check
baytrendsmap 1.2.6.9002
===========
Released - 2023-10-13
* fix: Update base URL for plots to CBP location
baytrendsmap 1.2.6.9001
===========
Released - 2023-10-13
* fix: Update buildspec.yml, line 21
baytrendsmap 1.2.6
===========
Released - 2023-10-12
* refactor: Bump version number prior to deployment to CBP servers
baytrendsmap 1.2.5.9005
===========
Released - 2023-10-12
* refactor: Modify leaflet map (basic and advanced) pop up text
+ Add layer
+ Add DIN and PO4 plots back to the links for surface plots
+ Update text on no plot graph
* style: Formatting style in server.R
baytrendsmap 1.2.5.9004
===========
Released - 2023-10-06
* fix: Update Shiny app to update Basic map on changing data file, Issue #78
baytrendsmap 1.2.5.9003
===========
Released - 2023-08-03
* refactor: Update global baytrends_files reference for file re-organization
+ tetratech/baytrends_files#4
+ CBP version of app does *not* need to be update
baytrendsmap 1.2.5.9002
===========
Released - 2022-12-19
* refactor: Update Dockerfile, rocker/geospatial
+ 4.2.1 to latest
baytrendsmap 1.2.5.9001
===========
Released - 2022-12-19
* refactor: Update Dockerfile packages
+ Add grid, leaflet, sf, and cowplot
+ Remove rgdal and sp
baytrendsmap 1.2.5
===========
Released - 2022-12-19
* docs: Create new release version on GitHub
baytrendsmap 1.2.4.9001
===========
Released - 2022-12-19
* docs: Update DESCRIPTION with missing packages (shinyalert and leaftlet)
baytrendsmap 1.2.4
===========
Released - 2022-12-16
* refactor: Modify source files to use CBP server
* docs: Create new release version on GitHub
baytrendsmap 1.2.3.9004
===========
Released - 2022-12-16
* refactor: Upload to Tt ShinyApps.io
baytrendsmap 1.2.3.9003
===========
Released - 2022-12-16
* refactor: Update Help tab text
baytrendsmap 1.2.3.9002
===========
Released - 2022-12-15
* refactor: Update Help tab text
* refactor: Update Background tab (2nd paragraph) text
baytrendsmap 1.2.3.9001
===========
Released - 2022-12-06
* refactor: Move data-raw file processing for 2019 to baytrends-files
+ Script and rda
* feature: Add DC inset to static maps, Issue #75
* docs: Add cowplot to Imports in DESCRIPTION
baytrendsmap 1.2.3
===========
Released - 2022-07-21
* refactor: Update DOCKERFILE
baytrendsmap 1.2.2
===========
Released - 2022-07-21
* docs: Update version number for a new release and posting of app to CBP
baytrendsmap 1.2.1.9043
===========
Released - 2022-07-21
* refactor: CRAN check updates
* docs: Add BugReports to DESCRIPTION
baytrendsmap 1.2.1.9042
===========
Released - 2022-07-21
* refactor: Update remote data from GitHub to CBP, Issue #64
baytrendsmap 1.2.1.9041
===========
Released - 2022-07-19
* fix: Update pop up modal so don't get warning, Issue #74
baytrendsmap 1.2.1.9040
===========
Released - 2022-07-19
* fix: Update bay shapefile datum on import in global.R, Issue #73
baytrendsmap 1.2.1.9039
===========
Released - 2022-07-19
* fix: Update zoom feature for custom maps, Issue #72
baytrendsmap 1.2.1.9038
===========
Released - 2022-07-19
* fix: Update linked plot from leaflet maps, Issue #71
baytrendsmap 1.2.1.9037
===========
Released - 2022-07-18
* fix: Auto open custom map file ext to avoid failure on save
baytrendsmap 1.2.1.9036
===========
Released - 2022-07-18
* fix: Change leaflet map plot links to show "no plot" for DIN and PO4
baytrendsmap 1.2.1.9035
===========
Released - 2022-07-18
* fix: Use consistent terminology in all locations for Long Term, Issue #67
+ Included updates to "no plot" plot for dynamic map
+ Continuation of Issue #65
* fix: Update typos on background tab, Issue #68
* fix: Update saved maps to force white background, Issue #69
* fix: Update text on map types, change map, triangles, Issue #70
baytrendsmap 1.2.1.9034
===========
Released - 2022-07-15
* refactor: Modify data files from 6 to 4 options, Issue #65
* refactor: Change location of data and plots to GitHub for testing, Issue #64
baytrendsmap 1.2.1.9033
===========
Released - 2022-07-15
* refactor: Change spelling for consistency on Background tab, Issue #66
baytrendsmap 1.2.1.9032
===========
Released - 2022-07-14
* refactor: Change location of data and plots linked to from map, Issue #64
baytrendsmap 1.2.1.9031
===========
Released - 2022-07-14
* refactor: Format initial pop up text, Issue #62
baytrendsmap 1.2.1.9030
===========
Released - 2022-07-14
* refactor: Update initial pop up icon, Issue #61
baytrendsmap 1.2.1.9029
===========
Released - 2022-07-14
* refactor: Update background tab, Issue #63
baytrendsmap 1.2.1.9023 - 1.2.1.9028
===========
Released - 2022-07-11
* refactor: Update shiny help and background
baytrendsmap 1.2.1.9022
===========
Released - 2022-06-22
* docs: Add contributors
baytrendsmap 1.2.1.9021
===========
Released - 2022-06-15
* refactor: Update shiny help
baytrendsmap 1.2.1.9020
===========
Released - 2022-05-12
* refactor: Update text on background tab, Issue #60
baytrendsmap 1.2.1.9019
===========
Released - 2022-05-12
* refactor: Add pop up modal at start up, Issue #59
+ Add shinyalert package to DESCRIPTION and global.R
baytrendsmap 1.2.1.9018
===========
Released - 2022-05-09
* refactor: Update shiny help
baytrendsmap 1.2.1.9017
===========
Released - 2022-05-09
* refactor: Update shiny help
baytrendsmap 1.2.1.9016
===========
Released - 2022-04-27
* update: Replace rgdal and sp packages with sf package, Issue #58
+ DESCRIPTION
+ ProcessData_GIS_cbseg.R
+ global.R
* style: Remove "test" code at bottom of global.R
baytrendsmap 1.2.1.9015
===========
Released - 2022-03-23
* refactor: Update shiny app
+ leaflet maps, add missing space after "GAM:"
+ Replace "trends" with "change" for map names
baytrendsmap 1.2.1.9014
===========
Released - 2022-03-07
* refactor: Update shiny app
+ Basic maps
- Load with default map when app opens
- Save buttons for range and trend moved to map tab
baytrendsmap 1.2.1.9013
===========
Released - 2022-03-03
* refactor: Update shiny app
baytrendsmap 1.2.1.9012
===========
Released - 2022-01-19
* fix: Update URL for plots for interactive map, Issue #56
baytrendsmap 1.2.1.9011
===========
Released - 2022-01-19
* refactor: Complete updates to Shiny interface
+ Basic download button
+ Enable/disable save buttons in Shiny to guide order of operations
+ DESCRIPTION, IMPORTS, add shinyjs package
* style: Add style to some shiny code files
baytrendsmap 1.2.1.9010
===========
Released - 2022-01-18
* refactor: Continued updates to Shiny interface
+ Split interface into basic and advanced
+ Link to Background PDF
baytrendsmap 1.2.1.9009
===========
Released - 2022-01-14
* refactor: Update 'filtered data summary' table without rownames
* style: Update outline of global.R
* feature: Add default map
+ Uses first remote file and first mapLayer
* refactor: Redesign Shiny interface
+ Interim version for testing online
baytrendsmap 1.2.1.9008
===========
Released - 2021-09-15
* refactor: Update remote file directory structure, Issue #54 and Issue #50
+ Update remove file pick_files.csv with plot directory name
* refactor: Update shiny to use new files
baytrendsmap 1.2.1.9007
===========
Released - 2021-08-17
* feat: Added plot creation script for "no data" in Shiny leaflet map pop up,
Issue #49
baytrendsmap 1.2.1.9006
===========
Released - 2021-08-17
* refactor: Add remote data URL to global.R
* refactor: Update data and plot URL to reference global.R for base URL
* refactor: Update Trends leaflet map to use all plots for import
+ Previously tested only chla_S plots
baytrendsmap 1.2.1.9005
===========
Released - 2021-08-16
* refactor: Update Shiny app to import data files from remote repo, Issue #54
baytrendsmap 1.2.1.9004
===========
Released - 2021-08-16
* feat: Update Shiny app to auto update data import pick list from saved table,
Issue #54
baytrendsmap 1.2.1.9003
===========
Released - 2021-08-09
* fix: Update DESCRIPTION to accurately include second author
* fix: Update range map in Shiny to use all categories when user supplies custom
classes, Issue #51
* docs: Update README to use `remotes` instead of `devtools` in install example
baytrendsmap 1.2.1.9002
===========
Released - 2021-06-09
* refactor: Shiny lealfet map, change order of base layers
+ Make Positron the default
baytrendsmap 1.2.1.9001
===========
Released - 2021-06-04
* feat: Add leaflet map as demonstration for trend map.
* chrore: Fix filtering
* style: Trim lines to 80 characters
baytrendsmap 1.2.1
===========
Released - 2021-01-26
* chore: Update to version 1.2.1 for release; Issue #45
baytrendsmap 1.2.0.9003
===========
Released - 2021-01-06
* chore: Update trend (change) map color blind palette; Issue #46
baytrendsmap 1.2.0.9002
===========
Released - 2021-01-06
* chore: Edit spelling of "palette" in shiny app map pages
baytrendsmap 1.2.0.9001
===========
Released - 2021-01-06
* chore: Add ability to select colors for change (trend) map; Issue #46
* chore: Add .groups = "drop_last" to summarize to avoid warning message
baytrendsmap 1.2.0
===========
Released - 2021-01-04
* chore: Update version number and create release on GitHub
baytrendsmap 1.1.0.9007
===========
Released - 2021-01-04
* chore: Move docker and buildspec.yml back to root folder
* chore: Add docker and buildspec.yml to .Rbuildignore
baytrendsmap 1.1.0.9006
===========
Released - 2021-01-04
* chore: Remove docs (pkgdown) folder from root
baytrendsmap 1.1.0.9005
===========
Released - 2021-01-04
* refactor: lintr clean up
* docs: DESCRIPTION add + file LICENSE
* refactor: Add non-standard files/folders to .Rbuildignore
+ folder data-raw
+ NEWS.rmd
+ README.html
+ shiny rsconnect folder
* chore: Move files from root to inst folder
+ buildspec.yml
+ Dockerfile
* docs: Document data_GIS_cbpseg in Data.R
* chore: Add GitHub Action, CMD check
* chore: Add GitHub Action, pkgdown
* chore: Remove _pkgdown.yaml from root directory
* docs: Add badges to README
* style: Trim lines to 80 characters, run_shiny.R
baytrendsmap 1.1.0.9004
===========
Released - 2020-12-18
* Replace "final" data with revised 2019 data; Issue #44
* Update text on Shiny app sidebar (6 instead of 4 radio buttons); Issue #44
* Widened sidebar for select data so no wrapping of radio button choices.
baytrendsmap 1.1.0.9003
===========
Released - 2020-07-16
* Update help file for occassional bad file import; Issue #40
baytrendsmap 1.1.0.9002
===========
Released - 2020-07-16
* Update column widths in data tables (import and filter); Issue #39
baytrendsmap 1.1.0.9001
===========
Released - 2020-07-15
* Update maps to use defaults if no map options selected; Issue #23
+ Avoids map creation error.
+ Range and Change maps.
baytrendsmap 1.1.0
===========
Released - 2020-07-09
* Update version number after merging in development branch; Issue #37
* Create a "release" on github.
* Upload latest version to Shiny.io.
baytrendsmap 1.0.0.9046
===========
Released - 2020-07-07
* Update map legend code; Issue #27
+ User/final files and range/change maps.
baytrendsmap 1.0.0.9045
===========
Released - 2020-07-06
* Change name of change map file; Issue #33
+ Replace "trend" with "change".
+ Internal and download file.
baytrendsmap 1.0.0.9044
===========
Released - 2020-07-06
* Change map output size; Issue #26
+ server.R
- Modified range and change maps to use values set in global.R
+ global.R
- plot_h <- 9
- plot_w <- plot_h/map_coord_ratio
- plot_units <- "in"
- plot_scale <- 1.25
- Use map_coord_ratio so has the same value as coord_fixed when create plots.
baytrendsmap 1.0.0.9043
===========
Released - 2020-07-06
* Unwind change to DESCRIPTION URL and packageVersion() in global.R.
+ Unable to get Shinyapps.io to use the development branch when installing.
baytrendsmap 1.0.0.9042
===========
Released - 2020-07-06
* DESCRIPTION
+ Modify URL for Shiny since using development not main branch.
baytrendsmap 1.0.0.9041
===========
Released - 2020-07-06
* global.R
+ Use packageVersion() instead of manually setting the version.
+ Tests failed before when on Shinyapps.io.
baytrendsmap 1.0.0.9040
===========
Released - 2020-07-06
* Loaded file type text, official to final; Issue #35.
+ server.R
baytrendsmap 1.0.0.9039
===========
Released - 2020-07-01
* Map tabs move save button to top of column alongside apply button.
baytrendsmap 1.0.0.9038
===========
Released - 2020-07-01
* Modify range map to included lowest value in legend; Issue #8 and #30
baytrendsmap 1.0.0.9037
===========
Released - 2020-06-30
* Update filters to sort unique values; Issue #28
baytrendsmap 1.0.0.9036
===========
Released - 2020-06-30
* Modify auto-generated map titles (range and change) for 'user' files; Issue #27
baytrendsmap 1.0.0.9035
===========
Released - 2020-06-30
* Range map; Issue #34
+ Fix spelling for palette.
baytrendsmap 1.0.0.9034
===========
Released - 2020-06-30
* Modify trend map tab; Issue #33
baytrendsmap 1.0.0.9033
===========
Released - 2020-06-29
* Revised "final" data files; Issue #26
baytrendsmap 1.0.0.9032
===========
Released - 2020-06-29
* Modify auto-generated map titles (range and change) for 'final' files; Issue #27
baytrendsmap 1.0.0.9031
===========
Released - 2020-06-29
* Modify help file; Issue #29
baytrendsmap 1.0.0.9030
===========
Released - 2020-06-29
* Modify filter tab; Issue #32
* Modify trend map tab; Issue #33
+ Left variables beyond filename as 'trend'.
baytrendsmap 1.0.0.9029
===========
Released - 2020-06-24
* Modify help file; Issue #29
baytrendsmap 1.0.0.9028
===========
Released - 2020-06-24
* Modify data tab; Issue #31
* Modify filter tab title; Issue #32
baytrendsmap 1.0.0.9027
===========
Released - 2020-06-24
* Modify filter tab; Issue #32
baytrendsmap 1.0.0.9026
===========
Released - 2020-06-17
Increase file size from 10 MB to 100 MB; Issue #25
baytrendsmap 1.0.0.9025
===========
Released - 2020-06-16
* Interface changes complete; Issue #19
baytrendsmap 1.0.0.9024
===========
Released - 2020-06-16
* Changes related to interface update; Issue #19
+ Filter duplicates summary.
- Different table for different data file types.
+ Works for each file type (official and user).
- Fails (filters and dups) to varying degrees when switch between file types.
baytrendsmap 1.0.0.9023
===========
Released - 2020-06-15
* Modified Filtered Data Summary tab; Issue #19
+ Individually official and user ok.
+ Only have issues when change between them in the same session.
baytrendsmap 1.0.0.9022
===========
Released - 2020-06-15
* Modified input data (official vs. user); Issue #19
+ Removed "reset" button as handle internally with a reactiveValues.
+ Filtered Data Summary tab (number of dups and table) still needs work; Issue #19
baytrendsmap 1.0.0.9021
===========
Released - 2020-06-12
* Modify filters for user or official files; Issue #19
+ Still some lingering issues with the changes.
baytrendsmap 1.0.0.9020
===========
Released - 2020-06-12
* Modify file import to be able to use base files saved in-app; Issue #19
+ Remaining issue of if select upload cannot select 'official' file from radio buttons.
- Added 'reset' button but it is not active.
baytrendsmap 1.0.0.9019
===========
Released - 2020-06-11
* Error checking for required columns in imported file; Issue #7
* Revise Error message text for p-value for consistency; Issue #24
baytrendsmap 1.0.0.9018
===========
Released - 2020-06-10
* Remove trend map p-value restriction for sum > 1; Issue #24
+ Added in v1.0.0.9016
baytrendsmap 1.0.0.9017
===========
Released - 2020-06-10
* Fix range map palatte selection; Issue #21
baytrendsmap 1.0.0.9016
===========
Released - 2020-06-09
* Trend map, constrain p-value; Issue #24
+ 0.0 <= p(significant) < p(possible) <= 1.0
baytrendsmap 1.0.0.9015
===========
Released - 2020-06-07
* Add trend map p-values to auto-generated title; Issue #10
baytrendsmap 1.0.0.9014
===========
Released - 2020-06-07
* Update "save map" button; Issue #9
+ No changes other than formatting and comments.
baytrendsmap 1.0.0.9013
===========
Released - 2020-06-07
* Modify range map variable pull-down to descriptive names; Issue #18
baytrendsmap 1.0.0.9012
===========
Released - 2020-06-07
* Modify trend map p-values; Issue #10
baytrendsmap 1.0.0.9011
===========
Released - 2020-05-28
* Add placeholder code to "open" collapsed filters and map options; Issue #23
baytrendsmap 1.0.0.9010
===========
Released - 2020-05-28
* Filter data tab change "entries" to "stations"; Issue #17
baytrendsmap 1.0.0.9009
===========
Released - 2020-05-28
* Fix reset filter button display text spelling; Issue #14
baytrendsmap 1.0.0.9008
===========
Released - 2020-05-28
* Update map titles in case of multiple selections; Issue #11
baytrendsmap 1.0.0.9007
===========
Released - 2020-05-28
* Update Table captions, Issue #15
baytrendsmap 1.0.0.9006
===========
Released - 2020-05-28
* Shiny, Issue #16
+ Remove numbers (3a and 3b) from map options headers.
baytrendsmap 1.0.0.9005
===========
Released - 2020-05-28
* Shiny, Issue #20
+ Rename '1. Import Data' tab to '1. Select Data'.
+ Default to '1. Import Data' tab instead of 'HELP'.
baytrendsmap 1.0.0.9004
===========
Released - 2020-05-28
* README
+ Update install example repo from leppott\baytrendsmap to tetratech\baytrendsmap
+ Update install example to use dependencies = TRUE, Issue #22
- Default of NA does not include packages listed as Suggests in DESCRIPTION
+ Commented out Set.sysenv() since on R v4 and only needed for R v3.6
baytrendsmap 1.0.0.9003
===========
Released - 2020-05-15
* Moved GitHub repo from leppott to tetratech.
+ Redo pkgdown.
baytrendsmap 1.0.0.9002
===========
Released - 2020-04-03
* Added files for use with Docker.
+ buildspec.yml
+ Dockerfile
baytrendsmap 1.0.0.9001
===========
Released - 2020-01-29 (work in progress)
* Updated from rhub::check_for_cran()
+ Title to title case and no ending period.
+ Update maintainer and author names to match.
+ .github folder to .gitbuildignore.
More stuff from check
* checking installed package size ... NOTE
installed size is 31.7Mb
sub-directories of 1Mb or more:
data 3.9Mb
extdata 10.0Mb
shiny-examples 17.7Mb
License components which are templates and need '+ file LICENSE':
MIT
* checking top-level files ... NOTE
File
LICENSE
is not mentioned in the DESCRIPTION file.
Non-standard files/directories found at top level:
‘NEWS.rmd’ ‘README.html’ ‘data-raw’
baytrendsmap 1.0.0
===========
Released - 2019-11-18
* Release version with all updates and edits.
* Update pkgdown website.
baytrendsmap 0.0.3.9011
===========
Released - 2019-11-18
* Fix zoom level buffer. Issue #6.
+ Both Trend and Range maps.
baytrendsmap 0.0.3.9010
===========
Released - 2019-11-18
* server.R
+ Remove leaflet references
baytrendsmap 0.0.3.9009
===========
Released - 2019-11-18
* global.R
+ Remove leaflet package.
baytrendsmap 0.0.3.9008
===========
Released - 2019-11-18
* Fix Up Is Good, Issue #5
+ Trend Map, change color only, not direction.
* ui.R
+ App title to use package version as defined in global.R.
baytrendsmap 0.0.3.9007
===========
Released - 2019-11-06
* Fixed Zoom code. Issue #4.
* Added vignette for use with pkgdown website.
* DESCRIPTION
+ Add URL of pkgdown website.
baytrendsmap 0.0.3.9006
===========
Released - 2019-11-06
* Add custom breaks/classes for range map. Issue #3.
* Add filtered data set for testing.
* Zoom code not working so commented out. Issue #4
* Restructured NEWS.
baytrendsmap 0.0.3.9005
===========
Released - 2019-11-05
* Add a pkgdown website.
* Replace map zoom code with plotly. Issue #4
baytrendsmap 0.0.3.9004
===========
Released - 2019-10-31
* Shiny, Maps
+ Add zoom feature, Issue #4
+ Fixed ratio of 1.3 (better sizing).
* Miscellaneous formatting.
baytrendsmap 0.0.3.9003
===========
Released - 2019-10-30
* Shiny
+ Map, Trend, Add point outlines, Issue #2.
* NEWS
+ Keep NEWS.md file rather than delete.
baytrendsmap 0.0.3.9002
===========
Released - 2019-10-30
* Shiny
+ Map, Range, Add point outlines, Issue #2.
+ Update Help text., Issue #1
baytrendsmap 0.0.3.9001
===========
Released - 2019-10-29
* Shiny
+ Update Help screen, Issue #1.
baytrendsmap 0.0.3
===========
Released - 2019-09-24
* Release stable version with updates.
baytrendsmap 0.0.2.9002
===========
Released - 2019-09-24
* Filter
+ Update "clearFilters" button.
baytrendsmap 0.0.2.9001
===========