Skip to content

Commit a2de4a6

Browse files
committed
fixed UI bugs and faulty icons
1 parent bdbb75b commit a2de4a6

34 files changed

+60
-17
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ I know, using a Wrapper-App to display a Website can feel a bit odd. But there a
2828
- customize the colors
2929
- tweak the other options as you prefer
3030
- Put your own App icons in place in `Assets.xcassets`
31-
- Remember, 1pt equals 1px on 1x-size. E.g., if you have to provide a 20pt icon in 3x-size, it has to be 60x60px.
31+
- Remember, 1pt equals 1px on 1x-size. E.g., if you have to provide a 20pt icon of 3x-size, it has to be 60x60px.
32+
- iOS doesn't like transparency, use background colors.
3233
- I like using [App Icon Maker](http://appiconmaker.co), but any other similar service will do it as well.
34+
- Don't forget the `launcher` icon!
3335
- Change _Bundle Identifier_ and _Display Name_
3436
- Build App in Xcode
3537

ios-pwa-wrapper.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
2D504C111FA100E20019B279 /* ios_pwa_wrapperUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ios_pwa_wrapperUITests.swift; sourceTree = "<group>"; };
5050
2D504C131FA100E20019B279 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5151
2D64358A1FA62B5800ECC5D2 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Main.strings; sourceTree = "<group>"; };
52+
2D9480D21FA8B96000ED0A97 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Main.strings; sourceTree = "<group>"; };
5253
2DC96ADD1FA5DD32006B5881 /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
5354
/* End PBXFileReference section */
5455

@@ -306,6 +307,7 @@
306307
children = (
307308
2D504BF31FA100E20019B279 /* Base */,
308309
2D64358A1FA62B5800ECC5D2 /* en */,
310+
2D9480D21FA8B96000ED0A97 /* de */,
309311
);
310312
name = Main.storyboard;
311313
sourceTree = "<group>";
@@ -325,6 +327,7 @@
325327
isa = XCBuildConfiguration;
326328
buildSettings = {
327329
ALWAYS_SEARCH_USER_PATHS = NO;
330+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
328331
CLANG_ANALYZER_NONNULL = YES;
329332
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
330333
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
@@ -382,6 +385,7 @@
382385
isa = XCBuildConfiguration;
383386
buildSettings = {
384387
ALWAYS_SEARCH_USER_PATHS = NO;
388+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
385389
CLANG_ANALYZER_NONNULL = YES;
386390
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
387391
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";

ios-pwa-wrapper/Assets.xcassets/AppIcon.appiconset/Contents.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
{
1616
"size" : "29x29",
1717
"idiom" : "iphone",
18-
"filename" : "Icon-58.png",
18+
"filename" : "Icon-59.png",
1919
"scale" : "2x"
2020
},
2121
{
@@ -69,7 +69,7 @@
6969
{
7070
"size" : "29x29",
7171
"idiom" : "ipad",
72-
"filename" : "Icon-59.png",
72+
"filename" : "Icon-58.png",
7373
"scale" : "2x"
7474
},
7575
{
-10.5 KB
Loading
-1.86 KB
Loading
-1.86 KB
Loading
-2.33 KB
Loading
-2.29 KB
Loading
-2.34 KB
Loading
-131 Bytes
Loading

0 commit comments

Comments
 (0)