Skip to content

Commit

Permalink
Fix: Set minimum macOS supported version
Browse files Browse the repository at this point in the history
  • Loading branch information
ollm committed May 13, 2024
1 parent a17bbfe commit 9ba9c1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@
],
"icon": "images/icon-mac.icns",
"category": "public.app-category.graphics-design",
"provisioningProfile": "build/OpenComic_Provisioning_Profile_2023_11.provisionprofile"
"provisioningProfile": "build/OpenComic_Provisioning_Profile_2023_11.provisionprofile",
"minimumSystemVersion": "10.15.0"
},
"mas": {
"type": "distribution",
Expand Down
2 changes: 1 addition & 1 deletion scripts/dom.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function orderBy(a, b, mode, key = false, key2 = false)

for(let i = 0, len = Math.min(matchA.length, matchB.length); i < len; i++)
{
if(isNaN(matchA[i]+matchB[i]) || isNaN(matchB[i]))
if(isNaN(matchA[i]) || isNaN(matchB[i]))
{
if(matchA[i] > matchB[i]) return 1;
if(matchA[i] < matchB[i]) return -1;
Expand Down

0 comments on commit 9ba9c1e

Please sign in to comment.