-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
changelog.txt
2368 lines (1771 loc) · 103 KB
/
changelog.txt
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.11.18:
* changed: TODO.txt: todo update
2024.11.09:
* changed: ISSUES.txt: issues update
2024.11.07:
* new: *.bat: switch scripts from `type 2>nul` usage to `call` as the fastest variant (for reset ERRORLEVEL to 1)
2024.11.07:
* refactor: deploy/totalcmd/ButtonBars/_common/link/link.bar: menu items refactor
2024.11.06:
* changed: _config: ConEmu installation path change
* changed: TODO.txt: todo update
* refactor: deploy/doublecmd, deploy/totalcmd: ButtonBars, Profile: menu items refactor
2024.10.28:
* changed: *.bat: removed all `EOT` and `SOH` control characters as EOL characters in all `for /F "... eol= ..."` statements (https://github.com/andry81/contools/issues/3 : `Batch FOR-Loops EOL relies on a rare character`)
2024.10.24:
* changed: TODO.txt: todo update
2024.10.17:
* fixed: deploy/totalcmd/ButtonBars/_common/copy, deploy/totalcmd/ButtonBars/_common/link/link.bar: switch to `GetLink` method instead of `CreateShortcut` as more reliable
* new: src/scripts/scm/shell/shell_copy_by_list.bat: added `-use_getlink` flag to use `GetLink` method instead of `CreateShortcut`
2024.10.14:
* fixed: _install*: execution fixup
* new: _install.bat, ._install/_install.notepadpp.pythonscript_register_tacklebar_scripts_menu.bat, deploy/notepad++/plugins/PythonScript/Config/PythonScriptStartup.items.cnf: optional add Notepad++ PythonScript plugin Tacklebar scripts menu and register shortcuts
2024.09.17:
* changed: deploy/totalcmd/Profile/wincmd.ini.in: more directory excludes for totalcmd search template
2024.09.17:
* changed: switch to use `wait_*_write_access.bat` scripts
* changed: code improvement
2024.09.04:
* fixed: src/scripts/create/create_dirs_by_path_list.bat, src/scripts/scm/shell/shell_*_by_list.bat: execution fixup
* new: src/scripts/scm/shell: shell_copy_by_list.bat, shell_move_by_list.bat: `ALLOW_DESTINATION_FILE_AUTO_RENAME` config variable to allow destination file auto rename in case of an exited one
* changed: _install.bat, src/scripts/create/create_empty_files_by_path_list.bat, src/scripts/scm/shell/shell_*_by_list.bat: code improvement
2024.08.29:
* fixed: src/scripts/terminal/run_cmd.bat: workaround for an unexpected `callf` exit before `cmd.exe` x86 executable start up
2024.08.29:
* fixed: src/scripts/terminal/run_cmd.bat: execution fixup
* changed: ._install/script_init.bat: removed unnecessary `call` prefix in a parameter of all `callshift.bat` calls
* changed: src/scripts/scm/git: git_bash.bat, gitcmd/git_*.bat, gitextensions/gitextensions.bat: avoid reuse of `FLAG_SHIFT` variable
* changed: src/scripts/terminal/__init__/script_init.bat, src/scripts/terminal/run_*.bat: pass command line to the next script call to print it including in the log
* changed: deploy/totalcmd/Profile/usercmd.ini.in, src/scripts/terminal/.impl/run.read_flags.bat: removed `-comspec*` options
2024.08.28:
* fixed: src/scripts/terminal: run_*.bat, __init__/script_init.bat: correct `MSYS_ROOT` usage
* changed: **/__init__/script_init.bat: removed unnecessary `call` prefix in a parameter of all `callshift.bat` calls
* changed: src/scripts/terminal/.impl/run.read_flags.bat: code merge
* changed: src/scripts/terminal: run_*.bat, __init__/script_init.bat: code merge
* changed: src/scripts/scm/shell/shell_reset_links_in_dir.bat: code cleanup
* changed: tools/init_*.bat: code improvement
2024.08.27:
* fixed: _config/*/config.0.vars.in: reverted default value for `MSYS*_ROOT` variables
* fixed: src/scripts: copy/copy_file_to_files_by_list.bat, scm/shell/shell_mklink_by_list.bat, scm/shell/shell_copy_by_list.bat: preserve all attributes in case of `msys` and `cygwin` usage
* fixed: src/scripts/copy/copy_file_to_files_by_list.bat, src/scripts/scm/shell/*.bat, src/scripts/terminal/run_msys_bash.bat: correct `MSYS_ROOT` usage
* fixed: src/scripts/scm/shell: shell_copy_by_list.bat, shell_move_by_list.bat: minor fixup
* refactor: src/scripts/scm/shell/*.bat, src/scripts/terminal/run_*.bat: minor refactor
2024.08.25:
* changed: deploy/totalcmd/Profile/wincmd.ini.in: more directory excludes for totalcmd search template
2024.08.14:
* fixed: _config/*/config.0.vars.in: default value for `MSYS*_ROOT` variables
2024.08.13:
* new: deploy/totalcmd/Profile/wincmd.ini.in: totalcmd search templates to search for tacklebar related versioned sources and Windows batch builtins declared by `declare_builtins.bat` script from `contools` project
2024.08.13:
* fixed: deploy/totalcmd/Profile/wincmd_cleanup.ini: missed to cleanup
2024.08.11:
* changed: deploy/notepad++/plugins/MultiReplace/README_EN.txt: readme update
2024.08.10:
* fixed: src/scripts/scm/git/gitcmd/git_*.sh: execution fixup
* changed: src/scripts/scm/git/gitcmd/git_*.sh: sync with the gitcmd external
2024.07.22:
* changed: deploy/notepad++/plugins/MultiReplace/Lists/tacklebar/copy_shortcut_target_by_list.replace_DESTDIR_by_shortcut_SRCDIR.csv: improved expression to match back and forward slash paths with and without pipe sign
2024.07.18:
* new: deploy/notepad++/plugins/MultiReplace/Lists/tacklebar/copy_shortcut_target_by_list.join_shortcut_PARENTDIR_and_FILENAME.csv: expression to join `># <shortcut-dir>\|<file-name>` field into `># <shortcut-file-path>`
* refactor: copy_shortcut_target_by_list.split_shortcut_FILEPATH_to_PARENTDIR_and_FILENAME.csv: file renamed
2024.07.04:
* changed: deploy/totalcmd, src/scripts/scm/git/gitcmd: `gitcmd` scripts retarget
2024.07.04:
* changed: TODO.txt: todo update
2024.06.21:
* changed: ISSUES.txt: issues update
2024.06.21:
* new: _install.bat, deploy/totalcmd, res/images/_main, src/scripts/_install/install_notepadpp_pythonscript_extension.bat: menu item and script to install Notepad++ PythonScript extension for current user
* changed: ._install/_install.*.bat: installation detection improvements
* changed: TODO.txt: todo update
2024.06.20:
* fixed: ._install/_install.*, _install-fonts.bat: execution fixup
* new: ._install/_install.notepadpp.python_scripts.bat: Notepad++ PythonScript extension installation is extracted into standalone script
2024.06.18:
* changed: TODO.txt: todo update
2024.06.17:
* fixed: scripts execution from Total Commander runned as different user
* fixed: ._install/script_init.bat: missed to expand variable path values beginning by %-character
* new: _install.bat, deploy/totalcmd, res/images/_main, src/scripts/_install/install_totalcmd_configs.bat: menu item and script to install Total Commander configuration files for current user
* new: ._install/_install.totalcmd.tacklebar_buttonbar.bat: buttonbar installation is extracted into standalone script
* changed: _install*, ._install/script_init.bat: installation initialization is extracted into common script
* changed: ISSUES.txt: issues update
* changed: README_EN.txt: readme update
2024.06.16:
* fixed: ._install/*.bat: missed to expand variable path values beginning by %-character
2024.06.13:
* changed: ISSUES.txt: issues update
2024.06.08:
* changed: README_EN.txt: readme update
2024.05.31:
* changed: TODO.txt: todo update
2024.05.23:
* fixed: tools/shell_copy_file_log.bat: execution fixup
2024.05.19:
* changed: deploy/notepad++/plugins/MultiReplace/Lists/tacklebar/copy_shortcut_target_by_list.replace_DESTDIR_by_shortcut_SRCDIR.csv: regexp expression improvement
2024.05.13:
* fixed: deploy/totalcmd/Profile/usercmd.ini.in: have to use `callfg.exe` instead of `callf.exe` in all `em_tkl_terminal_*` commands to avoid attach of `conhost.exe` to the `callf.exe` instead of `cmd.exe` and so avoid the loading/saving console window settings from/into `HKEY_CURRENT_USER\Console\*_callf.exe` registry hive instead of `HKEY_CURRENT_USER\Console\..._cmd.exe`
* refactor: _install*: minor code cleanup
2024.05.07:
* fixed: src/scripts/scm/shell: execution fixup
* changed: ISSUES.txt: issues update
2024.05.05:
* fixed: src/scripts: scripts changed to support `NO_GEN` and `NO_LOG` environment variables
* fixed: src/scripts: `copy` builtin command flags order
* changed: src/scripts/subst: additionally copy mounted and subst lists to the log directory
* changed: tools/shell_copy_file_log.bat: support for `NO_GEN` and `NO_LOG` environment variables
* changed: code cleanup
2024.05.03:
* changed: src/scripts/subst/*subst_drive.bat: minor improve
2024.05.03:
* changed: ISSUES.txt: issues update
* changed: README.md: git submodules notice, dependencies update
2024.05.03:
* changed: license.txt, README.md: copyright year as project born year
2024.05.02:
* fixed: deploy/notepad++/plugins/MultiReplace/Lists/tacklebar/copy_shortcut_target_by_list.replace_DESTDIR_by_shortcut_SRCDIR.csv: lua issue around cast from integer to boolean- (https://www.lua.org/pil/2.2.html: `Booleans`: `Lua considers both zero and the empty string as true in conditional tests`)
2024.05.01:
* new: deploy/notepad++/plugins/MultiReplace/Lists/tacklebar/copy_shortcut_target_by_list.split_shortcut_SRCDIR_to_PARENTDIR_and_NAME.csv: expression to split `># <shortcut-file-path>` field into `># <shortcut-dir-path>\|<shortcut-file-name>`
* changed: deploy/notepad++/plugins/MultiReplace/Lists/tacklebar/copy_shortcut_target_by_list.replace_DESTDIR_by_shortcut_SRCDIR.csv: improved DESTDIR parse
2024.05.01:
* fixed: src/scripts/scm/shell: execution fixup
* changed: src/scripts/scm/shell: improvements
2024.04.30:
* fixed: replaced `net session` admin privileges check with more reliable variant
2024.04.29:
* changed: src/scripts/scm/shell: minor improvements
2024.04.28:
* new: deploy/notepad++/plugins/MultiReplace/Lists/tacklebar/copy_shortcut_target_by_list.replace_DESTDIR_by_shortcut_SRCDIR.csv: regexp replace DESTDIR by shortcut SRCDIR beside `src/scripts/scm/shell/shell_copy_by_list.bat` script functionality
2024.04.26:
* fixed: tools/load_config_dir.bat: missed change
* changed: tools/load_config_dir.bat: generate only if output config does not exist
2024.04.24:
* changed: TODO.txt: todo update
2024.04.12:
* fixed: Scripts: `@dir %...%` incorrect expansion in the `for /F ... (`...`) do ...` expression
2024.04.09:
* fixed: _intall*: tacklebar partial installation detection without changelog file
* new: __init__/canonical_path_if_ndef.bat, Scripts/Tools/std/canonical_path_if_ndef.bat: `canonical_path.bat` script variant
* changed: __init__/canonical_path.bat: added parameters checks
* changed: global scripts rework, optimization and code cleanup
* refactor: global scripts refactor
2024.03.21:
* fixed: src/scripts/scm/shell/shell_copy_by_list.bat: shortcut target path read fixup
* changed: src/scripts/scm/shell/shell_copy_by_list.bat: improved shortcut target paths list generation
2024.03.20:
* changed: src/scripts/scm/shell/shell_copy_by_list.bat: shortcut taget path copy optimization
2024.03.20:
* new: src/scripts/scm/shell/shell_copy_by_list.bat: added config file generation and edit for script parameterization
2024.03.13:
* changed: _install*: code cleanup
* refactor: `PROJECT_LOG_FILE_NAME_SUFFIX` rename to `PROJECT_LOG_FILE_NAME_DATE_TIME`
2024.03.07:
* changed: rollup merge from `contools` project
2024.03.07:
* changed: __init__: minor improvements
2024.03.04:
* changed: deploy/notepad++/plugins/MultiReplace/Lists/winmerge: decorate-changelog.csv, strip-userlog.csv: improved regexp
2024.03.01:
* changed: _config: switched all configs to use uniform config files loader
* changed: switched all scripts to use uniform config files loader
2024.03.01:
* fixed: _config/winxp/config.0.vars.in: missed to merge winxp config
2024.03.01:
* fixed: deploy/totalcmd/Profile/usercmd_cleanup.ini: missed to cleanup old variants
2024.02.28:
* changed: userlog.md: format refresh
2024.02.28:
* changed: deploy/notepad++/plugins/MultiReplace/Lists/winmerge: decorate-changelog.csv, strip-userlog.csv: improved format
2024.02.23:
* fixed: _install*, src: execution fixup
* new: _install*: added `Cygwin`, `Msys` and `MinTTY` installation detection
* changed: _install*: changed `ConEmu` installation detection into 32-bit and 64-bit separately
* refactor: _install*, deploy, src, tools: code refactor
2024.02.21:
* fixed: .externals: missed `gitcmd` project add
2024.02.20:
* changed: README_EN.txt: readme update
* changed: TODO.txt: todo update
2024.02.20:
* new: _config, deploy, res, src: clear drive cache menu items
2024.02.20:
* changed: userlog.md: userlog update and synchronization with changelog
2024.02.20:
* new: deploy/notepad++/plugins/MultiReplace/Lists/winmerge: decorate-changelog.csv, strip-userlog.csv: `changelog.txt` decorator and `userlog.md` stripper to be able to compare and merge `changelog.txt` into `userlog.md`
2024.02.20:
* new: _config, deploy, res, src: standalone unsubst drive menu items
2024.02.17:
* new: _config, deploy, res, src: subst/unsubst drive menu items
* changed: tools/gen_*_config.bat: code cleanup
2024.02.17:
* fixed: src: missed config variables reload in case of `/load-parent-proc-init-env-vars` flag usage
* changed: src/__init__/script_init.bat: extracted all scripts basic initialization into common script
2024.02.17:
* new: res/images/notepad: new refined notepad menu item icons
* changed: deploy/totalcmd/ButtonBars/_common/notepad/notepad.bar: switched to use new icons
2024.02.16:
* fixed: deploy/totalcmd/Profile/usercmd.ini.in: execution fixup
* changed: _config/config.system.vars.in: changed minimal Windows XP versions
* changed: TODO.txt: todo update
2024.02.06:
* changed: TODO.txt: todo update
2024.02.02:
* changed: code cleanup
2024.01.27:
* changed: README_EN.txt, README.md: readme update
* refactor: _config/config.system.vars.in: minor refactor
2024.01.27:
* new: deploy/notepad++/plugins/MultiReplace/Lists/totalcmd/renumber-all-bar-button-keys.csv: regexp renumber all-in-one example
* changed: deploy/notepad++/plugins/MultiReplace/README_EN.txt: readme update
2024.01.26:
* changed: dev: `icobundle` moved into `tacklebar--external_tools-3dparty-icobundle` project
* changed: README_EN.txt: readme update
2024.01.25:
* fixed: deploy/totalcmd/Profile/usercmd.ini.in: temporary workaround for the `cm_Wait` command race condition (feature request: https://www.ghisler.ch/board/viewtopic.php?t=80882)
2024.01.25:
* fixed: deploy/totalcmd/Profile/usercmd.ini.in: execution fixup
2024.01.23:
* fixed: src/scripts: execution fixup
2024.01.23:
* new: .externals: `contools--notepadplusplus` project
* changed: _install.bat: retarget to `contools--notepadplusplus` project
* changed: README_EN.txt: readme update
2024.01.22:
* fixed: src/scripts/scm/shell/.shell_copy_by_list/shell_copy_by_list.xcopy_file_with_rename.bat: copy with rename execution fixup
2024.01.22:
* changed: deploy, src/scripts/scm/shell/shell_reset_links_in_dir.bat: added current directory parameter
* changed: src/scripts/scm/shell: scripts global print improvements
* refactor: src/scripts/scm/shell: scripts refactor
2024.01.22:
* new: deploy, src/scripts/scm/shell/shell_copy_by_list.bat: added support for shortcut (`*.lnk`) target paths copy
2024.01.21:
* changed: deploy/totalcmd/Profile/usercmd.ini.in, src/scripts/copy/copy_file_to_files_by_list.bat: removed `-from_file` option, rollup merge from `src/scripts/scm/shell/shell_copy_by_list.bat` script
* changed: src/scripts: added error messages on invalid input parameters
2024.01.19:
* changed: _install*: minor improvement
2024.01.18:
* new: _install*: check on minimum Total Commander version installed
2024.01.18:
* refactor: deploy/totalcmd: menu items minor refactor
2024.01.18:
* changed: userlog.md: userlog update and synchronization with changelog
2024.01.12:
* changed: rollup merge from `contools` project
* changed: code cleanup
2024.01.11:
* changed: _install*, deploy/python/2.x: installation moved into `tacklebar--external_tools` project
* changed: _install*: minor detection tweaks
* changed: README_EN.txt: readme update
* refactor: _install*: code refactor
2024.01.11:
* new: _install*: components bitness detection
2024.01.11:
* changed: _install*: move detection of all components into standalone script
* changed: _install*: minor detection tweaks
2024.01.10:
* fixed: _install.bat: missed to install `userlog.md` file
* new: deploy, res: Main menu buttons for `View changelog file`, `View userlog file`, `Open log directory`, `Open saveload directory`
* refactor: deploy: Main menu buttons minor refactor
2024.01.10:
* new: _install*: copy installation log directory at the end of installation
2024.01.09:
* fixed: _install*, deploy, res: buttons bar fixup
* new: deploy, res, src: Main menu button with `Edit config` item
2024.01.08:
* fixed: .externals, src/scripts/scm/tortoisesvn/tortoiseproc_by_nested_wc.bat: execution fixup
* changed: deploy/totalcmd/Profile/usercmd.ini.in, src/scripts/scm/tortoisesvn/tortoiseproc_by_nested_wc.bat: use selection by the current directory if the selection list is empty
2024.01.08:
* changed: deploy, src/scripts/scm/svn: src/scripts/scm/tortoisesvn: use selection by the current directory if the selection list is empty
* changed: src/scripts/scm: always print the current directory before an scm operation
2024.01.07:
* fixed: deploy/totalcmd/Profile/usercmd.ini.in: `cmd.exe` issue workaround, when the `cmd.exe` process does not close on a child process exit while waits for the input from a hidden console window
2024.01.07:
* new: deploy, res, src: Git button menu with `Git Bash` item
* changed: deploy/totalcmd/ButtonBars/_common/scm/git/gitcmd: added implicit `--follow-tags` argument to the push command line
* changed: README_EN.txt: readme update
2024.01.06:
* fixed: deploy/totalcmd/ButtonBars/_common/scm/svn/svn.bar: icons fixup
2024.01.04:
* fixed: _install*: minor improvements
* new: deploy, res, src, tools: added Git button menu with `GitExtensions` and `gitcmd` items
* new: _install*: added `GIT_SHELL_ROOT` variable detection as a standalone variant of the Bash shell for Git
* new: _install*: added `GitExtensions` installation detection
* changed: _install*: code cleanup
* changed: README_EN.txt: readme update
2024.01.04:
* fixed: src/scripts/notepad: sudden issue with Notepad++ empty tabs load, because of failed to import the `ctypes` module (PythonScript Python reads the registry for PythonPath from `HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Python\PythonCore\2.7\PythonPath`, does find and load the `_ctypes.pyd` from there)
* fixed: _install*: execution fixup, Python `psutil` module install into PythonScript plugin
* new: _install.bat: `ctypes` python dll deploy into Notepad++ PythonScript plugin directory
* new: deploy/python/2.x/core/dlls/ctypes/ctypes-python-2.7.18.7z: standalone `ctypes` dll package for python 2.7.18 in PythonScript
* changed: _install*: changed detection sequence for Notepad++ PythonScript plugin
* changed: README_EN.txt: readme update
2024.01.03:
* changed: minor code cleanup
2024.01.03:
* fixed: execution fixup over `declare_builtins.bat` script usage
* changed: _install*: code cleanup
2023.12.09:
* fixed: __init__, src, tools: execution fixup for Windows XP
2023.12.07:
* changed: _install: added `CONTOOLS_WMI_ROOT` variable usage
2023.12.05:
* fixed: __init__: missed to retarget externals of externals
2023.11.23:
* fixed: __init__: check externals directory existence before externals initialization
2023.11.23:
* new: src/scripts/scm/shell/shell_move_by_list.bat: added `ALLOW_TARGET_FILES_OVERWRITE_ON_DIRECTORY_MOVE` configuration variable to explicitly control files overwrite on a directory move (disabled by default)
* changed: _install*, src/scripts: minor improvements
2023.11.20:
* fixed: src/scripts/scm/shell/shell_move_by_list.bat: fixup around `move ... /E ...` command call
* fixed: src/scripts/scm/shell/shell_*_by_list.bat: execution fixup
* fixed: deploy/totalcmd/Profile/usercmd.ini.in: wrong current directory
* new: src/scripts/scm/shell/shell_move_by_list.bat: added move-to-merge mode to be able to merge input directory into output if output is an existed directory
* changed: src/scripts/scm/shell: minor improvements
* changed: __init__: code cleanup
2023.10.17:
* changed: ISSUES.txt: issues update
* changed: TODO.txt: todo update
2023.10.17:
* fixed: _install*: execution fixup
* new: _install.bat: `psutil` python module deploy into Notepad++ PythonScript plugin directory
* new: ._install/_install.detect.tacklebar.bat: `tacklebar` installation detection script
* new: deploy/python/2.x/modules/psutil/psutil-5.9.5.7z: `psutil` module package for python 2.7.18
* changed: README_EN.txt: readme update
2023.10.17:
* fixed: *.bat: workarounded issue around `if exist "...\"` by `if exist "...\*"`
2023.10.17:
* fixed: src/scripts/terminal/run_*.bat: execution fixup
* fixed: deploy/totalcmd/Profile/usercmd.ini.in: rare issue when a script returns not zero return code but `callf /pause-on-exit-if-error /ret-child-exit "" "cmd.exe /c @myscript.bat ..."` does not pause on exit, returns zero exit code and the console window closes up on script exit
* fixed: deploy/totalcmd/Profile/usercmd.ini.in: Explicitly switch to the current directory in case of execution in a current directory to prevent `cmd.exe` to silently switch to a system directory or a root directory in case of a long path. Use `path=%COMMANDER_SCRIPTS_ROOT%\` as a default current directory to be able to start the `cmd.exe` for any current directory.
* fixed: deploy/totalcmd/Profile/usercmd.ini.in: other execution fixup
* new: deploy/totalcmd/Profile/usercmd.ini.in: special run terminal user functions without initial console window (see `noconsole` keyword, ex: mintty has it's own console window)
* changed: deploy/totalcmd/Profile/usercmd.ini.in: removed not required `path` keys and `%P` values from `param` keys, because the current directory must be the `%COMMANDER_SCRIPTS_ROOT%` only if a command does not switch specifically to a working directory or use more than one directory at a time
* changed: deploy/totalcmd/ButtonBars/terminal/terminal*_mintty.bar: switched to `noconsole` variant
* changed: deploy/totalcmd/Profile/usercmd.ini.in: set Total Commander minimal version to 10.51
* changed: tools/init_mintty.bat: standalone mintty installation variables initialization extracted into script
* changed: tools/update_cwd.bat: custom readable error message instead of command interpreter not readable error
* changed: TODO.txt: todo update
* refactor: deploy/totalcmd/Profile/usercmd.ini.in: command lines and parameters refactor
2023.10.16:
* fixed: _install*: directory move changes modification timestamps
* fixed: _install*: workarounded issue around `if exist "...\"` by `if exist "...\*"`
* new: _install*: cleanup old `.*_prev_install` directories by moving into `.uninstall/*_prev_install` subdirectories
* changed: _install*, src/scripts: switched to `xmove_dir.bat` and `xmove_file.bat` scripts usage
2023.10.15:
* changed: ISSUES.txt: issues update
2023.10.15:
* fixed: src/script: msys and cygwin variables initialization
* changed: tools/init_*.bat: conemu, msys and cygwin variables initialization extracted into scripts
* refactor: src/scripts, deploy: `-use_shell_msys_*` and `-use_shell_cygwin_*` renamed to `-use_shell_msys` and `-use_shell_cygwin`
2023.10.13:
* changed: src/scripts/notepad/notepad_edit_files_by_list.bat: `-z -restore_single_instance` options renamed to `-z -restore_if_open_inplace`
* changed: src/scripts/notepad/notepad_edit_files_by_list.bat: missed changes
2023.10.10:
* fixed: src/scripts/notepad/notepad_edit_files_by_list.bat: instance appended files syntax highlight
* new: src/scripts/notepad/notepad_edit_files_by_list.bat: added `-append` flag and implemented new append mode with open from a file list file
* changed: src/scripts/notepad/notepad_edit_files_by_list.bat: switched to new append mode
* refactor: src/scripts/notepad/notepad_edit_files_by_list.bat: code refactor
2023.10.08:
* fixed: src/scripts/notepad/notepad_edit_files_by_list.bat: long paths open workaround by usage `-z --open_short_path_if_gt_limit -z 258` command line by default (workaround is unstable in Python 2.7.18)
* changed: _install.bat: copy readme file together with `npplib.py` script
2023.10.06:
* changed: ISSUES.txt: issues update
2023.10.06:
* changed: TODO.txt: todo update
2023.10.02:
* changed: _install*: uninstall into single `.uninstall` subdirectory with subdirectories
2023.09.17:
* fixed: src/scripts/terminal: `FLAG_SHIFT` usage
* fixed: tools/update_cwd.bat: CWD parse
* new: __init__, src: added `NO_GEN`, `NO_LOG` and `NO_LOG_OUTPUT` environment variables to disable files and directories generation and logging
* new: src/scripts/terminal, deploy/totalcmd/ButtonBars/terminal: run terminal shell without logging
* changed: _config/_common/config.0.vars.in: code cleanup
2023.09.16:
* new: deploy/notepad++/plugins/MultiReplace: Notepad++ plugin MultiReplace list files to find and replace in the Total Commander button bar files
2023.09.14:
* changed: TODO.txt: todo update
2023.09.13:
* fixed: deploy/totalcmd/ButtonBars: accidental usage of `-use_shell_cygwin_*` flag instead of `-use_shell_msys_*`
* changed: deploy/totalcmd/Profile: button commands extracted into User Defined Commands (`usercmd.ini`) to be able to use shortcuts on button commands
* changed: deploy/totalcmd/ButtonBars: use User Defined Commands with parameters to reduce copy-paste code
* changed: src/scripts/create/create_*_in_dirs_from_list.bat: remove first line BOM from a path list irrespective to `-from-utf*` flags and respective to current code page
* changed: deploy/totalcmd/ButtonBars/_common/terminal: removed `callfg` usage
* refactor: deploy/totalcmd/ButtonBars: button bar files reformat
2023.09.08:
* changed: README_EN.txt: readme update
2023.08.31:
* refactor: TODO.txt: moved all GitHub tasks into `gh-todo` repo
2023.08.31:
* refactor: TODO.txt: moved all issues into `ISSUES.txt` file
2023.08.31:
* changed: TODO.txt: removed all completed or partially completed tasks
2023.08.31:
* changed: TODO.txt: removed all obsolete tasks
2023.08.31:
* changed: TODO.txt: removed all svn related tasks as not actual anymore
2023.08.14:
* new: src/scripts/scm/shell/shell_reset_links_in_dir.bat: added `-allow-auto-recover`, `-allow-target-path-reassign`, `-allow-wd-reassign`, `-reset-target-path-from-wd`, `-reset-target-path-from-desc`, `-reset-target-name-from-file-path`, `-reset-target-name-from-file-path` flags usage
* new: deploy/totalcmd/ButtonBars/_common/link/link.bar: added `-allow-auto-recover + -allow-target-path-reassign`, `-allow-target-path-reassign`, `-reset-target-path-from-wd`, `-reset-target-path-from-desc`, `-reset-target-name-from-file-path`, `-reset-target-name-from-file-path` flag combinations usage
2023.08.12:
* fixed: src/scripts: minor fixup
2023.08.12:
* fixed: deploy/totalcmd/ButtonBars/_common/notepad/notepad.bar: execution fixup
2023.08.11:
* fixed: src/scripts/terminal/run_*_bash.bat: minor fixup
* changed: _install*, src/scripts/terminal/run_*_bash.bat: removed usage of `-init_vars_file`, `-enable_msys_slash_escape` flags
* changed: _config: removed obsolete variables
2023.08.11:
* fixed: src/scripts/terminal/run_*_bash.bat: avoid use `/detach-inherited-console-on-wait` flag on Windows 8+ as not stable
* new: tools/update_cwd.bat: added script for `CWD` variable update
* changed: src/scripts/terminal/run_*_bash.bat: always print win32 error system description string
* changed: src/scripts: added `update_cwd.bat` script usage
2023.08.11:
* changed: src/scripts: code cleanup from a temporary workaround
2023.08.10:
* changed: src/scripts/terminal/run_*_bash.bat: added `-init_vars_file` flag usage
2023.08.10:
* changed: src/scripts: code cleanup from a temporary workaround
2023.08.10:
* fixed: src/scripts/scm/shell/shell_rename_by_list.bat: case sensitive rename
* fixed: src/scripts/scm/shell/shell_move_by_list.bat: case sensitive rename and move
* fixed: src/scripts/scm/shell/shell_move_by_list.bat: file/directory overwrite check
* fixed: src/scripts/scm/shell/shell_*_by_list.bat: execution fixup
2023.08.10:
* fixed: src/scripts: execution fixup
2023.08.07:
* changed: ISSUES.txt: issues update
2023.08.05:
* fixed: _install*: execution fixup
2023.08.05:
* changed: userlog.md: userlog update and synchronization with changelog
2023.08.04:
* changed: TODO.txt: todo update
2023.06.25:
* changed: src/scripts/.common/exec_terminal_prefix.bat: moved to `contools` project
* changed: _install*, src/scripts/terminal/run_*_bash.bat: switched to use `exec_terminal_prefix.bat` from `contools` project
2023.06.11:
* new: _install: copy `.externals` into installation directory to be able to identify external dependencies from the installation directory
2023.05.30:
* changed: _install: improved `changelog.txt` filter
2023.05.24:
* changed: _install, src/scripts/terminal: switched to use `set_vars_from_file.bat` script from `contools` project
2023.05.23:
* changed: deploy/totalcmd/ButtonBars: `call.vbs` script replaced by `callf.exe` utility
* changed: deploy/totalcmd/ButtonBars/_common/saveload/load/load_saveload_list.bar: `LOADSEARCH` replaced by `em_saveload_prefix_bom_and_loadlist_from_utf8_bom_slot_*` macro functions
* changed: deploy/totalcmd/ButtonBars/_common/saveload/select/select_by_saveload_list.bar: `LOADSELECTION` replaced by `em_saveload_prefix_bom_and_loadselection_from_utf8_bom_slot_*` macro functions
* changed: minor changes behind merge
2023.05.22:
* changed: deploy/totalcmd/ButtonBars/_common/link/*.bar: `call.vbs` script replaced by `callf.exe` utility
* changed: src/scripts/scm/shell: shell_mklink_by_list.bat, shell_reset_links_in_dir.bat: scripts port
2023.05.20:
* refactor: README.md: replaced `blob/master` to `tree/HEAD` in all links as not dependent on specific branch name
2023.05.20:
* fixed: userlog.md: link fixup
* refactor: userlog.md: added emoji icons
2023.05.20:
* fixed: README.md: description minor fixup
2023.05.12:
* new: src/scripts/.common/exec_terminal_prefix.bat: added `-X` parameter to pass a value onto callf command line
* changed: src/scripts/.common/exec_terminal_prefix.bat: switched to use cleanup scripts from `contools` project
* changed: TODO.txt: todo update
2023.05.12:
* changed: _install: switched to use `set_vars_from_file.bat` script from `contools` project
2023.05.10:
* new: src/scripts/scm/shell/shell_move_by_list.bat: added config file generation and edit for script parameterization
* changed: src/scripts/scm/shell: minor improvements
2023.05.09:
* changed: src/scripts/scm: merged shell/svn/git scripts into single, added `-use_svn` and `-use_git` flags to independently enable copy/move/rename including svn and git
2023.05.09:
* changed: TODO.txt: todo update
2023.05.03:
* new: src/scripts/.common/exec_terminal_prefix.bat: added log and init vars cleanup on exit
2023.04.30:
* changed: TODO.txt: todo update
2023.04.24:
* changed: README_EN.txt: readme update
2023.04.24:
* new: .externals: added usage of `vcstool` fork (https://github.com/aaronplusone/vcstool/tree/feature-sparse-checkouts) project to port `svn:externals` dependencies from svn into git
* changed: src/scripts/scm/shell/shell_reset_links_in_dir.bat: pass `-reset-wd` flag as is
* changed: removed svn related files
2023.04.20:
* fixed: README.md: static badges address change
2023.03.17:
* changed: _install.bat: exclude `.log` and `_out` directories from copying
2023.03.16:
* new: src/scripts/scm/shell/shell_reset_links_in_dir.bat: added `-p[rint-assign]` flag to print all assignments
* new: src/scripts/scm/shell/shell_reset_links_in_dir.bat: added `-reset-wd` flag as shorter version of `-reset-wd-from-target-path`
* changed: deploy/totalcmd/ButtonBars/_common/link/link.bar: added `-p` flag to all `shell_reset_links_in_dir.bat` script calls to print all assignments
2022.12.22:
* fixed: src/scripts/scm/shell/shell_reset_links_in_dir.bat: added `-reset-wd-from-target-path` flag to reset `WorkingDirectory` property from `TargetPath` property (shortcut target must not be an existed directory path, otherwise `WorkingDirectory` must be not empty, otherwise - ignore)
* new: deploy/totalcmd/ButtonBars/_common/link/link.bar: added usage of `shell_reset_links_in_dir.bat` with `-reset-wd-from-target-path` flag
* changed: deploy/totalcmd/ButtonBars/_common/link/link.bar: code cleanup
2022.10.28:
* changed: TODO.txt: update
2022.10.28:
* changed: README.md: readme update, merge from `dev` branch
2022.10.17:
* new: _install.bat: suggest to install into `plugins/UTIL` folder at first time if `plugins` subdirectory does exist
2022.10.05:
* changed: TODO.txt: update
2022.09.29:
* new: _install.bat, deploy/totalcmd: added option to install a single button menu instead of multiple buttons menu
2022.09.21:
* changed: TODO.txt: update
2022.09.20:
* fixed: deploy/totalcmd/Profile/buttonbar_cleanup.ini: missed to cleanup on install
2022.09.14:
* fixed: _install*.bat, src: fixed script call in case if `INIT_VARS_FILE` variable is not defined
2022.08.12:
* fixed: src/scripts/scm/shell/shell_reset_links_in_dir.bat: execution fixup in case of `)` characters in the path
* changed: _externals: partial update to the latest
2022.07.02:
* fixed: deploy/totalcmd/Profile: profile cleanup and update
* new: src/scripts/scm/shell: added `shell_reset_links_in_dir.bat` script to reset shortcut files in a directory
* new: deploy/totalcmd/ButtonBars/_common/link/link.bar: shell reset shortcut files in current directory (recursively) item
2022.06.20:
* changed: TODO.txt: update
2022.06.20:
* fixed: src/scripts: potential `!` character truncation in path variables expansion
2022.05.20:
* changed: README.md: readme update
2022.05.07:
* changed: README.md: replaced the rest of links by content cache links, removed `seeyoufarm` hits counter as not actual anymore
2022.04.29:
* changed: README.md: content cache links update
2022.04.18:
* changed: .github/icons: content moved into `res/images`
* changed: README.md: content moved into `andry81-cache/andry81--gh-content-cache` repository
2022.04.03:
* new: README.md, .github/FUNDING.yml: shared donate link and badge
* changed: README.md: readme update
2022.03.31:
* new: res/images/inspect: exiv2 icons
2022.03.30:
* changed: README.md: update
2022.03.14:
* new: src/scripts/scm/shell: added `shell_mklink_by_list.bat` script to create shortcut files by list
* new: deploy/totalcmd/ButtonBars/_common: mklink, _menu.bar: menu for `shell_mklink_by_list.bat` script
* new: res/images/mklink: icons for `shell_mklink_by_list.bat` script
2022.03.14:
* changed: TODO.txt: update
2022.01.11:
* fixed: src/scripts/terminal: run_cmd.bat: interactive input processing for the arrow keys in the `cmd.exe`
2022.01.05:
* changed: .github/res/*.md.in: moved releases common readme templates into standalone repository
2022.01.05:
* fixed: src/scripts/terminal: execution fixup
* changed: _install.bat: separately detect 32/64 bit mintty/msys/cygwin
2021.12.24:
* fixed: .github/workflows/res/Release.md.in: branch rename
2021.12.22:
* fixed: src/scripts/terminal: mintty terminal execution fixup
* fixed: src/scripts/.common: environment variables correct reset in case of mintty processes inheritance chain break (mintty terminal does retart itself with parent process immediate exit)
* changed: src/scripts/terminal: minor improvements
* changed: deploy/totalcmd/ButtonBars/_common/terminal: execute without or hide default cmd.exe terminal window in case of mintty terminal window usage
* changed: _config: code cleanup
2021.12.21:
* fixed: src/scripts/terminal: execution fixup
* changed: __init__: execution speed optimization
2021.12.20:
* fixed: _install.bat: previous install `config.0.vars` file search
* fixed: _install.bat: execution fixup
2021.12.19:
* fixed: src/scripts/terminal: workaround for accidental exit with zero exit code if was a not zero exit code while been in initialization
* changed: __init__: rolled back to lite parse configs as fast parse been slow enough in dependentee projects
* changed: __init__, _install*, src/scripts: execution optimization
2021.12.18:
* fixed: README.md: badges fixup
2021.12.15:
* changed: __init__: execution speed optimization
2021.12.15:
* changed: src/scripts/terminal, tools: flags read speed optimization
2021.12.12:
* changed: src/scripts: usage of `/load-parent-proc-init-env-vars` flag in the callf utility calls, no need now the `start "" /i /wait` prefix to drop environment variables between calls to `cmd.exe`
2021.12.05:
* changed: .github/workflows: removed all github workflows as not required anymore because moved into a single repository
2021.12.05:
* changed: .github/workflows: code cleanup
2021.12.04:
* fixed: __init__: missed of `contools` project externals retarget
* fixed: _install: make check of the `config.0.vars` on empty additionally to existence to skip merge with an empty configuration file
* fixed: src/scripts/.common/exec_terminal_prefix.bat: invalid flags parse
2021.11.27:
* changed: .github/workflows: added `deps_repo_owner` parameter to specifically address dependent repositories
2021.11.25:
* fixed: .github/workflows: accidental yaml parser quotes strip in the middle of string
2021.11.24:
* fixed: .github/workflows: yaml syntax fix
2021.11.24:
* new: .github/workflows: use no-cache parameter for curl requests
2021.11.24:
* fixed: .github/workflows/accum-*-board-*: invalid output repo
* new: .github/workflows/accum-totalcmd-download-stats: workflow switched to use GitHub composite action
2021.11.24:
* fixed: .github/workflows/accum-gh-*: repo rename
* new: .github/workflows/accum-*-board-*: workflow switched to use GitHub composite action
2021.11.21:
* new: .github/workflows: GitHub workflow switched to use GitHub composite action (partially)
2021.11.20:
* changed: .github/workflows: print `latest.json` into the pipeline for debug purposes
2021.11.19:
* fixed: README.md: sync with the latest `gh-workflow`
* new: .github/workflows: `tacklebar-gh-view-stats.yml` to generate `tacklebar` repo view stats
* new: README.md: github all/unique views badges
2021.11.19:
* changed: .github/workflows: added reference to the `github-clone-count-badge` repo
2021.11.19:
* changed: .github/workflows: sync with for latest `gh-workflow`
2021.11.17:
* fixed: _config: external project externals retarget
2021.11.13:
* changed: README_EN.txt: repository links minor update
2021.11.12:
* new: README.md: `lgtm.com` link badges (disabled)
* changed: README.md: links update, realign
2021.11.11:
* new: README.md: `codeclimate.com` link badges (disabled)
* changed: README.md: badge icons and links update
2021.11.07:
* changed: .github/workflows/tacklebar-gh-clone-stats.yml: print warning/error into github workflow from the inner script
2021.11.06:
* new: README.md: repository/code size badges
* new: README.md: lines of code badge by `tokei.rs`
2021.11.06:
* refactor: README.md: minor refactor
2021.11.06:
* fixed: README.md: badge links minor rendering fix
* fixed: .github/res/Release.md.in: minor fixup
* new: README.md: commits since latest version badge
2021.11.06:
* changed: .github/workflows/tacklebar-totalcmd-download-stats.yml: print warning/error into github workflow from the inner script
2021.11.05:
* changed: .github/workflows: tacklebar-*cmd-board-stats.yml: skip error/warning variables allocation step if no errors and warnings
2021.11.05:
* new: .github/workflows/tacklebar-totalcmd-board-stats.yml: print warning/error into github workflow from the inner script
2021.11.05:
* new: .github/workflows/tacklebar-doublecmd-board-stats.yml: print warning/error into github workflow from the inner script
2021.10.31:
* changed: .github/workflows/tacklebar-totalcmd-download-stats.yml: minor change
2021.10.31:
* changed: README.md: sync totalcmd badge with the latest `gh-workflow`
2021.10.31:
* changed: .github/workflows/tacklebar-totalcmd-download-stats.yml: sync with the latest `gh-workflow`
2021.10.31:
* changed: README.md: added clones history badge link
2021.10.31:
* changed: README.md: sync with the latest `gh-workflow`
2021.10.31:
* changed: .github/workflows/tacklebar-gh-clone-stats.yml: global environment variables declaration fixup
2021.10.31:
* changed: .github/workflows/tacklebar-gh-clone-stats.yml: execution fixup
2021.10.31:
* changed: .github/workflows/tacklebar-gh-clone-stats.yml: sync with the latest `gh-workflow`
2021.10.29:
* changed: .github/res/Release.md.in: minor details
2021.10.29:
* new: README.md: badges realignment
2021.10.29:
* new: README.md: latest release name badge
2021.10.29:
* changed: README.md: indirect board discussion links to avoid views increment on click
2021.10.27:
* new: README.md: `totalcmd.net` and `doublecmd.h1n.ru` board discussion statistic badge
2021.10.27:
* new: .github/workflows: `tacklebar-totalcmd-board-stats.yml`, `tacklebar-doublecmd-board-stats.yml` to generate board discussion statistic from `totalcmd.net` and `doublecmd.h1n.ru` sites respectively
2021.10.27:
* new: README.md: as plugin from `totalcmd.net` downloads badge
2021.10.27:
* fixed: .github/workflows/tacklebar-totalcmd-download-stats.yml: minor fix
2021.10.27:
* new: .github/workflows: `tacklebar-totalcmd-download-stats.yml` to generate `tacklebar` download stats as plugin from `totalcmd.net` site
2021.10.27:
* changed: .github/workflows/tacklebar-gh-clone-stats.yml: dependecy update
2021.10.27:
* changed: .github/workflows/tacklebar-gh-clone-stats.yml: minor change
2021.10.27:
* changed: README.md: github all/unique clones badges switched on accumulated statistic
2021.10.27:
* changed: .github/workflows/tacklebar-gh-clone-stats.yml: implemented github clone statistic accumulation to overcome traffic 14 days limit
* changed: README.md: removed links from Github clones badges
2021.10.26:
* new: README.md: github all/unique clones badges
* new: README.md: github/sourceforge badge icons
2021.10.26:
* fixed: .github/workflows/tacklebar-gh-clone-stats.yml: invalid push repository
2021.10.26:
* fixed: .github/workflows/tacklebar-gh-clone-stats.yml: invalid token name for `actions/checkout`
2021.10.26:
* fixed: .github: incorrect subdirectory name
2021.10.26:
* new: .github/workflows: `tacklebar-gh-clone-stats.yml` to generate `tacklebar` repo clone stats
2021.10.26:
* changed: deploy/fonts/TerminalVector: better implementation from `adoxa.altervista.org`
2021.10.25:
* changed: README.md: `sourceforge.net` link update
2021.10.25:
* changed: .github/res/Release.md.in: `sourceforge.net` link update
2021.10.25:
* new: res/images_dev: `tacklebar-logo-32x32.png` logo
2021.10.25:
* new: README.md: `userlog.md` reference
* changed: userlog.md: refactor
2021.10.24:
* new: .github/res/Release.md.in: commits since tagged version badge
2021.10.24:
* changed: README.md: refactor
2021.10.24:
* new: .github/res: `Release.md.in` template
2021.10.24:
* fixed: README.md: hits badge align
2021.10.24:
* new: README.md: `codacy.com` link badge
* new: README.md: `sourceforge.net` download counter link badge
* changed: README.md: refactor
2021.10.24:
* fixed: README.md: removed link from hits counter badge
* new: README.md: `shields.io` all downloads counter link badge
2021.10.24:
* new: README.md: `refactor.io` link badge
2021.10.23: