Skip to content

Commit

Permalink
Update to 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tazzben committed May 9, 2024
1 parent a23ff28 commit 834c60b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "assessment-disaggregation",
"productName": "Assessment Disaggregation",
"version": "1.6.2",
"version": "1.6.3",
"description": "Measure learning using a scientifically validated method using pretest and posttest files. The software automatically reads most exam output files (Akindi, Scantron, Canvas, ZipGrade, Moodle, Google Form quizzes) without modification.",
"main": "src/main.js",
"repository": {
Expand Down
10 changes: 7 additions & 3 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,20 @@ const {
shell,
TouchBar
} = require('electron');

const os = require('os');
const {
TouchBarButton,
TouchBarSpacer
} = TouchBar;

if (require('electron-squirrel-startup')) app.quit();

// const { updateElectronApp } = require('update-electron-app');
// updateElectronApp();
// Disable the auto-updated for Windows on ARM

if (process.platform === 'darwin' || (process.platform === 'win32' && os.arch() === 'x64')) {
const { updateElectronApp } = require('update-electron-app');
updateElectronApp();
}

let settings = require('electron-settings');

Expand Down

0 comments on commit 834c60b

Please sign in to comment.