Skip to content

Commit

Permalink
Updated release info
Browse files Browse the repository at this point in the history
Signed-off-by: Omkar Phansopkar <[email protected]>
  • Loading branch information
OmkarPh committed Apr 14, 2023
1 parent 96e9a56 commit bc25c64
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 40 deletions.
7 changes: 5 additions & 2 deletions Release.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,19 @@
- Ported to React + Typescript variant !!
Under GSoC by @OmkarPh
- Support for scancode-toolkit v32.x output format v3.0.0
- Updated Tableview library
- Updated Tableview library & columns
- New sections: License Detections explorer, Packages explorer, ScanInfo, About
- Support for multiple windows
- Maintain history of imports
- Updated dependencies
- Created UI to support top level packages-deps obtained in latest scans
- Scan Info page to present header info
- Support for Drag & drop JSON/SQLite files
- Github actions to create automated releases
Exception: macos arm64 is not yet support by Github actions yet, needs manual build & upload

## Bug fixes
- Prevent crashes on unsupported scans
- Provision for header-less scans (Test scans)
- Table column fixes
- Fixed UI anomalies
- Invalid path query fix (Data for files with similar prefix were colliding)
10 changes: 0 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
"@electron-forge/plugin-webpack": "^6.1.1",
"@fortawesome/fontawesome-free": "^6.2.0",
"@svgr/webpack": "^6.4.0",
"@types/better-sqlite3": "^7.6.0",
"@types/c3": "^0.7.8",
"@types/d3": "^7.4.0",
"@types/jquery": "^3.5.14",
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const createWindow = (): void => {
});
Menu.setApplicationMenu(Menu.buildFromTemplate(getTemplate()));

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

Expand Down
13 changes: 0 additions & 13 deletions src/pages/Home/Home.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// import sqlite3 from 'sqlite3'
import moment from 'moment'
import electron from 'electron'
import * as electronFs from "fs"
Expand All @@ -20,18 +19,6 @@ import './home.css'

const { ipcRenderer } = electron;


// // Debugging for native modules
// const electronDialog = electron.dialog;
// console.log('electron.dialog', electronDialog);
// const sqlite3Window = window.require('sqlite3');
// console.log("Sqlite 3 required", sqlite3Window);
// console.log("Sqlite 3 imported === required", sqlite3Window === sqlite3);

/**
* Developer options
*/

const Home = () => {
const {
db,
Expand Down
10 changes: 9 additions & 1 deletion src/utils/ensureRendererDeps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,12 @@ console.log("Renderer Deps:", {
sqlite3,
sqlite3Version,
// remoteMain,
});
});


// // Debugging for native modules
// const electronDialog = electron.dialog;
// console.log('electron.dialog', electronDialog);
// const sqlite3Window = window.require('sqlite3');
// console.log("Sqlite 3 required", sqlite3Window);
// console.log("Sqlite 3 imported === required", sqlite3Window === sqlite3);
12 changes: 0 additions & 12 deletions webpack.renderer.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,6 @@ module.exports = {
timers: "commonjs2 timers",
zlib: "commonjs2 zlib",
constants: "commonjs2 constants",

// "aws-sdk": "aws-sdk",
// pg: "pg",
// "pg-query-stream": "pg-query-stream",
// mssql: "mssql",
// "mssql/lib/base": "mssql/lib/base",
// "mssql/package.json": "mssql/package.json",
// mysql: "mysql",
// mysql2: "mysql2",
// oracle: "oracle",
// oracledb: "oracledb",
// tedious: "tedious",
},
plugins,
resolve: {
Expand Down

0 comments on commit bc25c64

Please sign in to comment.