-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathreleaseNotes.scroll
2943 lines (2154 loc) · 100 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
linkTitle Release Notes
microlangs/changes.parsers
header.scroll
printTitle
nav.scroll
## 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
📦 165.4.0 1/09/2025
🎉 added divParser
🎉 added h1Parser, h2Parser, and h3Parser
📦 165.3.0 1/09/2025
🎉 added sectionParser
🎉 added pParser
📦 165.2.0 1/08/2025
🎉 added `keywords` parser because AI keeps trying to use it.
🏥 slideshow fixes
📦 165.1.1 1/06/2025
🏥 fix regression in pdf building
📦 165.1.0 1/06/2025
🎉 support larger data science sessions by using memory if not enough local storage
📦 165.0.0 1/05/2025
🎉 quick css and js tags now compile to blank html snippets
⚠️ BREAKING: (no one should be affected) CSS and Javascript tags will no longer be included by default when compiling snippets
📦 164.12.0 1/02/2025
🎉 added support for URLS with query strings as table data source
📦 164.11.0 12/29/2024
🎉 added slashComment support to table flows
🎉 added assertRowCount parser for fast testing of table transformers
🏥 fix regression where empty and nonEmpty filters were not working
🏥 fix "first" reduction to select the first non-blank value
🏥 fix syntax highlighting in table flows
📦 164.10.0 12/29/2024
🎉 added scrollModalParser
🎉 added click afterText parser
🎉 renamed `linkParser` to `scrollLinkParser` to clean up linkParser for userspace
📦 164.9.0 12/24/2024
🎉 added `belowAsHtml` and `aboveAsHtml` from btheado
https://github.com/btheado btheado
📦 164.8.0 12/19/2024
🎉 added title, subtitle and caption parsers to plots
🎉 added linechart parser
🎉 added parseDate parser
🎉 added sampleData parser
📦 164.7.0 12/19/2024
🎉 added width and height parsers to plots
📦 164.6.0 12/19/2024
🎉 added barchart parser
🎉 added sort parser to barchart and scatterplot for sorting x axis
🎉 updated Observable plot
📦 164.5.0 12/19/2024
🏥 perf fix: reuse same disk cache when doing `scroll list | scroll build`
📦 164.4.0 12/17/2024
🎉 assertions now can also be one liners
🎉 `inlineJs` and `inlineCss` can now take filenames as subparticles
🏥 bug fixes in buildCss methods
📦 164.3.0 12/16/2024
🎉 update ScrollSDK
📦 164.2.0 12/16/2024
🎉 add `reduceParser` to `groupBy`. Functionality was there but Parser was not.
🎉 atom color fixes
📦 164.1.0 12/16/2024
🎉 atom color fixes
📦 164.0.0 12/15/2024
🎉 much easier to create themes
🎉 all 5 themes should largely work now.
⚠️ BREAKING: if you manually included a theme's CSS file, you now need to include ".scroll.css" after it.
📦 163.2.1 12/15/2024
🏥 fix regression in printColumn
📦 163.2.0 12/15/2024
🎉 added `summarize` parser
📦 163.1.0 12/15/2024
🎉 column names in table particles now try to match users intent (case insensitive and close match).
🎉 new `assertIgnoreBelowErrorsParser` for automated testing purposes
📦 163.0.0 12/13/2024
### Organized the debug parsers into a common namespace.
🎉 new `debugParsers` parser
🎉 new `debugAll` parser
🎉 `debugBelow` and `debugAbove` now have better txt output
⚠️ BREAKING: `inspectBelow` is now `debugBelow`.
⚠️ BREAKING: `inspectAbove` is now `debugAbove`.
⚠️ BREAKING: `printSourceStack` is now `debugSourceStack`.
📦 162.1.0 12/07/2024
🎉 upgrade ScrollSDK
📦 162.0.1 12/06/2024
🏥 npm fix
📦 162.0.0 12/06/2024
🎉 much cleaner strategy for CSS and JS files shipped with Scroll
⚠️ BREAKING: all external Javascript and CSS files now begin with `.`.
Before this change, people's folders were getting filled with theme and JS files that had to be .gitignored. Now, all of those files will start with a ".".
So we use the hidden file convention for separating files you want to track from external libs you are using.
📦 161.3.0 12/04/2024
🎉 handle macro failures gracefully
📦 161.2.0 12/04/2024
🎉 update SDK for better Fusion
📦 161.1.0 12/04/2024
🎉 added `outputFileNames` internal API
📦 161.0.4 12/02/2024
🏥 scroll cli format command regression fix
📦 161.0.3 12/02/2024
🏥 scroll format regression fix
📦 161.0.2 12/02/2024
🏥 scroll format regression fix
📦 161.0.1 12/02/2024
🏥 scroll form fixes
📦 161.0.0 12/01/2024
🎉 added new theme `prestige`
🎉 upgrade ScrollSDK
🎉 scroll theme cleanup:
⚠️ BREAKING: .dinkus is now .abstractDinkusParser
⚠️ BREAKING: .scrollTitle is now .printTitleParser
⚠️ BREAKING: .scrollByLine is now .printAuthorsParser
⚠️ BREAKING: .scrollDateline is now .printDateParser
⚠️ BREAKING: dateParser is now scrollDateParser
📦 160.0.0 11/30/2024
🎉 upgrade ScrollSDK
📦 159.1.0 11/30/2024
🎉 make Scroll version work in browser version
📦 159.0.0 11/30/2024
⚠️ BREAKING: (almost no one should be affected). `paragraphParser` is now `scrollParagraphParser` to avoid namespace collisions.
📦 158.0.4 11/29/2024
🏥 fix right button regression
📦 158.0.3 11/29/2024
🏥 try/catch of buildHtml for better robustness
🏥 fix left/right buttons regression
📦 158.0.2 11/29/2024
🏥 fix stumpParser namespace bug
📦 158.0.1 11/29/2024
🏥 more graceful error handling
📦 158.0.0 11/29/2024
🎉 import Scroll files now by URLS
⚠️ BREAKING: (no one should be affected). Lines that are just a URL to a Scroll file now will attempt an import.
📦 157.0.0 11/29/2024
⚠️ BREAKING: (userspace unaffected. dev API changes only) switched to async Fusion file system.
⚠️ BREAKING: (userspace unaffected. dev API changes only) `build` method is now split into `load` and `execute` methods.
📦 156.0.0 11/28/2024
⚠️ BREAKING: (no one should be affected) updated scrollsdk to get Fusion
📦 155.4.2 11/26/2024
🏥 fix regression in limit on getFilesByTag
📦 155.4.1 11/25/2024
🏥 namespace cleanup
📦 155.4.0 11/23/2024
🎉 loadConcepts now supports other concept cues than "id"
📦 155.3.0 11/22/2024
🎉 added `notices` parser
📦 155.2.0 11/22/2024
🎉 added `name` parser to support naming the field in one textarea
📦 155.1.0 11/21/2024
🎉 added splitYear parser
🎉 added splitMonth parser
🎉 added splitDayOfMonth parser
🎉 added splitDay parser
🎉 added splitMonthName parser
🎉 added splitDayName parser
📦 155.0.3 11/20/2024
🏥 temp inheritance parser bug patch.
📦 155.0.2 11/20/2024
🏥 fixed regression from version 154.
📦 155.0.1 11/20/2024
🏥 fixed bug in buildParsers
📦 155.0.0 11/19/2024
🎉 cleaner Parsers autocomplete
⚠️ BREAKING: (no one should be affected) updated scrollsdk
📦 154.3.0 11/18/2024
🎉 container parser now extends aftertext
📦 154.2.0 11/16/2024
🎉 Added `footer` parser to import statements. Now you can import a footer at top of file.
🎉 Added scrollClearStackParser
🎉 Upgraded ScrollSDK
📦 154.1.0 11/15/2024
🎉 JSON table parser now handles more common kinds of json data
- Thanks TBD!
https://x.com/tbdr/status/1857446832923652190
📦 154.0.0 11/15/2024
🎉 `compile` is now renamed to specific output methods such as `buildHtml`.
⚠️ BREAKING: if you've written custom parsers please rename your `compile` methods to `buildHtml`, `buildTxt`, et cetera
📦 153.1.0 11/14/2024
🎉 added `font` parser for quickly setting font family
🎉 added `color` parser for quickly setting font family
🎉 lorem ipsum parsers now extend aftertext properly
📦 153.0.0 11/14/2024
🎉 refactored build system so try.scroll.pub can access all build outputs, not just HTML
⚠️ BREAKING: (no one should be affected) low level internal build APIs have changed
📦 152.0.0 11/13/2024
🎉 upgraded ScrollSDK
🏥 fixed problems from namespace collisions
📦 151.0.0 11/13/2024
## 🚨 MAJOR RELEASE
- try.scroll.pub now supports writing parsers!
🎉 moved code from desktop to parsers
🏥 fixed regression where parsers were printing
📦 150.0.0 11/13/2024
🎉 added `concepts` parser for loading concepts in a file into a table
⚠️ BREAKING: (no one should be affected) nearly all Scroll code is now available to Scroll in the browser. Some internal APIs may have changed if using Scroll programmatically.
This is prep work for the major release coming imminently which brings the full power of PPS to the browser, including ability to write Parsers, fully user Scrollsets, and more, dynamically, clientside in browser.
📦 149.0.0 11/13/2024
🎉 `parsers.parsers` now ships with Scroll! Syntax highlighting, autocomplete, and other tools for writing parsers in try.scroll.pub.
- Note: compiling these Parsers still requires desktop Scroll. Not everything runs in browser...yet
⚠️ BREAKING: (no one should be affected) any custom parsers in your Scroll files will now be fully parsed. So previously undetected errors will now be caught. There may also be some namespace conflicts as we cleanup the Parser code.
📦 148.3.1 11/12/2024
🏥 fix author bug in postsMeta
📦 148.3.0 11/12/2024
🎉 moved format code to root parser for use in browser
📦 148.2.0 11/12/2024
🎉 created `bindTo` parsers property which tells particles to stick with next/previous when formatting
🎉 created `allowTrailingWhitespace` parser property to allow particles to allow trailing whitespace when formatting
📦 148.1.0 11/12/2024
🎉 added `codeFromFile` parser
🎉 buildTxt + code parsers now output code surrounded by backticks
📦 148.0.0 11/11/2024
## 🚨 MAJOR RELEASE
- Vastly improved data science capabilities!
- Major cleanup of Scroll to remove loops concept. Tables is all we need.
- Major cleanup toward running Scroll fully in browser
🎉 added `buildTsv` parser
🎉 added `buildJson` parser
🎉 added `posts` parser for iterating over posts as a table
🎉 added `postsMeta` parser for iterating over post metadata as a table
🎉 added `assertBuildIncludes`
🎉 `printTable` combined with `buildTsv/Csv/Json` will now save the table to disk.
⚠️ BREAKING: removed `loop`. `tables` can do everything loops could, much better.
⚠️ BREAKING: removed `printCsv` parser
⚠️ BREAKING: removed `printSearchTable` parser. Can now be done with:
code
posts All
printTable
tableSearch
📦 147.1.0 11/11/2024
🎉 added `shuffle` parser
🎉 added `iris` parser for easier quick testing/demoing of scroll tables
📦 147.0.0 11/09/2024
🎉 added `quickRunScriptParser` to run python, php, ruby, perl, and sh scripts and include output in compiled output
- Thanks to TBD for the idea
https://x.com/tbdr TBD
https://x.com/tbdr/status/1855391565373641140 idea
🏥 match less in quick tables
⚠️ BREAKING: (no one should be affected) if you have a line that is just a filename like *.(py|rb|sh|php|pl), it will now attempt to run that script
📦 146.4.0 11/09/2024
🎉 when using maps, geolocate now adds an icon to current location
📦 146.3.0 11/08/2024
🎉 inlineJs now concats without script tag when paired with buildJs
📦 146.2.0 11/07/2024
🎉 more comment support across parsers
📦 146.1.0 11/05/2024
🎉 added `background` parser
📦 146.0.0 11/02/2024
🎉 upgrade ScrollSDK to get "imported" functionality.
🎉 added importedParser
🎉 added support for optional imports using a temporary parser. Long term implementation coming soon.
⚠️ BREAKING: (no one should be affected) import particles are now replaced by "imported" particles
📦 145.12.0 11/02/2024
🎉 assertion parsers can now be chained and will test the output of previous non-assertion parser
🎉 added dependenciesParser
📦 145.11.1 11/01/2024
🎉 remove carriage returns ('\r') when running scroll format
📦 145.11.0 10/31/2024
🎉 add `join` parser to printColumn
📦 145.10.0 10/30/2024
🎉 much improved inspector parsers
📦 145.9.0 10/30/2024
🎉 added `buildParsersParser`
🎉 added `scrollDefParser`
🎉 added `inspectBelowParser`
🎉 added `inspectAboveParser`
🏥 atom highlight fixes for css and html
🏥 allow scrollForms gracefully handle zero params
This version starts introduces "Defs", a new short hand way to create forms/parsers/scrollsets.
Expect Def parsers to evolve quickly.
📦 145.8.0 10/27/2024
🎉 added `scrollNavParser`
🎉 added `scrollLinkTitleParser`
📦 145.7.0 10/27/2024
🎉 improved how long ago magic column to handle timestamps better and also show original date on hover
📦 145.6.0 10/27/2024
🎉 added magic `last[Verbed]` columns to tables which now renders a "how long ago" value
📦 145.5.1 10/26/2024
🏥 table fix for missing values
📦 145.5.0 10/25/2024
🎉 new internal build API to support single file building
📦 145.4.0 10/25/2024
🎉 added startsWith and endsWith atoms to where parser
📦 145.3.0 10/24/2024
🎉 added nav styling
📦 145.2.0 10/24/2024
🎉 add HAML parser for plain tags
📦 145.1.2 10/23/2024
🏥 clone fixes
📦 145.1.1 10/23/2024
🏥 clone fix
📦 145.1.0 10/23/2024
🎉 clone command api updates
📦 145.0.0 10/23/2024
🎉 added onclickParser
🎉 added scrollEvalParser
🎉 started refactoring CSS code to make theming easier
⚠️ BREAKING: if using `--base-font-size` rename to `--scrollBaseFontSize`
📦 144.0.0 10/22/2024
🎉 big refactor to make more of Scroll work entirely in browser
⚠️ BREAKING: (no user breaking changes). Changes for ScrollFile API users: some methods have moved to scrollProgram.
📦 143.0.0 10/19/2024
⚠️ BREAKING: "viewSource" is now "edit" globally
📦 142.3.0 10/19/2024
🎉 command line output cleanup
📦 142.2.0 10/18/2024
🎉 added `inlineCss` and `inlineJs` parsers
📦 142.1.0 10/18/2024
🎉 added new `post` parser to buttons
📦 142.0.2 10/16/2024
🏥 clone fix
📦 142.0.1 10/14/2024
🏥 clone fixes
📦 142.0.0 10/14/2024
🎉 added new `clone` cli command
📦 141.3.1 10/14/2024
🏥 whoops! major format regression
📦 141.3.0 10/14/2024
🎉 format command should not insert newlines into blank files
📦 141.2.0 10/14/2024
🎉 `toStamp` supports a single file
🎉 moved prompt to parsersPrompt
🎉 added scrollPrompt
📦 141.1.0 10/14/2024
🎉 added `toStamp` parser
🎉 created `prompt.scroll`
📦 141.0.0 10/12/2024
🎉 updated ScrollSDK
🏥 bug fix in maps nested under tables. Thanks TD for the report!
⚠️ BREAKING: `firstAtom` is now `cue` everywhere
📦 140.0.0 10/12/2024
🎉 updated ScrollSDK
⚠️ BREAKING: `crux`, a "temporary" word that lasted years 😀, is now `cue`
📦 139.1.0 10/11/2024
🎉 added qrcode parser
📦 139.0.1 10/11/2024
🏥 bug fix in quick tables. Thanks TD for the report!
📦 139.0.0 10/11/2024
🎉 the quickTable parser now works with JSON files as well.
// Thank you to TD for the report!
⚠️ BREAKING: to use the JSON Script parser, instead of *.json you now need to use the cue "jsonScript"
Regex find:
code
^[^\s]+\.json
📦 138.4.0 10/09/2024
🎉 added `placeholder` and `value` parsers to ScrollForms
📦 138.3.0 10/09/2024
🎉 add `geolocate` parser for better map UX.
📦 138.2.0 10/08/2024
🎉 add `theScrollButton` parser
📦 138.1.1 10/08/2024
🎉 scroll forms fixes
📦 138.1.0 10/08/2024
🎉 scroll forms can now post
📦 138.0.0 10/08/2024
🎉 compiled HTML of all aftertext nodes now deep linkable. Thanks to Hari for the request!
https://www.reddit.com/r/WorldWideScroll/comments/1fz7qpm/questions_from_hari/ request
⚠️ BREAKING: upgraded ScrollSDK so getIndex is now index on Particles
📦 137.4.0 10/08/2024
🎉 maps now can request users location
📦 137.3.0 10/07/2024
🎉 export SimpleCLI
📦 137.2.0 10/06/2024
🎉 added `tiles` parser to maps
📦 137.1.0 10/05/2024
🎉 added `rank` parser to tables
📦 137.0.0 10/04/2024
🎉 maps now takes a table
🎉 maps now supports fullscreen
🎉 maps now supports custom hover template strings
🎉 maps now supports color
🎉 maps now supports fillColor
🎉 maps now supports radius
🎉 maps now supports fillOpacity
🎉 added `compute` table parser
⚠️ BREAKING: remove "points" parser. maps now takes a table as input.
📦 136.12.0 10/04/2024
🎉 `table` now accepts urls
🎉 build now works in web version
📦 136.11.1 10/02/2024
🎉 description escape fix
📦 136.11.0 10/02/2024
🎉 added `printShortSnippetsParser`
📦 136.10.0 10/02/2024
🎉 added `footer` Parser
📦 136.9.0 9/30/2024
🎉 added `stopwatch` Parser
📦 136.8.0 9/30/2024
🎉 viewSourceButton can now take a url
📦 136.7.0 9/30/2024
🎉 dark theme improvements
📦 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`