Skip to content

Commit

Permalink
Default sorting process list to name
Browse files Browse the repository at this point in the history
  • Loading branch information
romslf committed Jan 25, 2020
1 parent e3dab64 commit 73739bb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion builder.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const macOS = {
}

module.exports = {
asar: true,
asar: false,
productName: 'System Companion',
appId: 'com.github.romslf.system-companion',
artifactName: 'sc-${version}.${ext}',
Expand Down
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "system-companion",
"version": "0.0.1",
"version": "0.0.4",
"description": "Multi platform system informations tool.",
"main": "./dist/main/index.js",
"scripts": {
Expand All @@ -21,6 +21,12 @@
"engines": {
"node": ">=8.10.0"
},
"build": {
"files": [
"dist/**/*",
"package.json"
]
},
"devDependencies": {
"@xpda-dev/core": "^0.1.5",
"@xpda-dev/electron-launcher": "^0.1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/pages/process.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const { currentLoad, processes } = require('systeminformation')
export default {
data () {
return {
radio: "radio-1",
radio: "name",
avgLoad: 0,
idleLoad: 0,
currentLoad: 0,
Expand Down

0 comments on commit 73739bb

Please sign in to comment.