Skip to content

Commit

Permalink
fix: Accidentally removed disable_auto_dpi_sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
itssimple committed Apr 14, 2022
1 parent dafb7b4 commit cdcd5c5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
1 change: 0 additions & 1 deletion CreateNewPackage.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Remove-Item .\destiny2-tracker.opk, .\destiny2-tracker.zip -ErrorAction Ignore
Write-Output "Compressing new version into archive, please hold on"
#Compress-Archive -Path .\manifest.json,.\resources,.\windows -DestinationPath .\game-time-tracker.zip
7z a -tzip .\destiny2-tracker.opk -r @package-source.lst -xr!node_modules -xr!src
Write-Output "New OPK generated"
5 changes: 4 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
"desktop_only": false,
"transparent": true,
"resizable": false,
"disable_auto_dpi_sizing": true,
"min_size": {
"width": 450,
"height": 400
Expand All @@ -61,7 +62,8 @@
"in_game_only": false,
"is_background_page": false,
"background_optimization": false,
"restrict_to_game_bounds": false
"restrict_to_game_bounds": false,
"disable_auto_dpi_sizing": true
},
"mainWindow": {
"file": "resources/compiled/windows/main-window.html",
Expand All @@ -72,6 +74,7 @@
"transparent": true,
"resizable": false,
"keep_window_location": true,
"disable_auto_dpi_sizing": true,
"min_size": {
"width": 1366,
"height": 750
Expand Down
5 changes: 4 additions & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
"desktop_only": false,
"transparent": true,
"resizable": false,
"disable_auto_dpi_sizing": true,
"min_size": {
"width": 450,
"height": 400
Expand All @@ -61,7 +62,8 @@
"in_game_only": false,
"is_background_page": false,
"background_optimization": false,
"restrict_to_game_bounds": false
"restrict_to_game_bounds": false,
"disable_auto_dpi_sizing": true
},
"mainWindow": {
"file": "resources/compiled/windows/main-window.html",
Expand All @@ -72,6 +74,7 @@
"transparent": true,
"resizable": false,
"keep_window_location": true,
"disable_auto_dpi_sizing": true,
"min_size": {
"width": 1366,
"height": 750
Expand Down

0 comments on commit cdcd5c5

Please sign in to comment.