-
Notifications
You must be signed in to change notification settings - Fork 70
/
CHANGELOG.rst
1179 lines (862 loc) · 35.6 KB
/
CHANGELOG.rst
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
Changelog
=========
All notable changes to this project will be documented in this file.
The format is based on `Keep a
Changelog <https://keepachangelog.com/en/1.0.0/>`__
[v4.0.4] - Unreleased
--------------------------
Docs
~~~~~~~~~
- Update macOS installation steps by @OmkarPh in #631
[v4.0.3] - 2024-08-07
--------------------------
Updates
-------
- Update link references of ownership from nexB to aboutcode-org
[v4.0.2] - 2024-02-28
--------------------------
**This ScanCode-Workbench release contains schema changes: scans will have to be re-imported**
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
--------------------
New Features
~~~~~~~~~~~~
- New PR template by @dotarjun in #617
- Fixed Boolean cell renderer, refactored renderers, hidden license text for directories by @OmkarPh in #627
- Updated docs - illustrations corresponding to new UI for to-do, reviews, matches table by @OmkarPh in #628
- Support for new License detection format by @OmkarPh in #629
- MacOS arm64 build in github actions by @OmkarPh in #630
[v4.0.1] - 2024-01-22
--------------------------
**This ScanCode-Workbench release contains schema changes: scans will have to be re-imported**
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
--------------------
New Features
~~~~~~~~~~~~
- Support for To-do items by @OmkarPh in #593
- Track & filter reviewed licenses by @OmkarPh in #571
- Build filetree with missing directories to support `--only-findings` scans by @OmkarPh #624
- Sort the files in tableview by their depth in directory tree by @OmkarPh in #625
Bug Fixes
~~~~~~~~~
- Fixed Irregular auto-scroll to target path by @OmkarPh in #610
- Fixed all vulnerabilities & updated packages by @OmkarPh in #611
- Restore old app name by @dotarjun in #615
- Fixed compund SPDX expression resolution in detection & clue matches by @OmkarPh in #619
- Reduce release build size by removing redundant `node_modules` dependencies & include metadata in release archive by @OmkarPh in #623
- Fixed Boolean cell renderer, refactored renderers, hidden license text for directories by @OmkarPh in #627
[v4.0.0] - 2023-10-26
--------------------------
**This ScanCode-Workbench release contains schema changes: scans will have to be re-imported**
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
------------
Refactoring
~~~~~~~~~~~~
Entire source code is refactored to TypeScript + React
--------------------
New Features
~~~~~~~~~~~~
- Add support for ScanCode Toolkit v32.x
- Maintain history of imports for quick access
- Updated dependencies
- Support for top level packages-deps obtained in latest scans
- Scan Info page to present header info
- Support Drag & drop JSON/SQLite files
- Github actions to create automated releases
- Remove the ability to upload Conclusions to DejaCode #413
- Remove ability to edit conclusions & remove conclusions view
- New top-level views: Packages Explorer & Licenses Explorer
- Update in-app help links #412
- Add source controlled documentation #411
- Update app icon to a more visible one #382
- Add color to DataTables "Progress..." pop-up #407
- Update the display of scan headers #400
- New views:
- Licenses Explorer
- Packages Explorer
- Dependencies Info Dashboard
- Scan Info
- Inter-view links for 'for_packages' & 'license_detections'
- Remove ability to edit conclusions & remove conclusions view
- Search in licenses explorer
- Filters for packages based on dependencies flags & data_source_id
- License clues section in Licenses explorer view
- Normalize Chart summary data
- Close file & cleanup option
- Unit tests
- Dependency Info dashboard - Dependency Scope summary by Package Type
- Working indicator for queries
- Diff modal for Matched text & Rule text in Matches table
Bug Fixes
~~~~~~~~~
- Fixed table column inconsistencies
- Fixed UI anomalies
- Invalid path query fix (Data for files with similar prefix were colliding)
- license_expression values now being uploaded correctly #403
[v3.1.1] - 2019-9-27
--------------------
New Features
~~~~~~~~~~~~
- DejaCode API key visibility is now toggle-able in the upload dialog
#391
Bug Fixes
~~~~~~~~~
- Table rows are fixed height by default #1
- Fix incorrect directory size on Scan Data Table view #232
- Keep columns visible when navigating pagination pages #253
- Long path names should now display properly #263
- After Conclusion creation, the root node is no longer selected
automatically #372
- "No Value Detected" are now shown on the pie charts by default #378
- Workbench can now import scans without fileinfo information #385
- Products with no version are no longer rejected by the DejaCode
upload #392
- Update major dependencies #395
ScanCode Toolkit Compatibility
------------------------------
This beta version of ScanCode Workbench is compatible with scans from
any `ScanCode Toolkit <https://github.com/aboutcode-org/scancode-toolkit/>`__
develop version/branch at or after ``v3.1.1``.
Using
-----
- To install, download and extract the release for your operating
system from the archives above. Then, run the ScanCode-Workbench
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/aboutcode-org/scancode-workbench/wiki>`__.
[v3.1.0] - 2019-4-26
--------------------
Updates
-------
**This AboutCode-Manager release contains schema changes: scans will have to be re-imported**
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
New Features
~~~~~~~~~~~~
- Add support for Scan Errors #248
- Add pURL support for Conclusions #337
- Add new Dashboard Views #366
Bug Fixes
~~~~~~~~~
- Update Wiki/README doc images/gifs #322
ScanCode Toolkit Compatibility
------------------------------
This beta version of ScanCode Workbench is compatible with scans from
any `ScanCode Toolkit <https://github.com/aboutcode-org/scancode-toolkit/>`__
develop version/branch at or after ``v3.0.2``. Scans imported into the
app need to contain the file information data. Therefore, the ``-i``
option needs to be used in your ScanCode command. For example:
.. code:: bash
./scancode -iclpeu <input> --json-pp <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives above. Then, run the ScanCode-Workbench
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/aboutcode-org/scancode-workbench/wiki>`__.
[v3.0.0b3] - 2019-3-15
----------------------
New Features
~~~~~~~~~~~~
- Add support for License Policy #215
- Enable/Allow to zoom in/out #356
- Submit AboutCode Manager to Electron Applications #216
- Column Visibility Options #164
- Enable/Allow to zoom in/out #356
Bug Fixes
~~~~~~~~~
- ScanCode Workbench does not warn that ``-i / --info`` is missing from
input json file #266
- Dashboard does not correctly display a single file count #347
- Fix package entries on BarChart #344
ScanCode Toolkit Compatibility
------------------------------
This beta version of ScanCode Workbench is compatible with scans from
any `ScanCode Toolkit <https://github.com/aboutcode-org/scancode-toolkit/>`__
develop version/branch at or after ``v3.0.2``. Scans imported into the
app need to contain the file information data. Therefore, the ``-i``
option needs to be used in your ScanCode command. For example:
.. code:: bash
./scancode -iclpeu <input> --json-pp <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives above. Then, run the ScanCode-Workbench
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/aboutcode-org/scancode-workbench/wiki>`__.
[v3.0.0b2] - 2019-3-15
----------------------
Updates
-------
Beta release of upcoming v3.0 ScanCode Workbench release
New Features
~~~~~~~~~~~~
- Add Welcome Page #290
- Streamline left panel #306
- Add Scan filename/SQLite filename to the Dashboard View #336
Bug Fixes
~~~~~~~~~
- Package Declared Licensing filter not working on unusual values #287
- Refresh Table View (and others) on Import of JSON file #293
- Some menu shortcuts are misdescribed #326
ScanCode Toolkit Compatibility
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This beta version of ScanCode Workbench is compatible with scans from
any ScanCode Toolkit develop version/branch at or after ``v2.9.9``.
Scans imported into the app need to contain the file information data.
Therefore, the -i option needs to be used in your ScanCode command. For
example:
.. code:: bash
./scancode -iclpeu <input> --json-pp <output_file.json>
[v3.0.0b1] - 2019-1-14
----------------------
Updates
-------
Beta release of upcoming v3.0 ScanCode Workbench release
New Features
~~~~~~~~~~~~
- Rename AboutCode Manager to ScanCode Workbench #324
Bug Fixes
~~~~~~~~~
- Clear column filters on BarChart drill down #327
- Package Declared Licensing filter working on unusual values #287
ScanCode Toolkit Compatibility
------------------------------
This beta version of ScanCode Workbench is compatible with scans from
any `ScanCode Toolkit <https://github.com/aboutcode-org/scancode-toolkit/>`__
develop version/branch at or after ``v2.9.9``. Scans imported into the
app need to contain the file information data. Therefore, the ``-i``
option needs to be used in your ScanCode command. For example:
.. code:: bash
./scancode -iclpeu <input> --json-pp <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives above. Then, run the ScanCode-Workbench
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/aboutcode-org/scancode-workbench/wiki>`__.
[v2.6.1] - 2018-12-19
---------------------
Updates
-------
New Features
~~~~~~~~~~~~
- Add Tree view to all views to aid in navigation and general UX #267
- Visual marker for Packages on the Tree view #26
- Visual markers for Conclusions on the Tree view #209
- Refined column sets on the Scan Data view #272
Bug Fixes
~~~~~~~~~
- Default SQLite filename now be identical to scan file filename #304
- Update package's declared licensing values #318
- Handle new scancode-toolkit header structure #323
ScanCode Compatibility
----------------------
This version of AboutCode Manager is compatible with scans from any
`ScanCode Toolkit <https://github.com/aboutcode-org/scancode-toolkit/>`__ develop
version/branch at or after ``v2.9.8``. Scans imported into the app need
to contain the file information data. Therefore, the ``-i`` option needs
to be used in your ScanCode command. For example:
.. code:: bash
./scancode -iclpeu <input> --json-pp <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives above. Then, run the AboutCode-Manager
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/nexB/aboutcode-manager/wiki>`__.
[v2.6.0] - 2018-9-10
--------------------
Updates
-------
**This AboutCode-Manager release contains schema changes: scans will have to be re-imported**
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
API Changes
~~~~~~~~~~~
This release contains changes to the AboutCode Manager API: \* Add
support for Package URL #244 \* Handle new scancode Copyright attributes
#274
New Features
~~~~~~~~~~~~
- Improve "Table" View names #268
- Numeric columns should be right-justified #286
- Alert user when they need to re-import scan files #288
Bug Fixes
~~~~~~~~~
- Fix loading graphic exceeds 100% #233
- Fix 'Has a Value' filter sometimes displaying empty copyright
attributes #277
- Binary filters now filtering correctly #295
- Copyright "Has a Value" and "No Value Detected" now working #297
ScanCode Compatibility
----------------------
This version of AboutCode Manager is compatible with scans from any
`ScanCode Toolkit <https://github.com/aboutcode-org/scancode-toolkit/>`__ develop
version/branch after ``v2.9.2``. Version 2.9.2 scans will still import,
but Copyright data may not display correctly. Scans imported into the
app need to contain the file information data. Therefore, the ``-i``
option needs to be used in your ScanCode command. For example:
.. code:: bash
./scancode -iclpeu <input> --json-pp <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives above. Then, run the AboutCode-Manager
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/nexB/aboutcode-manager/wiki>`__.
[v2.5.0] - 2018-8-14
--------------------
Updates
-------
**This AboutCode-Manager release contains schema changes: scans will have to be re-imported**
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
API Changes
~~~~~~~~~~~
This release contains changes to the AboutCode Manager API: \* License
Expression table and fields added to code models #243 \* Package Model
and fields are now aligned with ScanCode Toolkit's package model #244
New Features
~~~~~~~~~~~~
- ClueTable View now lets the user filter by "No Value Detected" #235
- BarChart View now lets the user drill down by "No Value Detected"
#280
- The user can now view Scan options used from the origin scan #239
Bug Fixes
~~~~~~~~~
- eslint testing fixes for Windows hosts #278
- Leading and trailing whitespace is now ignored in the global search
box #240
ScanCode Compatibility
----------------------
This version of AboutCode Manager is compatible with scans from
`ScanCode Toolkit
v2.9.2 <https://github.com/aboutcode-org/scancode-toolkit/releases/>`__. Scans
imported into the app need to contain the file information data.
Therefore, the ``-i`` option needs to be used in your ScanCode command.
For example:
.. code:: bash
./scancode -iclpeu <input> --json-pp <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives above. Then, run the AboutCode-Manager
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/nexB/aboutcode-manager/wiki>`__.
[v2.4.1] - 2018-7-24
--------------------
Updates:
--------
New Features
~~~~~~~~~~~~
- Component creation dialog view no longer has a grey background. #22
- "Clear Filters" button added: clears both column filters + global
search box. #241
- "All" is now an explicit column filter value. #251
- The ClueDataTable view now resets to the top row upon hitting a
pagination button. #252
- Removed Node View due to lack of interest. #255
Bug Fixes
~~~~~~~~~
- Bar chart count for clues now only counts files. #183
- ClueDataTable filters now return exact match instead of pattern. #223
- ClueDataTable filters now appear on all platforms correctly. #227
- Top level directory now displays correctly. #231
- URLs now open in the user's default desktop browser. #236
- Changed "Component" to "Name" in Edit Conclusion screen. #250
- BarChart Drill down filter is now activated and cleared correctly.
#265
ScanCode Compatibility
----------------------
This version of AboutCode Manager is compatible with scans from
`ScanCode Toolkit
v2.2.1 <https://github.com/aboutcode-org/scancode-toolkit/releases/>`__ and
later. Scans imported into the app need to contain the file information
data. Therefore, the ``-i`` option needs to be used in your ScanCode
command. For example:
.. code:: bash
./scancode -iclpeu <input> <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives below. Then, run the AboutCode-Manager
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/nexB/aboutcode-manager/wiki>`__.
[v2.3.0] - 2018-1-30
--------------------
This release contains a change to the AboutCode Manager API. New
Conclusion Fields were added to enable a user to enter additional
Conclusion data from their review of ScanCode data.
Updates:
--------
API Changes
~~~~~~~~~~~
- Add new component fields to table #204
- Add AboutCode Manager header information #198
New Features
~~~~~~~~~~~~
- Add component dialog options #204
- Add component table column visibility button #204
- Add additional tooltips for component fields #207
- Fix populated data for input drop down #204
- Add new fields to DejaCode upload #204
- Add files\_count to JSON export #198
Bug Fixes
~~~~~~~~~
- Fix silently failing SQLite exception #176
- Fix cases where querying on jstree directory path returned similar
path names #211
- Fix input placeholder text width #204
- Fix Table View display order #134
ScanCode Compatibility
----------------------
This version of AboutCode Manager is compatible with scans from
`ScanCode Toolkit
v2.2.1 <https://github.com/aboutcode-org/scancode-toolkit/releases/>`__. Scans
imported into the app need to contain the file information data.
Therefore, the ``-i`` option needs to be used in your ScanCode command.
For example:
.. code:: bash
./scancode -iclpeu <input> <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives below. Then, run the AboutCode-Manager
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/nexB/aboutcode-manager/wiki>`__.
[v2.4.0] - 2018-1-29
--------------------
Updates:
--------
API Changes
~~~~~~~~~~~
- This release contains a change to the AboutCode Manager API. Header
information from ScanCode Toolkit and AboutCode Manager are combined
into one table. #168
New Features
~~~~~~~~~~~~
- User feedback has been improved throughout the application. Progress
bars are now present when loading occurs. #212
- CSV and JSON export are available directly in Component Summary View
#220
Bug Fixes
~~~~~~~~~
- Fix when clue table results when a file is selected in the jsTree
view #221
Testing
~~~~~~~
- ESLint validation tests have been added. #168
ScanCode Compatibility
----------------------
This version of AboutCode Manager is compatible with scans from
`ScanCode Toolkit
v2.2.1 <https://github.com/aboutcode-org/scancode-toolkit/releases/>`__. Scans
imported into the app need to contain the file information data.
Therefore, the ``-i`` option needs to be used in your ScanCode command.
For example:
.. code:: bash
./scancode -iclpeu <input> <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives below. Then, run the AboutCode-Manager
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/nexB/aboutcode-manager/wiki>`__.
[v2.2.0] - 2017-12-15
---------------------
Updates:
--------
This release contains significant code refactoring #168
Bug Fixes
~~~~~~~~~
- Fix DataTable filter to match width of the DataTable column #194
- Remove 'About...' view from 'Help' menu #186
- Add build matrix and use Xcode 7.3 in Travis #168
New Features
~~~~~~~~~~~~
- Show progress with completion percentage #205
- Filter column values based on selected directory #195
- Display name of current SQLite file in app #185
- Add warning for unsaved Component edits #127
ScanCode Compatibility
----------------------
This version of AboutCode Manager is compatible with scans from
`ScanCode Toolkit
v2.2.1 <https://github.com/aboutcode-org/scancode-toolkit/releases/>`__ and
above. Scans imported into the app need to contain the file information
data. Therefore, the ``-i`` option needs to be used in your ScanCode
command. For example:
.. code:: bash
./scancode -iclpeu <input> <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives below. Then, run the AboutCode-Manager
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/nexB/aboutcode-manager/wiki>`__.
[v2.1.0] - 2017-11-21
---------------------
Updates:
--------
API Changes
~~~~~~~~~~~
- Add JSONStream to import JSON files larger than 256 MB #196
- Refactored renderer to create a stream from the imported JSON file
#196
- Refactored aboutCodeDB to use JSONStream library to read the JSON
file line by line #196
- Improved database creation speed by manually implementing batch
create and wrapping all nested batch creation calls in a transaction
#196
- Fixed stack overflow for large files from $.map by converting it to a
normal for loop (aboutCodeDashboard and aboutCodeBarChart)
- Added support for ScanCode Toolkit jsonlines format #196
- Added AboutCode database table which contains AboutCode Manager
version #196
Bug Fixes
~~~~~~~~~
- Fix missing file id in nested tables #196
- Dashboard display fixes #196
- Cached graph data after the first load so that a database lookup
isn’t needed for each redraw of the dashboard charts #196
ScanCode Compatibility
----------------------
This version of AboutCode Manager is compatible with scans from
`ScanCode Toolkit
v2.2.1 <https://github.com/aboutcode-org/scancode-toolkit/releases/>`__ and
above. Scans imported into the app need to contain the file information
data. Therefore, the ``-i`` option needs to be used in your ScanCode
command. For example:
.. code:: bash
./scancode -iclpeu <input> <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives below. Then, run the AboutCode-Manager
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/nexB/aboutcode-manager/wiki>`__.
[v2.0.1] - 2017-11-4
--------------------
Updates:
--------
Bug Fixes
~~~~~~~~~
- Open URLs in external default browser #187
- Remove set table filter value when a new file is loaded #181
Miscellaneous
~~~~~~~~~~~~~
- Remove default jstree animation #188
- Add issue template for submitting issues #190
ScanCode Compatibility
----------------------
This version of AboutCode Manager is compatible with scans from
`ScanCode Toolkit
v2.2.1 <https://github.com/aboutcode-org/scancode-toolkit/releases/>`__ and
above. Scans imported into the app need to contain the file information
data. Therefore, the ``-i`` option needs to be used in your ScanCode
command. For example:
.. code:: bash
./scancode -iclpeu <input> <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives below. Then, run the AboutCode-Manager
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/nexB/aboutcode-manager/wiki>`__.
[v2.0.0] - 2017-10-25
---------------------
AboutCode Manager 2.0.0 has been released 🚀
ScanCode Compatibility
----------------------
This version of AboutCode Manager is compatible with scans from
`ScanCode Toolkit
v2.2.1 <https://github.com/aboutcode-org/scancode-toolkit/releases/>`__ and
above. Scans imported into the app need to contain the file information
data. Therefore, the ``-i`` option needs to be used in your ScanCode
command. For example:
.. code:: bash
./scancode -iclpeu <input> <output_file.json>
Using
-----
- To install, download and extract the release for your operating
system from the archives below. Then, run the AboutCode-Manager
application from the extracted directory.
- For more information on how to use the app see the
`wiki <https://github.com/nexB/aboutcode-manager/wiki>`__.
Some of the key highlights include:
-----------------------------------
New Features
~~~~~~~~~~~~
- Significant performance improvements with the addition of a new
SQLite database
- Upload created components to DejaCode using DejaCode API.
- Auto-saving file (SQLite format)
- Import and Export JSON File
- Added ScanCode results Summary Bar Chart which when clicked shows the
corresponding files
- Added column filters to Table View
- Added ability to filter nodes that are shown by their Component
Status
- Added ability to create component from codebase tree
API Changes
~~~~~~~~~~~
- Changed ``dejacode_url`` attribute to ``reference_url`` attribute
Miscellaneous
~~~~~~~~~~~~~
- Updated Electron to v1.6.14
- Update sqlite3 to v3.1.10
- Integrated Travis and AppVeyor into build process
- Ported Shell build script to Python script
- Updated application menu items
- Various UI styling updates
Kudos
-----
:raised\_hands: Huge thanks to all the contributors who have helped
AboutCode Manager come this far. Some of the contributors to this
release with either code and/or bug reports include:
- @jdaguil
- @johnmhoran
- @majurg
- @pombredanne
- @mjherzog
- @JonoYang
- @chinyeungli
- @DennisClark
- @nspsjsu
[v2.0.0-rc5] - 2017-12-15
-------------------------
This is a release candidate for v2.0.0 that can be used for testing.
This is a significant new feature release that includes significant
improvements in performance and adds a data storage mechanism.
This version is only compatible with scans from `ScanCode Toolkit
v2.0.0.rc1 <https://github.com/aboutcode-org/scancode-toolkit/releases/>`__.
Scans imported into the app need to contain the file information data.
Therefore, the ``-i`` option needs to be used in your ScanCode command.
For example:
.. code:: bash
./scancode -clipeu <input> <output_file.json>
Using
~~~~~
To install, download and extract the release for your operating system
from the archives below. Then, run the AboutCode-Manager application
from the extracted directory. 📢 Mac users 📢 After extracting the
release, you will need to right click the app and select **Open**.
Select **Open** again when asked if you are sure you want to open the
app.
For more information on how to use the app see the
`wiki <https://github.com/nexB/aboutcode-manager/wiki>`__.
Some of the key highlights include:
-----------------------------------
New Features
~~~~~~~~~~~~
- Significant performance improvements with the addition of a new
SQLite database
- Upload created components to DejaCode using DejaCode API.
- Auto-saving file (SQLite format)
- Import and Export JSON File
- Added ScanCode results Summary Bar Chart which when clicked shows the
corresponding files
- Added column filters to Table View
- Added a UI indicator for database creation
- Added keyboard shortcuts for different views
- Added ability to remove created components
- Added ability to filter nodes that are shown by their Component
Status
- Added ability to create component from codebase tree
- Added Component Copyright to Component Summary table
- Added the ability to overwrite an existing sqlite file
- Added Export for only Component concluded data
API Changes
~~~~~~~~~~~
- Changed ``dejacode_url`` attribute to ``reference_url`` attribute
Bug Fixes
~~~~~~~~~
- Added error message on import when JSON is malformed
- Fixed memory leak allocation failure for large JSON File import
- Fixed display of directories before files in jstree
- Removed fixed zooming in Node View
Miscellaneous
~~~~~~~~~~~~~
- Updated Electron to v1.6.14
- Update sqlite3 to v3.1.10
- Replaced electron-prebuilt with electron
- Added additional tests
- Various updates to application build process
- Integrated Travis and AppVeyor into build process
- Ported Shell build script to Python script
- Updated application menu items
- Various UI styling updates
[v2.0.0-rc4] - 2017-9-18
------------------------
This is a release candidate for v2.0.0 that can be used for testing.
This is a significant new feature release that includes significant
improvements in performance and adds a data storage mechanism.
AboutCode Manager is only compatible with scans from `ScanCode Toolkit
v2.0.0.rc1 <https://github.com/aboutcode-org/scancode-toolkit/releases/>`__ and
above. Scans imported into the app need to contain the file information
data. Therefore, the ``-i`` option needs to be used in your ScanCode
command. For example:
.. code:: bash
./scancode -clipeu <input> <output_file.json>
Using
~~~~~
To install, download and extract the release for your operating system
from the archives below. Then, run the AboutCode-Manager application
from the extracted directory. 📢 Mac users 📢 After extracting the
release, you will need to right click the app and select **Open**.
Select **Open** again when asked if you are sure you want to open the
app.
For more information on how to use the app see the
`wiki <https://github.com/nexB/aboutcode-manager/wiki>`__.
Some of the key highlights include:
-----------------------------------
New Features
~~~~~~~~~~~~
- Significant performance improvements with the addition of a new
SQLite database
- Upload created components to DejaCode using DejaCode API.
- Auto-saving file (SQLite format)
- Import and Export JSON File
- Added ScanCode results Summary Bar Chart
- Added column filters to Table View
- Added a UI indicator for database creation
- Added keyboard shortcuts for different views
- Added ability to remove created components
- Added ability to filter nodes that are shown by their Component
Status