Skip to content
This repository has been archived by the owner on May 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #134 from bill-long/bilong-dev
Browse files Browse the repository at this point in the history
Reduce max events per window to 1 million
  • Loading branch information
bill-long authored Sep 27, 2021
2 parents df33b3d + 6615ac7 commit 0aba05b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Electron/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let serve;
const args = process.argv.slice(1);
serve = args.some(val => val === '--serve');

const maxEventsPerWindow = 1500000;
const maxEventsPerWindow = 1000000;
const windowManager = new EventLogExpertWindowManager(serve);
const menuBar = new EventLogExpertMenu(windowManager, maxEventsPerWindow);

Expand Down
2 changes: 1 addition & 1 deletion Electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eventlogexpert",
"version": "0.9.14",
"version": "0.9.15",
"author": {
"name": "Bill Long"
},
Expand Down

0 comments on commit 0aba05b

Please sign in to comment.