Skip to content

Commit

Permalink
Fix locale issue, change font
Browse files Browse the repository at this point in the history
  • Loading branch information
dropdb220 committed Feb 6, 2024
1 parent 281224b commit c364bb5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions electron-builder.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"!out",
"!etc"
],
"buildNumber": "3",
"buildNumber": "0",
"mac": {
"category": "public.app-category-utilities",
"electronLanguages": [
"en_US",
"en",
"ko"
],
"target": [
Expand Down
4 changes: 2 additions & 2 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
}
body {
text-align: center;
font-family: -apple-system, 'SF Pro', 'Apple SD Gothic Neo', 'Helvetica Neue', sans-serif;
font-family: BlinkMacSystemFont, 'SF Pro', 'Apple SD Gothic Neo', 'Helvetica Neue', sans-serif;
}

li {
Expand Down Expand Up @@ -79,4 +79,4 @@ li {
border: 1px solid transparent;
border-radius: 40px;
padding: .6rem 1.4rem;
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oc-updater",
"productName": "OpenCore Updater",
"version": "1.3.0",
"version": "1.3.1",
"description": "OpenCore Updater",
"main": "dist/index.js",
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions reset_build_num.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
const fs = require('fs');
let file = JSON.parse(fs.readFileSync('electron-builder.json', 'utf8'));
file.buildNumber = "0";
fs.writeFileSync('electron-builder.json', JSON.stringify(file, null, 4));

0 comments on commit c364bb5

Please sign in to comment.