-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
releaseNotes.scroll
2422 lines (1771 loc) · 84.2 KB
/
releaseNotes.scroll
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
buildConcepts releaseNotes.csv releaseNotes.json releaseNotes.tsv
buildMeasures releaseNotesMeasures.tsv
title Scroll Release Notes
microlangs/changes.parsers
header.scroll
printTitle
## A list of what has changed in Scroll releases.
thinColumn
Download as CSV | TSV | JSON
link releaseNotes.csv CSV
link releaseNotes.tsv TSV
link releaseNotes.json JSON
br
center
ciBadges.scroll
br
thinColumns
📦 136.6.0 9/27/2024
📦 added `printColumn` parser
📦 136.5.0 9/27/2024
🎉 added `disk` parser which generates a table from local disk contents
📦 136.4.1 9/27/2024
🏥 type fix in table links
📦 136.4.0 9/27/2024
🎉 new aftertext relative link parser. relative links with 33% fewer words.
🎉 use quick links in image tags.
🏥 bug fix where tableSearch was getting applied to non scroll tables such as Dashboards
Find/Replace for shorter relative links:
code
^ link ([^\s]+)\.html
$1.html
📦 136.3.0 9/27/2024
🎉 new expand/collapse button on tables and removed confusing zoom in/zoom out
🎉 copy button on tables now generates just data, no more header/footer cruft
🎉 removed rarely used csv button on tables in favor of better copy button
📦 136.2.1 9/26/2024
🏥 container style fix when in snippets
📦 136.2.0 9/26/2024
🎉 added `container` parser
📦 136.1.0 9/26/2024
🎉 added `hakon` parser
📦 136.0.0 9/26/2024
⚠️ BREAKING: (no one should be affected). haml was matching too much. now haml parser requires an #id.
📦 135.0.0 9/26/2024
🎉 added `tufte` theme
⚠️ BREAKING: removed `gazetteCss`. Now use `theme gazette`.
⚠️ BREAKING: removed `tufteCss`. Now use `theme tufte`.
📦 134.1.0 9/26/2024
🎉 added `theme` parser and 3 themes: roboto, dark, and gazette
🎉 added `iframes` parser
📦 134.0.0 9/25/2024
🎉 added `haml` quick html tags
⚠️ BREAKING: (no one should be affected) if you have lines starting with a sequence like tag#id or tag.someClassName, they will now get matched to HAML parser.
📦 133.6.0 9/24/2024
🎉 added `links` parser to tables
📦 133.5.0 9/24/2024
🎉 added `compose` parser to tables
📦 133.4.0 9/24/2024
🎉 added `quickIncludeJsonParser` parser
📦 133.3.0 9/24/2024
🎉 added `cloc` parser
🎉 you can now use quickHtml in table flows
📦 133.2.0 9/22/2024
🎉 added `favIcon` parser
📦 133.1.0 9/21/2024
🎉 groupBy now supports better reductions including concat and first
📦 133.0.1 9/15/2024
🏥 better error message when eval'ing macros
📦 133.0.0 9/15/2024
🎉 Updated ScrollSDK to get new "atoms" terminology.
⚠️ BREAKING: see ScrollSDK breaking changes
📦 132.0.1 9/14/2024
🏥 fix unix timestamps in printTable
📦 132.0.0 9/14/2024
🎉 Updated ScrollSDK to get new "subparticle" terminology
⚠️ BREAKING: see ScrollSDK breaking changes
📦 131.0.0 9/14/2024
🎉 new parser: `quickCssParser`
🎉 new parser: `quickIncludeHtmlParser`
🎉 new parser: `quickScriptParser`
⚠️ BREAKING: (no one should be affected) if you have a one atom line that ends with .js, .css, or .html it will now be consumed by these parsers above.
📦 130.5.0 9/13/2024
🎉 new `assertHtmlEqualsParser` for faster and more intelligent testing
🏥 fix edge bug in inline markup parsers
📦 130.4.2 9/13/2024
🏥 counter should be floor not ceil
📦 130.4.1 9/12/2024
🎉 support for relative links in Url columns in `printTable`
🏥 scroll init style fix
📦 130.4.0 9/12/2024
🎉 add detection of timestamp columns and print them as dates in `printTable`
🎉 remove "Exported data" from copied text in datatables copy buttons
// todo: need to remove this properly from the bundle, including the extra 2 blank lines.
📦 130.3.6 9/12/2024
🏥 buttons with link should be fully clickable
📦 130.3.5 9/11/2024
🏥 ScrollSetCLI fix
// todo: is this the right place for this file?
📦 130.3.4 9/10/2024
🏥 ScrollSetCLI fix
📦 130.3.3 9/10/2024
🏥 ScrollSetCLI fix
📦 130.3.2 9/10/2024
🏥 make just text clickable in view source links
📦 130.3.1 9/9/2024
🏥 npm fix
📦 130.3.0 9/9/2024
🎉 upstream ScrollSetCLI
📦 130.2.1 9/8/2024
🏥 table loop fixes
🏥 table json parsing fixes
📦 130.2.0 9/8/2024
🎉 added `limit` parser to tables
🎉 `loop` parser can now loop over tables
📦 130.1.1 9/5/2024
🎉 oneTextarea max height
📦 130.1.0 9/5/2024
🎉 oneTextarea forms now show a placeholder and example form
📦 130.0.0 9/4/2024
🎉 forms now submit via email and generate a nicely formatted email
⚠️ BREAKING: (no one should be effected) `classicForm` and `scrollForm` work differently now.
📦 129.0.0 9/4/2024
🎉 added `quickImport` parser for imports.
⚠️ BREAKING: (no one should be effected) if you had any lines that were just [filename].(scroll|parser), those will now be parsed as imports
📦 128.0.1 9/4/2024
🏥 better handling of circular dependencies with tables
📦 128.0.0 9/4/2024
🎉 added `quickVideo` parser for including videos.
🎉 added `quickMusic` parser for including sound files.
🎉 added `quickTable` parser for including csvs, tsvs, psvs, and ssvs.
⚠️ BREAKING: (no one should be effected) if you had any catch all lines starting with [filename].[one of the above extensions] will now be caught by one of these quick parsers
### Demos
belowAsCode 3
tests/sipOfCoffee.m4a
loop
tests/spirit.mp4
loop
pages.csv
printTable
tableSearch
📦 127.0.0 9/4/2024
🎉 added `quickImage` parser. Add an image with just the filename. quickImageParser detects by filename.
⚠️ BREAKING: (no one should be effected) if you had any lines starting with [filename].(png|jpg|et cetera) will be parsed as image.
belowAsCode
particles.png
📦 126.1.0 9/3/2024
🎉 `scrollForm` now implements the One Textarea design pattern. Thanks Alejandro for your help!
https://breckyunits.com/oneTextarea.html One Textarea design pattern
📦 126.0.1 9/3/2024
🏥 column stack fix
📦 126.0.0 9/3/2024
🎉 added `scrollForm` parser
🎉 added support for `textarea` to ScrollSet forms
🎉 added `abstractTextareaMeasureParser`
🎉 added `mediumColumn`, `thinColumn`, and `wideColumn` parsers.
⚠️ BREAKING: renamed `form` to `classicForm`
📦 125.8.0 9/2/2024
🎉 show * on required form fields
📦 125.7.0 9/2/2024
🎉 added `form` parser
📦 125.6.0 9/2/2024
🎉 metaParser now emits link to git tags
📦 125.5.1 9/2/2024
🏥 make printCsv work with buildCsv
📦 125.5.0 9/2/2024
🎉 heatrix drops first row if after a transpose
🎉 heatrix now does not color years if first row
📦 125.4.0 9/1/2024
🎉 upgrade ScrollSDK
📦 125.3.0 9/1/2024
🎉 cleanup docs to switch to term Particle Syntax (aka Particles).
📦 125.2.0 8/31/2024
🎉 chat parser now supports repeated messages from 1 side via blank lines
Example:
belowAsCode
chat
I have some questions
What is your current productivity tool
pen and paper
Hmm and for project management?
pen and paper
📦 125.1.0 8/30/2024
🎉 switch `youTube` parser to `youtube` (all lowercase). Deprecate old spelling.
📦 125.0.1 8/29/2024
🏥 particles table fix
📦 125.0.0 8/29/2024
🎉 upgraded ScrollSDK to 84
⚠️ BREAKING: ScrollSDK updates require updating any Parsers with new "Particle" nomenclature
⚠️ BREAKING: `tree` is no longer a table format. Use `particles` instead.
📦 124.1.0 8/28/2024
🎉 added `buildPdf` parser. Currently requires MacOS + Chrome.
📦 124.0.0 8/27/2024
⚠️ BREAKING: removed `printMeasures`
⚠️ BREAKING: removed `printConcepts`
⚠️ BREAKING: `buildConcepts` and `buildMeasures` now generates `csv` by default instead of `tsv`
Before:
codeWithHeader contacts.scroll
buildConcepts
printConcepts
After:
codeWithHeader contacts.scroll
buildConcepts
table
printTable
📦 123.3.0 8/27/2024
🎉 ending a column with "Url" in tables will now print the column name linked rather than url
📦 123.2.0 8/26/2024
🎉 added popularity table to leetsheet
🎉 added popularity numbers to parsers
🎉 added csv output to `printUsageStats`
📦 123.1.0 8/26/2024
🎉 updated ScrollSDK
🎉 better Parsers leetsheet documentation
📦 123.0.0 8/25/2024
🎉 updated ScrollSDK
⚠️ BREAKING: (no one should be affected). `printLeetSheet` is now `printScrollLeetSheet`
⚠️ BREAKING: (no one should be affected). `printAvancedLeetSheet` is now `printparsersLeetSheet`
📦 122.0.0 8/25/2024
🎉 updated ScrollSDK to get `paintParser` which replaces `highlightScopeParser`
⚠️ BREAKING: rename `highlightScope` to `paint`
📦 121.0.1 8/20/2024
🏥 web version printTitle fix.
📦 121.0.0 8/19/2024
🎉 emailButton, homeButton, downloadButton can now take a link
⚠️ BREAKING: `wwsButton` is now `downloadButton`
⚠️ BREAKING: removed `email`. Now do `emailButton [email]`
⚠️ BREAKING: removed `downloadUrl`. Now do `downloadButton [url]`
📦 120.2.1 8/19/2024
🏥 fix indent bug in `printRelated`
📦 120.2.0 8/15/2024
🎉 added `br` parser
🎉 added `buildCsv` parser
📦 120.1.0 8/15/2024
🎉 add clickable examples to leetsheet
📦 120.0.0 8/14/2024
🎉 added `emailButton` parser.
🎉 added `scrollVersionLink` parser.
🎉 added `wwsButton` parser.
🎉 `center` parser now also creates centered sections:
center
This should be centered.
⚠️ BREAKING: `printViewSource` is now `viewSourceLink`
⚠️ BREAKING: `pageFooter` has been split into simpler parsers.
codeWithHeader Find/Replace
find ^pageFooter
replace
center
emailButton
downloadButton
viewSourceButton
scrollVersionLink
📦 119.0.0 8/13/2024
🎉 added `homeButton` parser.
🎉 added `leftRightButtons` parser.
🎉 added `viewSourceButton` parser.
⚠️ BREAKING: removed `pageHeader`. Split that into 3 simpler parsers. Change `pageHeader` to:
codeWithHeader Find/Replace
find ^pageHeader
replace
homeButton
leftRightButtons
viewSourceButton
⚠️ BREAKING: `printViewSourceBadge` is now `viewSourceButton`
⚠️ BREAKING: removed `homeUrl`. Insead do:
code
homeButton
link ../someOtherURL.html
📦 118.9.0 8/11/2024
🎉 added `video` parser.
belowAsCode
video tests/spirit.mp4
loop
📦 118.8.0 8/11/2024
🎉 added `music` parser for playing songs, podcasts, sounds, et cetera.
belowAsCode
music tests/sipOfCoffee.m4a
loop
📦 118.7.0 8/11/2024
🎉 added v0.1.0 of `nickelbackIpsum` parser. Idea from gigamick.
https://news.ycombinator.com/user?id=gigamick gigamick
📦 118.6.3 8/10/2024
🏥 `label` should show up in scatterplot autocomplete
📦 118.6.2 8/9/2024
🏥 don't trigger keyboard shortcuts if someone is trying to use keyboard back button shortcut. Thanks to Ben Atkin for the bug report!
https://github.com/benatkin Ben Atkin
📦 118.6.1 8/9/2024
🏥 button link color fix
📦 118.6.0 8/9/2024
🎉 added `button` parser
🎉 added `dinkus` parser
📦 118.5.0 8/8/2024
🎉 make `image` parser easier to extend
📦 118.4.0 8/6/2024
🎉 add `impute` parser
📦 118.3.0 8/6/2024
🎉 `fetch` now writes to localStorage in browser environment.
🎉 `table` now can read from localStorage in browser environment.
🏥 handle empty values in `groupBy` parser
📦 118.2.2 8/6/2024
🏥 fix mac file name lower case issue
📦 118.2.1 8/6/2024
🏥 fix mac file name lower case issue
📦 118.2.0 8/6/2024
🎉 more concise `tableSearch` styling
📦 118.1.0 8/6/2024
🎉 `tableSearch` now adds copy and CSV buttons.
📦 118.0.0 8/6/2024
🎉 tables: added delimiter autodetection
🎉 tables: added columnName autocomplete
🎉 tables: added `transpose` parser
🎉 scatterplot: added x, y, and other autocompletes
⚠️ BREAKING: `sparkline [columnName]` is now `sparkline\n y [columnName]`
📦 117.1.0 8/5/2024
🎉 tables: added `groupBy` parser for "pivot tables"
📦 117.0.1 8/5/2024
🏥 fix highlight bug in where parser
📦 117.0.0 8/5/2024
🎉 tables: added `select` parser
🎉 tables: added `orderBy` parser
🎉 tables: added `rename` parser
🎉 tables: added `reverse` parser
🎉 added `fetch` parser
⚠️ BREAKING: (no one should be affected) Scroll now requires NodeJS >= 18.0.0.
📦 116.0.0 8/3/2024
⚠️ BREAKING: `scatterplot` now gets data from `table`.
📦 115.2.0 8/3/2024
🏥 fix extra space in related snippets
📦 115.1.0 8/3/2024
🏥 more regression fixes.
📦 115.0.2 8/3/2024
🏥 more regression fixes.
📦 115.0.1 8/3/2024
🏥 fix table regression.
📦 115.0.0 8/3/2024
🎉 `table [filename].[json|tsv|csv]` to load and print a table from disk
🎉 `sparkline` now can take a table as input:
code
table posts.csv
sparkline
y wordCount
⚠️ BREAKING: removed support for root level TSV. Not useful enough. Convert any root TSV to a standard table.
⚠️ BREAKING: removed `printTable` at root level. Now works nested under table
⚠️ BREAKING: removed `spaceTable`. See below to migrate.
⚠️ BREAKING: removed `tabTable`. See below to migrate.
⚠️ BREAKING: removed `treeTable`. See below to migrate.
⚠️ BREAKING: removed `commaTable`. See below to migrate.
⚠️ BREAKING: removed `pipeTable`. See below to migrate.
⚠️ BREAKING: `table` now takes delimiter and data parsers. Usage:
table
delimiter ,
printTable
data
name,score
Kape,35
Regex to find all breaks: ^(printTable|spaceTable|tabTable|treeTable|commaTable|pipeTable|table )
📦 114.0.0 8/2/2024
🎉 `inlineMarkups` now supports setting attributes and tags
🏥 upgrade scrollsdk to get exponential notation numbers fix
⚠️ BREAKING: (no one should be affected). Removed short form of link inline markup. Just use `a href="url"` instead.
📦 113.0.0 8/1/2024
🎉 added `inlineMarkups` parser. Thanks to eugenesvk for the idea.
https://github.com/eugenesvk eugenesvk
https://github.com/breck7/scroll/issues/122 idea
🎉 `printSourceStack` now prints [Unchanged] if the source was not changed during a compiler step.
⚠️ BREAKING: `wrapsOn` is now `inlineMarkupsOn`
⚠️ BREAKING: `wrap` is now `inlineMarkup`
📦 112.1.2 7/31/2024
🏥 counters fix
📦 112.1.1 7/31/2024
🏥 counters fix
📦 112.1.0 7/31/2024
🎉 added `counters` parser.
📦 112.0.0 7/31/2024
🎉 added `printSourceStack` parser to provide a clean way to view source code at each step in compilation.
⚠️ BREAKING: removed `readingList` parser. Aftertext is a better choice.
⚠️ BREAKING: merged `printExpandedSource` and `printOriginalSource` into `printSourceStack`
📦 111.5.0 7/29/2024
🎉 added `buildFiles` to CLI class
📦 111.4.0 7/29/2024
🎉 added `printExpandedSource` and `printOriginalSource` parsers
📦 111.3.0 7/29/2024
🎉 better error messages
📦 111.2.0 7/29/2024
🎉 added `testStrict` parser to allow disabling catch all paragraph on a per file basis.
📦 111.1.0 7/26/2024
🎉 `heatrix` now supports using custom labels even for numeric atoms.
🏥 always include a 0 value in `heatrix`
// not sure if this is correct design.
📦 111.0.0 7/26/2024
🎉 redesigned `heatrix`.
⚠️ BREAKING: (no one should be affected). `heatrix` is now `heatrixAdvanced`. `heatrix` is the simplest fast version now.
📦 110.3.0 7/25/2024
🎉 print 0's in `heatrix`
🏥 remove stray console.log
📦 110.2.0 7/25/2024
🎉 `printCsv` now includes `year` column
🎉 added `heatrix` parser
📦 110.1.0 7/25/2024
🎉 captions now have the same width as their images
📦 110.0.0 7/24/2024
🎉 `printRelated` now has support for tags! No need to add a `related` line on each post.
⚠️ BREAKING: `groups` is now `tags`.
⚠️ BREAKING: `printRelatedList` is now just `printRelated`.
⚠️ BREAKING: removed `related` parser. Now just use tags. Apply tags liberally.
📦 109.5.0 7/21/2024
🎉 added `codeWithHeader` parser
🎉 added `center` aftertext markup parser
🎉 txt versions of aftertext links now includes the pattern
🎉 added `printFormatLinks` parser
📦 109.4.0 7/21/2024
🎉 `printAdvancedLeetSheet` now also prints atom parser docs
📦 109.3.0 7/20/2024
🎉 easily apply styling to a whole paragraph using aftertext.
Demo:
belowAsCode 4
Hello world
bold
This is italicized
italics
Make this code
code
Strikethrough this whole line.
strike
📦 109.2.0 7/19/2024
🎉 add `printAdvancedLeetSheet` after feedback in r/WorldWideScroll
https://www.reddit.com/r/WorldWideScroll/comments/1e77m6p/writing_parsers/ r/WorldWideScroll
📦 109.1.0 7/19/2024
🎉 added support for `height` and `width` to images
🎉 added support for `float` to images
📦 109.0.2 7/19/2024
🏥 fixed incorrect error report.
📦 109.0.1 7/19/2024
🏥 fix atom syntax highlighting in `wrapsOn`. You can write `wrapsOn none` to disable all wraps.
📦 109.0.0 7/18/2024
🎉 `printCsv` now exports `authors` as well
🎉 added `authors` parser to support multiple authors
🎉 `authors` now can use all aftertext features
⚠️ BREAKING: `printAuthor` is now `printAuthors`
⚠️ BREAKING: `author` is now `authors`.
To update from `author` to `authors`, you can use this regex find/replace:
Find: ^author ([^ ]+) (.*)
Replace: authors $2\n $1 $2
📦 108.3.1 7/16/2024
🏥 include microlangs in npm package
📦 108.3.0 7/16/2024
🎉 added `contacts` microlang.
🎉 changed gazetteCss link color to be subtler
🎉 added `microlangs` folder
📦 108.2.0 7/15/2024
🎉 added `center` parser! first blink, now center!
📦 108.1.0 7/15/2024
🎉 table style improvements
📦 108.0.0 7/15/2024
⚠️ BREAKING: (no one should be affected) Renamed `printCheatSheet` to `printLeetSheet`
📦 107.3.0 7/14/2024
🎉 added `printUsageStats` parser.
🎉 docs: bolded commonly used parsers in cheat sheet.
🎉 docs: other cheat sheet improvements.
🎉 docs: `printCheatSheet` now prints good txt only docs too.
📦 107.2.0 7/14/2024
🎉 docs: clearer, more conscise descriptions of 7 atoms or less on every parser.
🎉 docs: `printCheatSheet` now prints descriptions.
📦 107.1.0 7/14/2024
🎉 add `printCheatSheet` parser v0.1.0
📦 107.0.0 7/14/2024
🎉 correct syntax highlighting for the different kinds of Parsers.
🎉 removed some parsers from appearing in autocomplete
🏥 blink works for any colors now.
⚠️ BREAKING: If you have written your own parsers `keywordAtom` has been replaced by `cueAtom`. You can do a simple find/replace or just add:
code
keywordAtom
extends cueAtom
📦 106.0.1 7/13/2024
🏥 fix bug where running `scroll build` through passed in SSH command was hanging
📦 106.0.0 7/11/2024
🎉 added missing documentation for better autocomplete
⚠️ BREAKING: removed deprecated parsers: `startColumns`, `gazetteHeader`, `gazetteFooter`, `byLine`
📦 105.1.0 7/11/2024
🎉 added `printViewSourceBadge` parser
📦 105.0.0 7/11/2024
⚠️ BREAKING: removed the `git` parser. No longer needed now that we use deep link to all source pages.
⚠️ BREAKING: renamed `viewSource` to `printViewSource` to clarify that it prints an HTML element.
📦 104.0.0 7/11/2024
⚠️ BREAKING: the git icons now point to the viewSource url, not to a master git repo page. This should make it easier to go to the specific source file of interest.
📦 103.0.2 7/11/2024
🏥 `pageHeader` and `pageFooter` parsers will now only emit icons for git, downloadUrl, and email if those items are set
📦 103.0.1 7/11/2024
🏥 code div fix in slideshows
📦 103.0.0 7/10/2024
⚠️ BREAKING: shortened `strikethrough` parser to `strike`
📦 102.3.0 7/08/2024
🎉 add support for TSVs to scatterplot
📦 102.2.2 7/08/2024
🏥 measureStats fix
📦 102.2.1 7/08/2024
🏥 `loadConcepts` fix
📦 102.2.0 7/08/2024
🎉 build scrollsets first and so the outputs can be used to build html files
📦 102.1.0 7/07/2024
🎉 integrate feedback from h4l to make tables expand on click
https://www.reddit.com/r/programming/comments/1dwvezp/comment/lc0ytu6/ feedback from h4l
📦 102.0.0 7/06/2024
🎉 changed `relatedParser` to `relatedScrollFilesParser` to free up `relatedParser` for userland.
⚠️ BREAKING: renamed `relatedList` to `printRelatedList`
📦 101.6.0 7/06/2024
🎉 added `sortBy` to `printConcepts` parser
📦 101.5.0 7/05/2024
🎉 `scroll init` generates a smaller site
📦 101.4.0 7/04/2024
🎉 renamed `descriptionParser` to `openGraphParser` and `titleParser` to `pageTitleParser` to free up those names for userparserland.
📦 101.3.0 7/03/2024
🎉 added `buildJs` and `script` parsers
📦 101.2.0 7/03/2024
🎉 added `buildCss` parser
🏥 fix css text regression
📦 101.0.1 7/03/2024
🏥 fix sitemap regression
📦 101.0.0 7/03/2024
This is a major breaking release meant to simplify and standardize a lot of the core Scroll concepts.
🎉 added `buildHtml` parser
🎉 added `buildRss` parser
🎉 you no longer need to write `importOnly` on a file if the file uses no buildCommandParsers.
⚠️ BREAKING: `snippets` => `printSnippets`
⚠️ BREAKING: `fullSnippets` => `printFullSnippets`
⚠️ BREAKING: `buildText` => `buildTxt`
⚠️ BREAKING: `scroll build` will no longer write anything by default. You now need to explicitly include 1 or more buildCommands in your files, such as `buildHtml` or `buildTxt`.
⚠️ BREAKING: removed `tags` parser in css themes. Instead of this:
code
permalink style.css
gazetteCss
tags false
Do this:
code
buildCss style.css
gazetteCss
📦 100.0.0 7/02/2024
🎉 if not present, `date` is now derived from file creation time
🎉 if not present, `title` is now computed by un-camelcasing the filename
⚠️ BREAKING: (no one should be affected) date and title are now computed automatically so if you had a file missing those previously on purpose (for some reason), they will now actually have those.
📦 99.2.0 7/01/2024
🎉 added changes.parsers
🎉 Scrollsets now supports defining concept delimiters other than `id`
📦 99.1.0 7/01/2024
🎉 added `limit` parser to snippets
📦 99.0.0 6/30/2024
⚠️ BREAKING: I moved `wws` to its own repo
📦 98.0.2 6/30/2024
🏥 another missing file in package fix
📦 98.0.1 6/29/2024
🏥 fix bug #115 in `wws`. Thank you Nick Noble!
https://github.com/breck7/scroll/issues/115 bug #115
https://github.com/nickisnoble Nick Noble
📦 98.0.0 6/26/2024
⚠️ BREAKING: `writeText` is now `buildText`
⚠️ BREAKING: `writeConcepts` is now `buildConcepts`
⚠️ BREAKING: `writeMeasures` is now `buildMeasures`
⚠️ BREAKING: (no one should be affected), `buildFilesInFolder` now returns an object of all built files.
📦 97.4.0 6/25/2024
🎉 added `scatterplot` can now take a url as a data source
📦 97.3.1 6/24/2024
🏥 bug fix
📦 97.3.0 6/24/2024
🎉 added `scatterplot` parser
📦 97.2.0 6/23/2024
🎉 added `stamp` mini language
📦 97.1.1 6/21/2024
🏥 test fix
📦 97.1.0 6/21/2024
🎉 added `sparkline` parser using beautiful tiny sparkline library by Marius Gundersen.
https://github.com/mariusGundersen/sparkline sparkline library
https://mariusgundersen.net/ Marius Gundersen
belowAsCode
sparkline 5 7 27 87 300 17 10 5
📦 97.0.0 6/19/2024
🎉 BREAKING: upgraded scrollSDK to get `grammar` to `parsers` change.
📦 96.0.0 6/18/2024
🎉 Instead of `grammar` it's just `parsers`.
⚠️ BREAKING: (no one should be affected) files previously ending in `.grammar` now end in `.parsers`.
📦 95.2.0 6/16/2024
🎉 added `formatAndSave` method.
📦 95.1.0 6/14/2024
🎉 added `wws` command line app.
📦 95.0.0 6/11/2024
🎉 added `downloadUrl` parser.
⚠️ BREAKING: `canonicalLink` is now `canonicalUrl`.
⚠️ BREAKING: `homeLink` is now `homeUrl`.
📦 94.0.1 6/1/2024
🏥 make slideshow start after the first dinkus
📦 94.0.0 5/31/2024
🎉 jtree is now the "ScrollSDK" and "Tree Notation" is now "Particles"
⚠️ BREAKING: (only advanced users affected), if you wrote custom Parsers, you may need to find/replace `jtree` with `scrollsdk`
📦 93.7.1 5/30/2024
🏥 katex should print contents in txt compilation
📦 93.7.0 5/29/2024
🎉 added `classes` parser
📦 93.6.2 5/28/2024
🏥 more Windows fixes
📦 93.6.1 5/28/2024
🏥 upgrade JTree to try and get Scroll working on Windows
📦 93.6.0 5/28/2024
🎉 clean up generated html (add a <body> tag).
📦 93.5.0 5/27/2024
🎉 clean up generated html (add a <head> tag, for instance).
📦 93.4.0 5/27/2024
🎉 improved meta tags
📦 93.3.0 5/27/2024
🎉 all Parsers can now use `requireOnce`
🎉 added `abstractCustomListItemParser` for making HTML lists with custom markers
🏥 bug fix in slideshow
📦 93.2.0 5/23/2024
🎉 `writeConcepts` and `writeMeasures` now strips blank values when generating JSON and/or JS
📦 93.1.0 5/23/2024
🎉 `tableSearch` now will save the sort order to the url
🏥 fixed bug where updates to externals would not get copied
📦 93.0.0 5/21/2024
🎉 `scroll format` command now also prettifies concepts and measurements in ScrollSets. If a measurement's `sortIndex` jumps to a new integer (for example, 1.9 to 2.1), a newline will be inserted before it.
⚠️ BREAKING: (no one should be affected) the default `sortIndex` is now 1.9, and the sort index of `id` is 1.0. Update `sortIndex` accordingly.
📦 92.0.0 5/20/2024
🎉 simplified ScrollSets by removing the filename "magic". When putting a concept into a file, make the `id` the filename (without the extension). Have the id be a simple one atom url friendly string. If you want a pretty title, add a `name` measure. Everything much simpler this way.
⚠️ BREAKING: (no one should be affected) remove any spaghetti filename code.
📦 91.0.0 5/19/2024
🎉 `printAuthor` parser prints the author defined by `author`. `byLine` has been deprecated--replace with `printAuthor`.
⚠️ BREAKING: `author` parser now takes a URL.
📦 90.5.0 5/19/2024
🎉 added `printDate` parser
📦 90.4.1 5/19/2024
🏥 `helpfulNotFound` now assumes the script can be found at the root of the domain.
📦 90.4.0 5/19/2024
🎉 helpful 404 can now take multiple sitemaps as a parameter
📦 90.3.0 5/18/2024
🎉 renamed `Scroll Datasets` to `ScrollSets`.
📦 90.2.3 5/18/2024
🏥 `Coverage` in Measurements should round down.
📦 90.2.2 5/18/2024
🏥 fixed Grammar method name conflict with measures. Now they should be `isMeasureRequired`.
📦 90.2.1 5/18/2024
🏥 fixed `metaTags` from breaking try.scroll.pub
🏥 got `slideshow` working on try.scroll.pub
📦 90.2.0 5/18/2024
🎉 added `slideshow` parser
🎉 grammar extensions can now use "copyFromExternal"
📦 90.1.1 5/17/2024
🏥 added test and fixed bug with `printTitle` in text files
📦 90.1.0 5/17/2024
🎉 2.5x faster test running thanks to adding cacheing to measure parser
📦 90.0.0 5/16/2024
⚠️ BREAKING: `idParser` and `filenameParser` no longer ship in default grammar. This will allow for useful future dataset features. Instead, add them yourself if you are using Concepts like this:
code
idParser
extends abstractIdParser
filenameParser
extends abstractFilenameParser
📦 89.2.1 5/16/2024
🏥 fixed required measurements when computeds are involved
🎉 print folder name when running scroll test
📦 89.2.0 5/16/2024
🎉 added support for required measurements
📦 89.1.2 5/16/2024
🏥 loadConcepts should only load Scroll files containing a concept (as determined by having an "id ").
📦 89.1.1 5/16/2024
🏥 minor fix in themes grammar.
📦 89.1.0 5/15/2024
🎉 added ability to override content in `printTitle`
📦 89.0.0 5/15/2024
🎉 `printTitle` parser added for easier templates
⚠️ BREAKING: `title` is now a setter. This regex handles the migration:
- `^title ` `printTitle\ntitle `
- Then (optionally) run "scroll format" or "scroll list | scroll format" to format which will automove your titles up top.
📦 88.0.0 5/15/2024
🎉 easier snippets! if you have a dinkus anywhere "***|****|---", that will be used as an "endSnippet"
⚠️ BREAKING: (no one should be affected). If you had a post that purposefully had no `endSnippet` and does have a dinkus, it will now generate a snippet rather than using the whole post.
📦 87.0.1 5/15/2024
🏥 fixed off by 1 bug in computed measures
📦 87.0.0 5/14/2024
⚠️ BREAKING: added stricter conventions for `measureNames`. Restrict them from containing "_", which we use to combine nested measures.
📦 86.0.2 5/12/2024
🏥 add relative paths to sitemaps if needed
📦 86.0.1 5/12/2024
🏥 improved test coverage
📦 86.0.0 5/12/2024
🎉 added a v1 version of a markdown style of doing quotes `>` (with aftertext support)!
🎨 made the View Source links have same style as other Scroll chrome, and removed those links in short snippet renders (never get needed there--only on the actual page)
⚠️ BREAKING: if you have any lines starting with `> `, those will now be parsed by the quickQuoteParser
📦 85.9.0 5/12/2024
🎉 added `minutes` to read (assuming 200 atoms/minute) to `printSearch` and `printCsv` exports
🎉 you can now pass groups to `sitemap` for making sitemaps specific to certain folders/groups
🎉 for `printFeed`, `snippets`, `fullSnippets` providing groups is now optional
📦 85.8.0 5/10/2024
🎉 measures and concepts can now also be written as Javascript for explore pages.
📦 85.7.0 5/10/2024
🎉 `replaceJs` now has access to the filepath
📦 85.6.0 5/10/2024
🎉 `sortBy` can now sort on multiple columns and handle asc/desc
📦 85.5.0 5/10/2024
🎉 `writeConcepts` and `writeMeasures` can now take multiple filenames in one line and also include a `sortBy` condition.
📦 85.4.0 5/10/2024
🎉 Scroll now auto-adds a "filename" measure as to which file the concept appears in.
📦 85.3.0 5/10/2024
🎉 Scroll now only wraps compiler output with html tags if permalink ends in "html" or "htm". Makes it easier to use Scroll to compile files to different language targets.
📦 85.2.1 5/10/2024
🏥 fixed bug where `id` measure was appearing twice
📦 85.2.0 5/10/2024
🏥 fixed bug with nested measure names.
🎉 some slight enhancements to computed measures
📦 85.1.0 5/09/2024
🎉 added support for nested measures. The underscore "_" character is used for column names for nested measures for the broadest compatibility with other data science tools
📦 85.0.0 5/08/2024
🎉 upgraded jtree to get ability for faster compilations
⚠️ BREAKING: removed `replaceDefault` parser. No one should be affected.
⚠️ BREAKING: renamed `nodejs` parser to `replaceNodejs. Few should be affected.
📦 84.10.1 5/08/2024
🏥 fix hanging test (infinite loop regression) during build when you have just 1 file.
📦 84.10.0 5/08/2024
🎉 faster html generation when `keyboardNav` was in use. First implementation was accidentally quadratic.
📦 84.9.0 5/08/2024
🎉 faster concepts and measures compilation
📦 84.8.1 5/07/2024
🏥 `printSearchTable` now generates correct links when searching across multiple folders
📦 84.8.0 5/07/2024
🎉 `tableSearch` now takes a parameter from the url `#q=[search]`. Updating the searching box also updates url.
📦 84.7.0 5/07/2024
🎉 Added `printSearchTable` parser
📦 84.6.0 5/07/2024
🎉 Added support for computed measures
🎉 better measure statistics printing
📦 84.5.1 5/07/2024
🏥 better error printing with `scroll test` and fix bug in `percentAtom`
📦 84.5.0 5/07/2024
🎉 Added `writeMeasures` and `printMeasures` parsers
🎉 Added `abstractPercentageMeasureParser`
📦 84.4.0 5/06/2024
🎉 Added `loadConcepts` parser for if you had a dataset split into many files in a folder.
🎉 Added `float sortIndex [int]` for sorting the measures(columns) in dataset generation. Lower sort indexes come first.
📦 84.3.0 5/06/2024
🎉 `scroll test` will now report if an aftertext pattern has no matches.
📦 84.2.0 5/06/2024
🎉 added `****` as an "end of post dinkus" which prints ⁂
🎉 tabular tables now support aftertext!
🏥 allow multiatom strings to be used as an `id` in concepts
📦 84.1.0 5/04/2024
🎉 snippets now export some content in plain text
🎉 improved the default site generated by `scroll init`
📦 84.0.0 5/04/2024
🎉 Datasets (aka "Concept files") version 2! Much simpler.
🎉 Added the `id` parser for using datasets.