Skip to content

Commit

Permalink
fix: Added new size of Screenshot.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrunet committed Jul 21, 2023
1 parent 41d0178 commit 0069e6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/katana_cli/lib/action/app/spread_sheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ final _mapping = [
"screenshot_5.5",
"screenshot_6.5",
"screenshot_tablet",
"screenshot_6.7",
"copyright",
];

/// Set the application information from the spreadsheet.
Expand Down
2 changes: 2 additions & 0 deletions packages/katana_cli/lib/command/store/screenshot.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ const _resolution = <String, Map<String, _Size>>{
"icon": _Size(512, 512),
"iphone5.5": _Size(1242, 2208),
"iphone6.5": _Size(1284, 2778),
"iphone6.7": _Size(1290, 2796),
"ipad": _Size(2048, 2732),
"purchase": _Size(640, 920),
},
"landscape": {
"icon": _Size(512, 512),
"iphone5.5": _Size(2208, 1242),
"iphone6.5": _Size(2778, 1284),
"iphone6.7": _Size(2796, 1290),
"ipad": _Size(2732, 2048),
"purchase": _Size(920, 640),
},
Expand Down

0 comments on commit 0069e6f

Please sign in to comment.