Skip to content

Commit bc25c64

Browse files
committed
Updated release info
Signed-off-by: Omkar Phansopkar <[email protected]>
1 parent 96e9a56 commit bc25c64

File tree

7 files changed

+15
-40
lines changed

7 files changed

+15
-40
lines changed

Release.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,19 @@
22
- Ported to React + Typescript variant !!
33
Under GSoC by @OmkarPh
44
- Support for scancode-toolkit v32.x output format v3.0.0
5-
- Updated Tableview library
5+
- Updated Tableview library & columns
6+
- New sections: License Detections explorer, Packages explorer, ScanInfo, About
7+
- Support for multiple windows
68
- Maintain history of imports
79
- Updated dependencies
810
- Created UI to support top level packages-deps obtained in latest scans
9-
- Scan Info page to present header info
1011
- Support for Drag & drop JSON/SQLite files
1112
- Github actions to create automated releases
1213
Exception: macos arm64 is not yet support by Github actions yet, needs manual build & upload
1314

1415
## Bug fixes
16+
- Prevent crashes on unsupported scans
17+
- Provision for header-less scans (Test scans)
1518
- Table column fixes
1619
- Fixed UI anomalies
1720
- Invalid path query fix (Data for files with similar prefix were colliding)

package-lock.json

Lines changed: 0 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
"@electron-forge/plugin-webpack": "^6.1.1",
3737
"@fortawesome/fontawesome-free": "^6.2.0",
3838
"@svgr/webpack": "^6.4.0",
39-
"@types/better-sqlite3": "^7.6.0",
4039
"@types/c3": "^0.7.8",
4140
"@types/d3": "^7.4.0",
4241
"@types/jquery": "^3.5.14",

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export const createWindow = (): void => {
6363
});
6464
Menu.setApplicationMenu(Menu.buildFromTemplate(getTemplate()));
6565

66-
console.log("\n", isDev ? "Dev mode" : "Prod mode");
66+
console.log("\n" + isDev ? "Dev mode" : "Prod mode");
6767
// console.log("Preload URL: ", MAIN_WINDOW_PRELOAD_WEBPACK_ENTRY);
6868
console.log("Load URL: ", MAIN_WINDOW_WEBPACK_ENTRY);
6969

src/pages/Home/Home.tsx

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// import sqlite3 from 'sqlite3'
21
import moment from 'moment'
32
import electron from 'electron'
43
import * as electronFs from "fs"
@@ -20,18 +19,6 @@ import './home.css'
2019

2120
const { ipcRenderer } = electron;
2221

23-
24-
// // Debugging for native modules
25-
// const electronDialog = electron.dialog;
26-
// console.log('electron.dialog', electronDialog);
27-
// const sqlite3Window = window.require('sqlite3');
28-
// console.log("Sqlite 3 required", sqlite3Window);
29-
// console.log("Sqlite 3 imported === required", sqlite3Window === sqlite3);
30-
31-
/**
32-
* Developer options
33-
*/
34-
3522
const Home = () => {
3623
const {
3724
db,

src/utils/ensureRendererDeps.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,12 @@ console.log("Renderer Deps:", {
2020
sqlite3,
2121
sqlite3Version,
2222
// remoteMain,
23-
});
23+
});
24+
25+
26+
// // Debugging for native modules
27+
// const electronDialog = electron.dialog;
28+
// console.log('electron.dialog', electronDialog);
29+
// const sqlite3Window = window.require('sqlite3');
30+
// console.log("Sqlite 3 required", sqlite3Window);
31+
// console.log("Sqlite 3 imported === required", sqlite3Window === sqlite3);

webpack.renderer.config.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,6 @@ module.exports = {
2929
timers: "commonjs2 timers",
3030
zlib: "commonjs2 zlib",
3131
constants: "commonjs2 constants",
32-
33-
// "aws-sdk": "aws-sdk",
34-
// pg: "pg",
35-
// "pg-query-stream": "pg-query-stream",
36-
// mssql: "mssql",
37-
// "mssql/lib/base": "mssql/lib/base",
38-
// "mssql/package.json": "mssql/package.json",
39-
// mysql: "mysql",
40-
// mysql2: "mysql2",
41-
// oracle: "oracle",
42-
// oracledb: "oracledb",
43-
// tedious: "tedious",
4432
},
4533
plugins,
4634
resolve: {

0 commit comments

Comments
 (0)