-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
ChangeLog
4614 lines (3056 loc) · 152 KB
/
ChangeLog
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
2024-03-21 rocky <[email protected]>
* ChangeLog, NEWS.md, configure.ac: Get ready for release 1.1.4
2024-02-22 R. Bernstein <[email protected]>
* : Merge pull request #63 from
rocky/doc-update-and-synch-with-bashdb Make a pass over help docs
2024-02-21 R. Bernstein <[email protected]>
* : Merge pull request #61 from rocky/some-doc-cleanups Go over some RST documentation
2024-01-11 rocky <[email protected]>
* command/delete.sh, command/disable.sh, command/show.sh,
lib/info-help.sh, lib/processor.sh: More lint
2024-01-11 rocky <[email protected]>
* lib/gdb.sh: One more file linted
2024-01-11 rocky <[email protected]>
* NEWS.md, dbg-main.sh, dbg-trace.sh.in, lib/help.sh: More lint
2024-01-11 rocky <[email protected]>
* dbg-main.sh, dbg-opts.sh: Lint caught from from vscode
2024-01-11 rocky <[email protected]>
* dbg-opts.sh: Bump copyright
2024-01-11 R. Bernstein <[email protected]>
* : Merge pull request #60 from rocky/prompt-after-subshell-exit Prompt after subshell exit
2024-01-10 R. Bernstein <[email protected]>
* : Merge pull request #59 from
BashSupport-Pro/bashsupport-stepping-bug-test wip: Test for prompt after stepping out of a subshell
2024-01-10 rocky <[email protected]>
* .editorconfig, .gitignore, lib/action.sh, lib/break.sh,
lib/columnize.sh: More lint
2024-01-10 rocky <[email protected]>
* command/info_sub/display.sh, command/set_sub/annotate.sh,
command/set_sub/autoeval.sh, command/set_sub/autolist.sh,
command/set_sub/basename.sh: More lint
2024-01-10 rocky <[email protected]>
* command/down.sh, command/export.sh,
command/info_sub/breakpoints.sh, command/quit.sh, command/run.sh:
More lint
2024-01-10 rocky <[email protected]>
* lib/hook.sh, lib/sig.sh: More lint
2024-01-09 R. Bernstein <[email protected]>
* : Merge pull request #57 from rocky/more-lint Some shell linting...
2024-01-08 R. Bernstein <[email protected]>
* : Merge pull request #53 from
rocky/more-whitespace-in-dir-tolerance Tolerance for spaces in libdir folder name
2023-11-28 rocky <[email protected]>
* command/complete.sh, command/examine.sh, command/show.sh,
dbg-main.sh: Tolerance for spaces in libdir folder name
2024-01-08 R. Bernstein <[email protected]>
* : Merge pull request #55 from rocky/redo-how-quitting-works Start to redo how "quit" and termination work.
2024-01-08 rocky <[email protected]>
* lib/filecache.sh, lib/frame.sh, lib/tty.sh,
test/unit/test-filecache.sh.in,
test/unit/test-get-sourceline.sh.in, test/unit/test-tty.sh.in: Go
over tests and fix bug caught by that. Some global variable names were misspelled in tests. filecache
logic seemed wrong.
2023-12-16 rocky <[email protected]>
* dbg-opts.sh, lib/filecache.sh, lib/hook.sh, lib/processor.sh,
lib/sig.sh, lib/tty.sh, test/data/bug-ksharrays.right,
test/data/bugIFS.cmd, test/data/bugIFS.right,
test/data/bugIFS2.right, test/data/condition.right,
test/data/debug.right, test/data/delete.right,
test/data/enable.right, test/data/examine-5.4.1.right,
test/data/export-5.4.1.right, test/data/frame-5.8.1.right,
test/data/list.right, test/data/lopts.right,
test/data/multi1.right, test/data/multi2.right,
test/data/multi3.right, test/data/next.right,
test/data/setshow-5.4.1.right, test/data/setshow.right,
test/data/skip.right, test/data/sopts.right, test/data/step.right,
test/data/subshell-5.4.1.right, test/data/subshell.right,
test/data/tbreak.right: More quit code corrections... Adjust tests based on more correct quit and hook code.
2023-12-03 rocky <[email protected]>
* command/quit.sh, lib/hook.sh: mysterious error workaround... In quit from a subshell "quit" raises a an error. Why, I don't know. This is a workaround.
2023-12-03 rocky <[email protected]>
* command/quit.sh, lib/hist.sh, lib/hook.sh, lib/processor.sh,
lib/sig.sh, lib/tty.sh, test/data/action.right,
test/data/brkpt1.right, test/data/bug-args.right,
test/data/bug-delete.right, test/data/bug-errexit.right,
test/data/bugIFS.right, test/data/delete.right, zshdb.in: Start to
redo how "quit" and termination work. We now note user exit versus normal program termination in "info
program". More work is needed.
2023-12-04 Joachim Ansorg <[email protected]>
* : Merge pull request #56 from
BashSupport-Pro/bashsupport-pro/zsh-line-count Fix line count calculation for files which are loaded multiple times
2023-12-04 Joachim Ansorg <[email protected]>
* : Merge pull request #51 from
BashSupport-Pro/bashsupport-pro/info-stack-list
2023-11-24 Joachim Ansorg <[email protected]>
* command/info_sub/stack.sh: Don't limit "info stack" to one line
but work in the same way as bashdb
2023-11-24 Joachim Ansorg <[email protected]>
* command/info_sub/stack.sh: Move "info stack" command into its own
file
2023-11-24 Joachim Ansorg <[email protected]>
* command/info.sh, command/info_sub/args.sh,
command/info_sub/breakpoints.sh, command/info_sub/functions.sh,
command/info_sub/variables.sh: Sync handling of info subcommands
with bashdb
2023-12-04 Joachim Ansorg <[email protected]>
* command/load.sh, configure.ac, test/unit/.gitignore,
test/unit/Makefile.am, test/unit/test-lib-maxline.sh.in: fix line
count for files which are loaded multiple times
2023-11-27 Joachim Ansorg <[email protected]>
* command/info_sub/args.sh, lib/hook.sh: revert removal of _Dbg_arg
because it's still in use
2023-11-27 Joachim Ansorg <[email protected]>
* test/Makefile.am: enforce English locale because test-tty.sh
relies on English output text
2023-11-24 Joachim Ansorg <[email protected]>
* command/info.sh: Support library dir with whitespace in info
command
2023-11-24 R. Bernstein <[email protected]>
* : Merge pull request #50 from
BashSupport-Pro/bashsupport-pro/info-stack Support "info args" for the top-level frame
2023-10-23 rocky <[email protected]>
* command/alias.sh, command/backtrace.sh, lib/list.sh: Lint
2023-07-07 rocky <[email protected]>
* lib/term-highlight.py: Lint Python term-lint program
2023-06-16 R. Bernstein <[email protected]>
* : Merge pull request #46 from
BashSupport-Pro/jansorg/zterm-local-vars Make `a_fg` and `a_bg` local variables to avoid side-effects
2023-06-16 R. Bernstein <[email protected]>
* : Merge pull request #44 from BashSupport-Pro/jansorg/setup-fix Add zterm-background.sh to installed files
2023-06-16 Joachim Ansorg <[email protected]>
* dbg-opts.sh: Source term-background.sh only if highlighting is
enabled.
2023-06-16 Joachim Ansorg <[email protected]>
* Makefile.am: add zterm-background.sh to installed files
2023-03-20 rocky <[email protected]>
* configure.ac: AC_HELP_STRING -> AS_HELP_STRING
2023-03-20 R. Bernstein <[email protected]>
* : Merge pull request #42 from jansorg/master add missing info_sub files to Makefile setup
2023-03-15 R. Bernstein <[email protected]>
* THANKS: Update THANKS
2023-03-15 rocky <[email protected]>
* NEWS.md, configure.ac: Bump version to dev
2023-03-05 R. Bernstein <[email protected]>
* : Get ready for release 1.1.3
2023-03-01 rocky <[email protected]>
* command/quit.sh, command/run.sh, lib/sig.sh,
test/data/Makefile.am, test/data/action.right,
test/data/brkpt1.right, test/data/bug-args.right,
test/data/bug-delete.right, test/data/bug-errexit.right,
test/data/bug-ksharrays.right, test/data/bugIFS.right,
test/data/bugIFS2.right, test/data/condition.right,
test/data/debug.right, test/data/delete.right,
test/data/enable.right, test/data/examine-5.4.1.right,
test/data/examine.right, test/data/export-5.4.1.right,
test/data/export.right, test/data/frame-5.8.1.right,
test/data/frame.right, test/data/list.right, test/data/lopts.right,
test/data/multi1.right, test/data/multi2.right,
test/data/multi3.right, test/data/next.right,
test/data/setshow-5.4.1.right, test/data/setshow.right,
test/data/skip.right, test/data/sopts.right, test/data/step.right,
test/data/subshell-5.4.1.right, test/data/subshell.right,
test/data/tbreak.right, test/integration/test-frame.in, zshdb.in:
Trap debugged-program exit
2023-03-01 rocky <[email protected]>
* command/info.sh, configure.ac: Bump version number
2023-02-27 rocky <[email protected]>
* lib/processor.sh: Update debug prompt string on successful cmd
2023-01-05 rocky <[email protected]>
* command/complete.sh, command/help.sh, dbg-opts.sh: misc tweaks... complete.sh: use Dbg_ prefix more often help.sh: add typeset -A
which might be needed by demo fragments db-opts.sh - update
copyright
2022-07-03 rocky <[email protected]>
* .circleci/config.yml: Adjust CI for newer environment
2022-06-30 R. Bernstein <[email protected]>
* : Merge pull request #36 from dbitouze/master Typo fixed
2021-07-18 R. Bernstein <[email protected]>
* : Merge pull request #34 from roc007/master add a unit test : test -z "$a"
2021-07-17 R. Bernstein <[email protected]>
* : Merge pull request #32 from roc007/master add the return code of the evaluated expression
2021-07-17 R. Bernstein <[email protected]>
* : Merge pull request #30 from roc007/master pattern matching modification
2021-01-13 rocky <[email protected]>
* test/unit/test-fns.sh.in: Adjust test variable
2021-01-13 rocky <[email protected]>
* .circleci/config.yml: CircleCI attempt 2
2021-01-13 rocky <[email protected]>
* .circleci/config.yml, command/complete.sh, command/down.sh,
command/examine.sh, command/help.sh, command/set_sub/annotate.sh,
command/set_sub/autoeval.sh, command/set_sub/autolist.sh,
command/set_sub/basename.sh, command/set_sub/confirm.sh,
command/set_sub/debug.sh, command/set_sub/different.sh,
command/set_sub/editing.sh, command/set_sub/filename-display.sh,
command/set_sub/highlight.sh, command/set_sub/history.sh,
command/set_sub/linetrace.sh, command/set_sub/listsize.sh,
command/set_sub/showcommand.sh, command/set_sub/style.sh,
command/set_sub/trace-commands.sh, command/show_sub/autoeval.sh,
command/show_sub/autolist.sh, command/show_sub/basename.sh,
command/show_sub/commands.sh, command/show_sub/filename-display.sh,
command/up.sh, lib/journal.sh, lib/save-restore.sh: Joachim Ansorg's
whitespace in filename patches Also try fossa on circleci
2021-01-13 rocky <[email protected]>
* lib/fns.sh, lib/processor.sh, test/unit/test-fns.sh.in: Joachim
Ansorg's dbg_copies fixes $result -> $Dbg_result
2020-10-21 R. Bernstein <[email protected]>
* : Merge pull request #29 from srinivas32/master Update .travis.yml
2020-09-04 R. Bernstein <[email protected]>
* : Merge pull request #28 from hcaw/patch-1 Fix simple typo
2020-07-07 rocky <[email protected]>
* docs/commands/set/basename.rst,
docs/commands/set/filename-display.rst: RsT formatting
2020-07-07 rocky <[email protected]>
* command/set.sh, command/set_sub/basename.sh,
command/set_sub/filename-display.sh, command/show.sh,
command/show_sub/basename.sh, command/show_sub/filename-display.sh,
docs/commands/running/continue.rst, docs/commands/running/step.rst,
docs/commands/set.rst, docs/commands/set/basename.rst,
docs/commands/set/debug.rst,
docs/commands/set/filename-display.rst, docs/commands/show.rst,
docs/commands/show/basename.rst,
docs/commands/show/filename-display.rst, lib/help.sh,
test/data/setshow-5.4.1.right: Add gdb-like set/show
filename-display
2020-06-08 rocky <[email protected]>
* command/info.sh, command/info_sub/Makefile.am,
command/info_sub/functions.sh, command/info_sub/variables.sh,
command/list.sh, dbg-opts.sh, docs/commands/info.rst,
docs/commands/info/functions.rst, lib/info-help.sh: Add gdb "info
functions"
2020-05-18 rocky <[email protected]>
* command/info_sub/variables.sh: don't exit "info var" on error
and... order list of properties alphabetically
2020-05-18 rocky <[email protected]>
* command/info.sh, command/show.sh: Joachim Ansorg's patch for
spaces in filenames... to load in "info" and "show" subcommands. Thanks Joachim!
2020-05-02 rocky <[email protected]>
* zterm-background.sh: Update term-background
2020-05-02 R. Bernstein <[email protected]>
* : Merge pull request #26 from bitwranglr/master A few more bugfixes
2020-04-28 bitwranglr <[email protected]>
* command/eval.sh, command/source.sh, lib/file.sh: Fix some issues
when spaces appear in paths (there are a lot of these bugs)
2020-04-26 R. Bernstein <[email protected]>
* : Merge pull request #25 from bitwranglr/master Fix issue #24: use correct tty for prompt/commands
2020-04-24 rocky <[email protected]>
* .circleci/config.yml: Try to fix CI
2020-04-24 R. Bernstein <[email protected]>
* .github/FUNDING.yml: Create FUNDING.yml
2020-03-10 rocky <[email protected]>
* docs/commands/stack.rst: Small doc correction
2020-03-07 rocky <[email protected]>
* : commit b55f44a67aafb35e349a7e475409cae8fda5295a Author: rocky
<[email protected]> Date: Sat Mar 7 09:22:51 2020 -0500
2020-03-06 R. Bernstein <[email protected]>
* : Merge pull request #23 from rocky/feature/travis-ci-macos Add macOS CI support for Travis-CI
2020-03-05 rocky <[email protected]>
* docs/commands/set/highlight.rst, docs/commands/set/linetrace.rst,
docs/commands/set/listsize.rst, docs/commands/set/style.rst,
docs/commands/set/trace-commands.rst, docs/commands/set/width.rst,
docs/commands/show/aliases.rst, docs/commands/show/args.rst,
docs/commands/show/autoeval.rst, docs/commands/show/autolist.rst,
docs/commands/show/basename.rst, docs/commands/show/confirm.rst,
docs/commands/show/different.rst, docs/commands/show/editing.rst,
docs/commands/show/highlight.rst, docs/commands/show/linetrace.rst,
docs/commands/show/listsize.rst, docs/commands/show/style.rst,
docs/commands/show/trace-commands.rst, docs/commands/show/width.rst:
Regularize zshdb titles
2020-03-05 rocky <[email protected]>
* docs/commands/breakpoints/delete.rst,
docs/commands/data/Makefile, docs/commands/data/display.rst,
docs/commands/data/eval.rst, docs/commands/data/examine.rst,
docs/commands/data/load.rst, docs/commands/files/Makefile,
docs/commands/files/edit.rst, docs/commands/files/list.rst,
docs/commands/info/breakpoints.rst, docs/commands/running/Makefile,
docs/commands/running/continue.rst,
docs/commands/running/debug.rst, docs/commands/running/kill.rst,
docs/commands/running/next.rst, docs/commands/running/quit.rst,
docs/commands/running/run.rst, docs/commands/running/skip.rst,
docs/commands/running/step.rst, docs/commands/set/Makefile,
docs/commands/set/annotate.rst, docs/commands/set/args.rst,
docs/commands/set/autoeval.rst, docs/commands/set/autolist.rst,
docs/commands/set/basename.rst, docs/commands/set/confirm.rst,
docs/commands/set/debug.rst, docs/commands/set/different.rst,
docs/commands/set/editing.rst, docs/commands/stack/Makefile,
docs/commands/stack/backtrace.rst, docs/commands/stack/down.rst,
docs/commands/stack/frame.rst, docs/commands/stack/up.rst,
docs/commands/support/Makefile, docs/commands/support/alias.rst,
docs/commands/support/help.rst, docs/commands/support/source.rst,
docs/commands/support/unalias.rst: Go over readthedocs
2020-03-01 rocky <[email protected]>
* docs/commands/breakpoints/break.rst,
docs/commands/breakpoints/tbreak.rst: See above
2020-03-01 rocky <[email protected]>
* docs/commands/data/display.rst, docs/commands/data/eval.rst,
docs/commands/running/continue.rst,
docs/commands/running/debug.rst, docs/commands/running/kill.rst,
docs/commands/running/next.rst, docs/commands/running/quit.rst,
docs/commands/running/run.rst, docs/commands/running/step.rst: More
of the last commit
2020-03-01 rocky <[email protected]>
* docs/commands/breakpoints/break.rst,
docs/commands/breakpoints/condition.rst,
docs/commands/breakpoints/delete.rst,
docs/commands/breakpoints/disable.rst,
docs/commands/breakpoints/enable.rst,
docs/commands/breakpoints/tbreak.rst,
docs/commands/data/display.rst, docs/commands/data/eval.rst,
docs/commands/data/examine.rst, docs/commands/data/load.rst,
docs/commands/data/undisplay.rst, docs/commands/files/edit.rst,
docs/commands/files/list.rst, docs/commands/set/debug.rst,
docs/install.rst: Start redoing command titles
2020-02-06 rocky <[email protected]>
* docs/commands/info.rst, docs/commands/set.rst, docs/conf.py,
docs/index.rst, docs/install.rst: Go over sphinx doc warnings
2020-02-06 rocky <[email protected]>
* ChangeLog, admin/how-to-make-a-release.md, docs/.gitignore,
docs/index.rst, test/example/bug-args.sh: Add packaging status to
readthedocs... and some administrivia
2019-12-10 rocky <[email protected]>
* ChangeLog, NEWS.md, admin/how-to-make-a-release.md, configure.ac:
Get ready for release 1.1.2
2019-12-05 rocky <[email protected]>
* .travis.yml: Travis CI artifact upload try 4
2019-12-05 rocky <[email protected]>
* .travis.yml: Travis CI artifact upload try 3
2019-12-05 rocky <[email protected]>
* .travis.yml, command/show_sub/prompt.sh: Add missing show prompt
subcmd... and Travis CI 2nd attempt to get artifacts
2019-12-05 rocky <[email protected]>
* .travis.yml, command/show.sh: add "dir" to show list and ... attempt to get Travis to upload artifacts
2019-12-05 rocky <[email protected]>
* command/show.sh, lib/term-highlight.py,
test/data/setshow-5.4.1.right: Get all Pygments style a user has
installed not just builtins ... Patch is due to John Purnell (in bashdb). Also, "help show" now includes "prompt".
2019-11-28 rocky <[email protected]>
* ChangeLog, test/unit/test-fns.sh.in: Another Ddg -> Dbg typo
2019-11-28 R. Bernstein <[email protected]>
* : Merge pull request #22 from MenkeTechnologies/master ddg to dbg typo fix
2019-11-17 rocky <[email protected]>
* ChangeLog, docs/commands/set/trace-commands.rst,
docs/commands/show/trace-commands.rst: More RST doc typos
2019-11-17 rocky <[email protected]>
* ChangeLog, docs/commands/set.rst,
docs/commands/show/trace-commands.rst: More RsT link corrections
2019-11-17 rocky <[email protected]>
* ChangeLog, docs/commands/set/different.rst,
docs/commands/show/trace-commands.rst: RsT link typos
2019-11-17 rocky <[email protected]>
* NEWS.md: Update news for release
2019-11-17 rocky <[email protected]>
* ChangeLog, docs/commands/set/different.rst,
docs/commands/set/trace-commands.rst: Small doc changes
2019-11-17 rocky <[email protected]>
* ChangeLog, admin/how-to-make-a-release.md,
command/show_sub/different.sh, command/show_sub/linetrace.sh,
configure.ac, docs/commands/set.rst,
docs/commands/set/linetrace.rst, docs/commands/set/{cmdtrace.rst =>
trace-commands.rst}, docs/commands/show.rst,
docs/commands/show/linetrace.rst, docs/commands/show/{cmdtrace.rst
=> trace-commands.rst}, test/data/delete.right,
test/data/next.right, test/data/setshow-5.4.1.right,
test/data/skip.right, test/data/step.right: Get ready for release
1.1.1
2019-11-16 rocky <[email protected]>
* command/set.sh, command/set_sub/autolist.sh, command/show.sh,
command/show_sub/autoeval.sh, command/show_sub/autolist.sh,
command/show_sub/basename.sh, command/show_sub/listsize.sh,
command/show_sub/width.sh, test/data/setshow-5.4.1.right: Fill out
show commands more: add autoeval, autolist listsize, width
2019-11-15 rocky <[email protected]>
* command/show.sh, lib/help.sh, lib/setshow.sh,
test/data/action.right, test/data/delete.right,
test/data/export-5.4.1.right, test/data/list.right,
test/data/next.right, test/data/setshow-5.4.1.right,
test/data/skip.right, test/data/step.right,
test/data/subshell-5.4.1.right: DRY show a little... this time, for sure!
2019-11-15 rocky <[email protected]>
* command/show_sub/copying.sh, command/show_sub/debug.sh,
command/show_sub/highlight.sh, command/show_sub/history.sh,
lib/help.sh, test/data/setshow-5.4.1.right: More "help show"
fixes/improvements
2019-11-14 rocky <[email protected]>
* command/show.sh, lib/help.sh, test/data/action.right,
test/data/delete.right, test/data/export-5.4.1.right,
test/data/list.right, test/data/next.right,
test/data/setshow-5.4.1.right, test/data/skip.right,
test/data/step.right, test/data/subshell-5.4.1.right: Simplify and
regularize help set/show... sync with kshdb
2019-11-14 rocky <[email protected]>
* command/set_sub/confirm.sh, command/show_sub/alias.sh,
command/show_sub/basename.sh, command/show_sub/commands.sh,
command/show_sub/confirm.sh, command/show_sub/copying.sh,
command/show_sub/debug.sh, command/show_sub/editing.sh,
command/show_sub/highlight.sh, command/show_sub/history.sh,
command/show_sub/style.sh, command/show_sub/warranty.sh,
dbg-opts.sh, lib/help.sh, lib/msg.sh: Add set/show confirm... Go over "show" rSt formatting
2019-11-11 rocky <[email protected]>
* README.md: Small doc tweak
2019-11-08 rocky <[email protected]>
* test/example/bug-args.sh: Remove a derived file
2019-11-08 rocky <[email protected]>
* docs/install.rst, test/example/bug-args.sh: Small typo
2019-11-08 rocky <[email protected]>
* ChangeLog, zterm-background.sh: Silence "stty echo" failures
2019-11-07 rocky <[email protected]>
* ChangeLog, test/data/Makefile.am: Add debug test file
2019-11-07 rocky <[email protected]>
* : commit b474867da814037b7b2a56827d6267ea3b2bf38c Author: rocky
<[email protected]> Date: Thu Nov 7 17:14:23 2019 -0500
2019-11-07 rocky <[email protected]>
* docs/commands/running/kill.rst,
test/integration/test-file-with-spaces: Doc tweak
2019-11-06 rocky <[email protected]>
* : commit 073f1d8109dffd2ce3dc4978f1a9bb6484475589 Author: rocky
<[email protected]> Date: Wed Nov 6 12:46:43 2019 -0500
2019-11-06 rocky <[email protected]>
* command/kill.sh, docs/commands/running/kill.rst, lib/hook.sh,
lib/msg.sh: Add ! suffix to "kill" command.
2019-11-06 rocky <[email protected]>
* command/debug.sh: cut-n-paste typo
2019-11-06 rocky <[email protected]>
* command/debug.sh, docs/commands/running/debug.rst: debug doc tweak
2019-11-06 rocky <[email protected]>
* docs/commands/running.rst, docs/commands/running/debug.rst: Tweaks
to "debug" doc
2019-11-06 rocky <[email protected]>
* command/continue.sh, command/debug.sh, docs/commands/running.rst,
docs/commands/running/continue.rst, docs/commands/running/debug.rst:
Doc "debug" and go over docs.
2019-11-06 rocky <[email protected]>
* configure.ac, dbg-trace.sh.in, lib/hook.sh,
test/data/bug-args.cmd, test/data/bug-args.right,
test/example/bug-args.sh, test/example/bug-args.sh.in,
test/zsh/ok4zshdb.sh, zshdb.in: track $0 changes in debugged code... bump minimum version of zshdb to a version that doesn't have memory
problems when $0 is changed.
2019-11-05 rocky <[email protected]>
* .travis.yml: I said, use *bionic*
2019-11-05 rocky <[email protected]>
* .travis.yml, command/eval.sh: Travis zenial zsh has problems... try bionic instead
2019-11-05 rocky <[email protected]>
* command/eval.sh, command/shell.sh, lib/set-d-vars.sh,
test/data/action.cmd, test/data/action.right,
test/data/frame.right, zshdb.in: Fix setting $0 ... inside "eval" and "shell" commands
2019-11-05 rocky <[email protected]>
* command/set_sub/different.sh, command/skip.sh,
docs/commands/running/skip.rst: Small doc tweaks
2019-11-03 rocky <[email protected]>
* admin/how-to-make-a-release.md, command/backtrace.sh: Small doc
typo
2019-10-31 rocky <[email protected]>
* command/set_sub/style.sh, command/show.sh, command/skip.sh,
lib/filecache.sh: Some small typos and tweaks
2019-10-27 rocky <[email protected]>
* test/integration/test-skip.in: Travis is giving us problesm.... silence travis.
2019-10-27 rocky <[email protected]>
* ChangeLog, test/zsh/ok4zshdb.sh: Show zsh versiosn in configure
2019-10-27 rocky <[email protected]>
* ChangeLog, NEWS.md, admin/how-to-make-a-release.md, configure.ac,
test/data/Makefile.am, test/example/Makefile.am: Get ready for
release 1.1.0
2019-10-26 rocky <[email protected]>
* .gitignore, .travis.yml, docs/commands/running/skip.rst: Imporve
"skip" doc artifact logging; more ignore
2019-10-26 rocky <[email protected]>
* .travis.yml: Save travis artifacts
2019-10-26 rocky <[email protected]>
* command/skip.sh, command/stepping.sh, configure.ac,
docs/commands/running/skip.rst, lib/hook.sh, test/data/skip.cmd,
test/data/skip.right, test/data/step.cmd, test/data/step.right,
test/example/.gitignore, test/example/Makefile.am,
test/example/skip.sh.in, test/integration/test-skip.in: Allow
**count** to "skip" command... Some minor doc fixes
2019-10-25 rocky <[email protected]>
* command/skip.sh, docs/commands/running.rst,
docs/commands/running/skip.rst, test/data/skip.cmd,
test/data/skip.right: Doc skip command
2019-10-25 R. Bernstein <[email protected]>
* : Merge pull request #21 from rocky/add-skip-command Add "skip" command
2019-10-24 rocky <[email protected]>
* command/debug.sh, lib/term-highlight.py: Add "debug" command ... term-highlight.py: Remove stray schmutz from beginning of file
2019-10-19 rocky <[email protected]>
* command/eval.sh: Typo.
2019-10-10 rocky <[email protected]>
* lib/term-highlight.py: Keep up with pygmentize... Use default TERMINAL_COLORS. It's simpler.
2019-10-08 rocky <[email protected]>
* test/integration/README.md: Spelling errors
2019-10-08 rocky <[email protected]>
* ChangeLog, lib/hist.sh, test/integration/.gitignore: Small changes
2019-10-08 rocky <[email protected]>
* configure.ac, test/integration/.gitignore,
test/integration/Makefile.am, test/integration/README.md,
test/integration/test-file-with-spaces,
test/integration/test-file-with-spaces.in, test/unit/Makefile.am:
Start guide on writing tests... and some administrivia.
2019-09-27 rocky <[email protected]>
* configure.ac, test/integration/.gitignore,
test/integration/Makefile.am, test/integration/{test-bug-delete =>
test-bug-delete.in}: Convert test-bug-delete to auto-generation. Fixes #18
2019-09-22 rocky <[email protected]>
* command/eval.sh, command/examine.sh, command/kill.sh,
command/quit.sh, command/run.sh, command/set_sub/annotate.sh,
command/set_sub/args.sh, command/set_sub/autoeval.sh,
command/show_sub/annotate.sh, docs/commands/data/eval.rst,
docs/commands/data/examine.rst, docs/commands/running.rst,
docs/commands/running/continue.rst, docs/commands/running/exit.rst,
docs/commands/running/kill.rst, docs/commands/running/quit.rst,
docs/commands/running/restart.rst, docs/commands/running/run.rst,
docs/commands/running/skip.rst, docs/commands/set.rst,
docs/commands/set/annotate.rst, docs/commands/set/args.rst,
docs/commands/set/autoeval.rst, docs/commands/set/basename.rst,
docs/commands/set/cmdtrace.rst, docs/commands/set/confirm.rst,
docs/commands/set/different.rst, docs/commands/set/editing.rst,
docs/commands/set/highlight.rst, docs/commands/set/listsize.rst,
docs/commands/set/maxstring.rst, docs/commands/set/skip.rst,
docs/commands/set/style.rst, docs/commands/set/trace.rst,
docs/commands/set/width.rst, docs/commands/show.rst,
docs/commands/show/aliases.rst, docs/commands/show/annotate.rst,
docs/commands/show/args.rst, docs/commands/show/autoeval.rst,
docs/commands/show/basename.rst, docs/commands/show/cmdtrace.rst,
docs/commands/show/confirm.rst, docs/commands/show/different.rst,
docs/commands/show/editing.rst, docs/commands/show/highlight.rst,
docs/commands/show/listsize.rst, docs/commands/show/maxstring.rst,
docs/commands/show/skip.rst, docs/commands/show/style.rst,
docs/commands/show/trace.rst, docs/commands/show/width.rst,
docs/commands/support/help.rst, docs/conf.py: Go over docs, yet
again.
2019-09-22 R. Bernstein <[email protected]>
* README.md: Update README.md
2019-09-22 R. Bernstein <[email protected]>
* README.md: Update README.md
2019-09-21 rocky <[email protected]>
* README.md: Add repology badges
2019-09-19 rocky <[email protected]>
* command/info_sub/breakpoints.sh, command/info_sub/line.sh,
command/info_sub/program.sh, command/info_sub/source.sh,
docs/commands/info.rst, docs/commands/info/breakpoints.rst,
docs/commands/info/line.rst, docs/commands/info/program.rst,
docs/commands/info/source.rst, docs/commands/info/stack.rst: Docs
yet again.
2019-09-19 rocky <[email protected]>
* doc/toRsT.py, docs/commands/info.rst,
docs/commands/info/{break.rst => breakpoints.rst}: More doc stuff
2019-09-18 rocky <[email protected]>
* docs/commands/info.rst, docs/commands/set.rst,
docs/commands/show.rst: More doc stuff
2019-09-17 rocky <[email protected]>
* command/set_sub/editing.sh, docs/commands/set.rst,
docs/commands/set/annotate.rst, docs/commands/set/editing.rst,
docs/commands/set/events.rst, docs/commands/set/flush.rst,
docs/commands/set/substitute.rst, docs/commands/show.rst,
docs/commands/show/annotate.rst, docs/commands/show/editing.rst,
docs/features.rst, docs/index.rst, docs/manpage.rst: Update zshdb
doc yet again
2019-09-16 rocky <[email protected]>
* test/integration/test-setshow.in: skip setshow on Travis
2019-09-16 rocky <[email protected]>
* command/show.sh, command/show_sub/annotate.sh,
command/show_sub/basename.sh, docs/commands/set/annotate.rst,
docs/commands/show.rst, docs/commands/show/annotate.rst,
docs/commands/show/autoeval.rst, docs/manpage.rst,
test/data/action.right, test/data/next.right,
test/data/setshow-5.4.1.right: Go over docs.. zshdb manual show annotate, basename and show in general
2019-09-11 rocky <[email protected]>
* command/load.sh: Doc for load improvement
2019-09-11 rocky <[email protected]>
* docs/commands/data.rst, docs/commands/data/load.rst,
docs/commands/info/display.rst: More small RsT doc fixes
2019-09-11 rocky <[email protected]>
* command/info_sub/files.sh, command/load.sh,
docs/commands/data/display.rst, docs/commands/data/load.rst,
docs/commands/data/undisplay.rst, docs/commands/info/display.rst,
docs/commands/info/files.rst: Add "load" command
2019-09-11 rocky <[email protected]>
* docs/commands/data/display.rst: Rst typo
2019-09-11 rocky <[email protected]>
* : commit ce73940bb86175637cd8b65ed5a61c10d29efacc Author: rocky
<[email protected]> Date: Wed Sep 11 15:24:15 2019 -0400
2019-09-11 rocky <[email protected]>
* command/info_sub/display.sh, command/info_sub/signals.sh,
docs/commands/info.rst, docs/commands/info/display.rst, lib/sig.sh:
Add routine to show signal handlers; update docs
2019-09-11 rocky <[email protected]>
* docs/commands/info.rst: Add link in doc to "info variables"
2019-09-11 rocky <[email protected]>
* README.md, docs/commands/info/variables.rst, docs/index.rst: More
doc updates
2019-09-11 rocky <[email protected]>
* docs/index.rst, docs/install.md, docs/install.rst: Convert install
to RST
2019-09-10 rocky <[email protected]>
* test/integration/test-bugIFS.in, test/integration/test-bugIFS2.in:
TravisCI take 4
2019-09-10 rocky <[email protected]>
* test/integration/test-bugIFS.in, test/integration/test-bugIFS2.in:
TravisCI take 3
2019-09-10 rocky <[email protected]>
* test/unit/test-save-restore.sh.in: Travis test 2
2019-09-10 rocky <[email protected]>
* test/unit/test-save-restore.sh.in: See if this addresses TravisCI
2019-09-10 rocky <[email protected]>
* configure.ac, lib/hist.sh, lib/save-restore.sh,
test/data/bugIFS2.cmd, test/data/bugIFS2.right,
test/example/bugIFS2.sh, test/integration/.gitignore,
test/integration/Makefile.am, test/integration/test-bugIFS2.in:
Fixes #7
2019-09-10 rocky <[email protected]>
* .circleci/config.yml: Try upding circleci dependencies
2019-09-10 rocky <[email protected]>
* ChangeLog: Update ChangeLog
2019-09-10 rocky <[email protected]>
* NEWS.md, test/integration/test-enable.in: Get ready for release
1.0.1
2019-09-10 rocky <[email protected]>
* configure.ac: NEWS->NEWS.md problem
2019-09-10 rocky <[email protected]>
* .travis.yml, ChangeLog, admin/how-to-make-a-release.md: Now it is
Travis acting up
2019-09-10 rocky <[email protected]>
* ChangeLog, Makefile.am, NEWS, configure.ac: Get ready for release
ZSHDB_VERSION
2019-09-10 rocky <[email protected]>
* .circleci/config.yml: CircleCI try 2
2019-09-10 rocky <[email protected]>
* .circleci/config.yml, .gitignore: CircleCI Try 1 - use ubuntu
disco
2019-09-10 rocky <[email protected]>
* : commit 1615809238e8a992128c50558d011d49929b7c69 Author: rocky
<[email protected]> Date: Tue Sep 10 04:33:51 2019 -0400
2018-10-27 rocky <[email protected]>
* ChangeLog: Update Changelog
2018-10-27 rocky <[email protected]>
* ChangeLog, NEWS, admin/how-to-make-a-release.md, configure.ac: Get
ready for release 1.0.0
2018-10-19 rocky <[email protected]>
* lib/processor.sh: Untabify
2018-10-12 R. Bernstein <[email protected]>
* : Merge pull request #17 from rocky/rogalmic-safe-changes Minor safe changes.
2018-10-07 rocky <[email protected]>
* lib/tty.sh: Minor space strip change
2018-09-30 rocky <[email protected]>
* dbg-opts.sh, lib/hook.sh: More rogalmic changes
2018-09-30 rocky <[email protected]>
* command/action.sh, command/break.sh, command/eval.sh,
command/set.sh, dbg-opts.sh, lib/hook.sh, lib/processor.sh,
test/Makefile.am, test/data/lopts.right: rogalmic's bashdb patches
applied to zshdb Tolerance for path names with embedded blanks. Adds --tty_in
--terminal_in
2018-06-26 rocky <[email protected]>
* circle.yml: Remove CircleCI 1.1
2018-06-26 rocky <[email protected]>
* command/kill.sh, command/quit.sh: Small RsT doc changes on some
commands
2018-06-25 rocky <[email protected]>
* .circleci/config.yml, admin/how-to-make-a-release.md,
command/frame.sh, command/shell.sh: Some typos and try CircleCI 2.0
2018-04-15 rocky <[email protected]>
* lib/gdb.sh: Bump copyright