Skip to content

Commit 5cb102d

Browse files
authored
Merge pull request #159 from codingpot/feat-add-logo
feat: replace the logo
2 parents 4edbd38 + 5e9e0ec commit 5cb102d

31 files changed

+49
-8
lines changed
Loading
Loading
Loading
Loading
Loading

client/ios/Runner.xcodeproj/project.pbxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -536,4 +536,4 @@
536536
/* End XCConfigurationList section */
537537
};
538538
rootObject = 97C146E61CF9000F007C117D /* Project object */;
539-
}
539+
}
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

client/pubspec.lock

+29-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ packages:
2828
name: args
2929
url: "https://pub.dartlang.org"
3030
source: hosted
31-
version: "2.1.1"
31+
version: "2.0.0"
3232
async:
3333
dependency: "direct main"
3434
description:
@@ -235,6 +235,13 @@ packages:
235235
url: "https://pub.dartlang.org"
236236
source: hosted
237237
version: "5.3.2"
238+
flutter_launcher_icons:
239+
dependency: "direct dev"
240+
description:
241+
name: flutter_launcher_icons
242+
url: "https://pub.dartlang.org"
243+
source: hosted
244+
version: "0.9.0"
238245
flutter_test:
239246
dependency: "direct dev"
240247
description: flutter
@@ -320,6 +327,13 @@ packages:
320327
url: "https://pub.dartlang.org"
321328
source: hosted
322329
version: "4.0.0"
330+
image:
331+
dependency: transitive
332+
description:
333+
name: image
334+
url: "https://pub.dartlang.org"
335+
source: hosted
336+
version: "3.0.2"
323337
intl:
324338
dependency: "direct main"
325339
description:
@@ -474,6 +488,13 @@ packages:
474488
url: "https://pub.dartlang.org"
475489
source: hosted
476490
version: "1.11.0"
491+
petitparser:
492+
dependency: transitive
493+
description:
494+
name: petitparser
495+
url: "https://pub.dartlang.org"
496+
source: hosted
497+
version: "4.1.0"
477498
platform:
478499
dependency: transitive
479500
description:
@@ -850,6 +871,13 @@ packages:
850871
url: "https://pub.dartlang.org"
851872
source: hosted
852873
version: "0.2.0"
874+
xml:
875+
dependency: transitive
876+
description:
877+
name: xml
878+
url: "https://pub.dartlang.org"
879+
source: hosted
880+
version: "5.1.2"
853881
yaml:
854882
dependency: transitive
855883
description:

client/pubspec.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,20 @@ dev_dependencies:
4444
change_app_package_name: ^1.0.0
4545
flutter_driver:
4646
sdk: flutter
47+
flutter_launcher_icons: ^0.9.0
4748
flutter_test:
4849
sdk: flutter
4950
lint: ^1.5.3
5051
mockito: ^5.0.9
5152
test: any
5253

54+
# Generate icons for Android and iOS using the following command.
55+
# flutter pub run flutter_launcher_icons:main
56+
flutter_icons:
57+
android: true
58+
ios: true
59+
image_path: "web/icons/icon-512.png"
60+
5361
# For information on the generic Dart part of this file, see the
5462
# following page: https://dart.dev/tools/pub/pubspec
5563

client/web/favicon.png

-484 Bytes
Loading

client/web/icons/Icon-192.png

-5.17 KB
Binary file not shown.

client/web/icons/Icon-512.png

-8.06 KB
Binary file not shown.

client/web/icons/icon-128.png

2.67 KB
Loading

client/web/icons/icon-256.png

5.33 KB
Loading

client/web/icons/icon-512.png

11 KB
Loading

client/web/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<meta name="apple-mobile-web-app-capable" content="yes">
2222
<meta name="apple-mobile-web-app-status-bar-style" content="black">
2323
<meta name="apple-mobile-web-app-title" content="pr12er">
24-
<link rel="apple-touch-icon" href="icons/Icon-192.png">
24+
<link rel="apple-touch-icon" href="icons/icon-128.png">
2525

2626
<title>pr12er</title>
2727
<link rel="manifest" href="manifest.json">
@@ -95,4 +95,4 @@
9595
}
9696
</script>
9797
</body>
98-
</html>
98+
</html>

client/web/manifest.json

+9-4
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,22 @@
55
"display": "standalone",
66
"background_color": "#0175C2",
77
"theme_color": "#0175C2",
8-
"description": "A new Flutter project.",
8+
"description": "PR12er makes watching PR12 easy",
99
"orientation": "portrait-primary",
1010
"prefer_related_applications": false,
1111
"icons": [
1212
{
13-
"src": "icons/Icon-192.png",
14-
"sizes": "192x192",
13+
"src": "icons/icon-128.png",
14+
"sizes": "128x128",
1515
"type": "image/png"
1616
},
1717
{
18-
"src": "icons/Icon-512.png",
18+
"src": "icons/icon-256.png",
19+
"sizes": "256x256",
20+
"type": "image/png"
21+
},
22+
{
23+
"src": "icons/icon-512.png",
1924
"sizes": "512x512",
2025
"type": "image/png"
2126
}

0 commit comments

Comments
 (0)