-
Notifications
You must be signed in to change notification settings - Fork 2
/
Help_Release_Notes.php
4771 lines (3753 loc) · 291 KB
/
Help_Release_Notes.php
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
<?php
include ("permission_check.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Release Notes</title>
<script type="text/javascript" src="style/resolution.js"></script>
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin-top:0in;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:0.15in;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
{margin-top:0in;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:.5in;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
{margin-top:0in;
margin-right:0in;
margin-bottom:0in;
margin-left:.5in;
margin-bottom:.0001pt;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
{margin-top:0in;
margin-right:0in;
margin-bottom:0in;
margin-left:.5in;
margin-bottom:.0001pt;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
{margin-top:0in;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:.5in;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
.MsoChpDefault
{font-family:"Calibri","sans-serif";}
.MsoPapDefault
{margin-bottom:10.0pt;
line-height:115%;}
@page WordSection1
{size:8.5in 11.0in;
margin:.5in .5in .5in .5in;}
div.WordSection1
{page:WordSection1;}
/* List Definitions */
ol
{margin-bottom:0in;}
ul
{margin-bottom:0in;}
-->
</style>
</head>
<body>
<!-- COPY IN ALL PAGES -->
<?php
include ("function/title.php");
include ("function/menu_main.php");
?>
<BR><BR><BR><BR><BR>
<div class=WordSection1>
<p class=MsoNormal><b><u><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>Release Notes:</span></u></b></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1M (19 Jul 2023):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 742: [connectivity] The v1.0 online matrix and the downloadable JPG are not displaying the same sets of known and refuted connections.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 741: [connectivity]: The netlist is not downloading from the v1.0 matrix page.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1L (12 Jul 2023):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 736: [connectivity]: The display of squares in the v1.0 connectivity matrix is scrambled and the v2.0 types are being listed.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 717: [connectivity]: The Evidence for v1.0 refuted connections are not clear as to why they are being cited.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 715: [connectivity]: The known connections in the v1.0 connectivity matrix lead to empty Evidence pages.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1K (27 May 2023):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 713: [markers]: The v1.0 inference flags lead to empty Evidence pages.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1J (25 May 2023):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 731: [simulation]: Add an emptied pull-down menu option and fill-in boxes to the v1.0 Izhikevich simulator tool when linked in from the browsable matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 729: [simulation]: Add the proper pull-down menu option and fill-in boxes to the v1.0 Izhikevich simulator tool when linked in from a Neuron page.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 727: [simulation]: Add a pull-down menu and fill-in boxes to the v1.0 Izhikevich simulator tool.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 725: [simulation]: Add refractory periods to the v1.0 Izhikevich simulator tool.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1I (13 Mar 2023):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 733: Simulate script not functioning properly.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1H (09 Nov 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 694: [search]: The v1.0 advanced search engine is not yielding correct search results.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 519: [Advanced search] query containing CA2 soma throws an invalid error.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1G (11 Oct 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 721: [probabilities]: The v1.0 synapse probabilities matrices are currently linking to empty Evidence pages.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1F (23 Sep 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 452: [General] SSL support.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1E (16 Sep 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 417: [ePhys]: Wrong values are extracted from PMID 20421280 for v1.0 Rin and tau.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 416: [ePhys]: v1.0 CA1 Horizontal Axo-Axonic Rin and tau might be wrong.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1D (13 Sep 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 702: [morphology] In the v1.0 morphology matrix return all neuron type names to v1.X versions.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 551: [synaptic physiology]: Style (both color and behavior) of “model parameters” options menu is different from the rest of the option menus for the v1.0 Synaptic physiology matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 550: [synaptic physiology]: “From” column of the table covers the horizontal scrollbar in the v1.0 Synaptic physiology matrix.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1C (24 Aug 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 705: [FP]: Fix the v1.0 legends for the firing pattern and firing pattern parameters matrices.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1B (23 Aug 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 704: [help]: Update to v1.0 help.php to include Hippocampome.org usage citations.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 703: [neuron_page]: Add v1.0 connectivity tags to citations.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 R 1A (22 Aug 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 699: [ephys] v1.0 Evidence pages are not showing membrane biophysics ranges correctly.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 697: [ephys] v1.0 Neuron pages are not showing membrane biophysics ranges correctly.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 695: [ephys] v1.0 membrane biophysics matrix hover-over window is not displaying ranges correctly.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 105: identify on v1.0 Neuron page from where the HC name is derived.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.12 (05 May 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>*NEW* The release of v1.12 includes new browsable matrices of synaptic physiology parameter values for combinations of species, sex, age, temperature, and recording mode.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.11 R 1A (24 Mar 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 685: [search]: Remove "Original Firing Pattern" search option from the v1.0 Search menu.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.11 (01 Mar 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>*NEW* The release of v1.11 includes a new browsable matrix of neuron type census values for rat and mouse.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.10 R 1G (24 Feb 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 681: [https] The v1.0 and v2.0 matrices in the connectivity and synapse probability pages do not load properly.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.10 R 1F (21 Feb 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 679: [neuron page]: On v1.0 Neuron pages add "N/A" when the ModelDB PMID is zero.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 677: [neuron page]: Remove second negative markers section on the v1.0 Neuron pages.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.10 R 1E (11 Jan 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 456: [duplicate code]: Unify the code that defines the banner buttons.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 451: [supertypes]: Modify php code to display the new Supertype IDs and descriptors.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 450: [supertypes]: Modify the database to accept Supertype IDs and Supertype descriptors.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 449: [supertypes]: Modify the import scripts to read in the Supertype IDs and Supertype descriptors.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.10 R 1D (10 Jan 2022):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 657: [morphology]: DG Granule cell projections to CA3:SL_SP and CA2:SP are not showing up in the matrix.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.10 R 1C (11 Nov 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 654: [figures]: Missing figures in the morphology Evidence pages.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 653: [type]: Add ranks to the database.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.10 R 1B (09 Nov 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 652: [counts] The Superficial and Deep CA1 PCs are not indented and colored blue in the Neuron type census matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 651: [Neuron page] Add the name derivations to the Neuron pages.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 644: [Izhikevich] The Superficial and Deep CA1 PCs are not indented and colored blue in the Izhikevich matrix.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.10 R 1A (13 Oct 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 650: [Search] The search page returns a blank results page.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.10 (03 Aug 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>*NEW* The release of v1.10 includes the Cognome, a literature review and knowledge base of spiking neural circuit and network simulations of the hippocampal formation.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.9 R 1E (03 Aug 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 649: [counts] Craft the Evidence pages for counts.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 648: [counts] Create the Quantification browse matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 647: [counts]: Get the counts to appear on the Neuron pages.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 646: [counts] Import spreadsheets into the database.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.9 R 1D (24 May 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 645: [Izhikevich] Three EC interneurons are missing from the Izhikevich matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 642: [FP] Three EC interneurons are missing from the Firing Pattern matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 641: [connectivity] One EC interneuron is missing from the connectivity matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 640: [ephys] Three EC interneurons are missing from the membrane biophysics matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 639: [markers] One EC interneuron is missing from the markers matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 638: [morphology] Two EC interneurons are missing from the morphology matrix.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.9 R 1C (13 May 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 637: [counters] The Hits and Unique Hits counters are displaying zero hits.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.9 R 1B (30 Apr 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 635: [markers]: The comparison tables at the top of the Evidence pages are missing.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.9 R 1A (05 Apr 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 634: [markers] Markers with hyphens or underscores are not leading to proper marker pages when clicked on.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.9 (31 Mar 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>*NEW* The release of v1.9 includes a new browsable matrix for in vivo recordings.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1S (30 Mar 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 633: [synaptic physiology]: Provide download links to parameter-linked .csv files.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1R (11 Mar 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 632: [phases]: Merge "head fixed running" metadata tag into "head-fixed awake" tag in the database.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 628: [phases]: Modify php code to accommodate change of metadata tag from "REM sleep" to just "sleep".
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 627: [phases]: Change the checkbox for "REM sleep" to just "sleep".
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1Q (08 Mar 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 626: [phases] Add a new "Other" column to the main phases matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 610: [synaptic physiology] Create tools page.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1P (04 Mar 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 590: [ephys]: The hover-over windows for the membrane biophysics matrix are not reporting the correct protocol information.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1O (02 Mar 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 625: [phases] Add CA3 QuadD-LM [2094] to the phases matrix after CA3 Basket CCK+.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 624: [phases] Add errors and N values to Evidence pages for in vivo firing rates.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 623: [phases] Update Evidence pages to accommodate new Sub CA1-Projecting Pyramidal cells [5005].
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 622: [phases] Move the explanatory text from the legend to be above the main matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 621: [phases] The EC neuron types are not showing up in the phases matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 620: [phases] Add Sub CA1-Projecting Pyramidal to the main matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 618: [markers] One of the citations is not showing up for CB- for CA2 Pyramidal cells.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 617: [Neuron page] The phases information is not showing up on the Neuron page for CA1 C-Bistratified [4181].
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 616: [phases] In the main phases matrix CA1 Recurrent O-LM [4089] is not linked to its Neuron page.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 615: [phases] The CA1 Horizontal Basket CCK+ [4139] neuron type should be removed from the main phases matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 614: [phases] The CA1 Interneuron types in the main phases matrix are not in alphabetical order.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 613: [phases] The CA1 (i)0302 C-Bistratified [4181] neuron type is missing from the main phases matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 601: [phases] Post to the portal the N values for all phases-related values with errors.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1N (01 Mar 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 619: [Synaptic Physiology] The Synaptic Physiology matrix is not showing up.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1M (26 Feb 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 599: [phases]: Determine the N values for all of the phases-related values in the main spreadsheet.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1L (25 Feb 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 609: [markers]: Add new marker differences for CA1 Superficial and Deep Pyramidal cells.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 607: [Neuron page]: The List of Articles on the Neuron pages only list morphology citations.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 602: [phases]: Post to the portal the error values and error types for the Run/Stop ratio values.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 600: [phases]: Determine the error values and error types for the Run/Stop ratio values.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1K (20 Feb 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 603: [phases] Add new DG neuron type to the main phases matrix.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1J (19 Feb 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 608: [Neuron page]: Add examples of CA1 Superficial and Deep Pyramidal cells to their respective Neuron pages.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1I (16 Feb 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 606: [misc] Change the number of neuron types for CA1 in the morphology, ephys, and connectivity matrices from 43 to 42.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 605: [phases] Change the number of neuron types for CA1 in the phases matrix from 16 to 15.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 604: [phases] Change the main pull-down menu selector from "Oscillation phases" to "In vivo recordings."
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1H (14 Feb 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 595: [markers]: Distinguish subtypes from generic types in the markers matrix.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1G (11 Feb 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 598: [phases]: Add a linked jpeg version of Figure 5A from the manuscript to the phases matrix page.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1F (10 Feb 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 597: [phases]: For values in the Phases Evidence pages add errors and n values.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1E (06 Feb 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 596: [phases]: The Evidence pages for the new generic CA1 Pyramidal cells and the CA1 Superficial and Deep Pyramidal cells are not working.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1D (02 Feb 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 593: [phases]: Distinguish subtypes from generic types in the phases matrix.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1C (01 Feb 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 594: [connectivity]: Distinguish subtypes from generic types in the connectivity matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 592: [morphology]: Distinguish subtypes from generic types in the morphology matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 591: [ephys]: Distinguish subtypes from generic types in the membrane biophysics matrix.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 588: [ephys]: More clearly distinguish the membrane biophysics of the CA1 Superficial and Deep Pyramidal cells.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1B (29 Jan 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 589: [phases]: The metadata filters do not properly filter out data when no metadata are selected.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 R 1A (28 Jan 2021):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 587: [phases]: Make the "All Other Values" selector more obvious.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.8 (28 Dec 2020):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>*NEW* The release of v1.8 includes new browsable matrices for neurite lengths, somatic path distances, numbers of potential synapses, numbers of contacts, and connection probabilities.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.7 R 1BE (14 Dec 2020):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 577: [phases]: Add evidence page.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 575: [morphology] Neuron type morphology search results matrix is displaying a shift.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 570: [ephys] Update database with split of CA1 PCs.
</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 566: [ephys] Formally split CA1 PCs into Superficial and Deep neuron types.
</span></p>
</BR>
<p class=MsoNormal><span style='font-size:16.0pt;line-height:115%;
font-family:"Arial","sans-serif"'>v1.7 R 1BD (12 Dec 2020):</span></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-size:14.0pt;line-height:115%;font-family:Symbol'>•<span
style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:14.0pt;line-height:115%;font-family:"Arial","sans-serif"'>Fixed Issue 585: [markers] The Markers matrix from the Neuron Type search results is not appearing at all on devur2.
</span></p>