Skip to content

Commit 4f45a14

Browse files
committed
Update about and resume. Add flutter doctor to GH actions flow.
1 parent 2deb371 commit 4f45a14

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

.github/workflows/build.yml

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
with:
3636
# The Flutter build release channel
3737
channel: stable
38+
- name: Flutter doctor
39+
run: flutter doctor -v
3840
- name: Fetch dependencies
3941
run: flutter pub get
4042
# - name: Run Tests

.vscode/settings.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@
1414
"cSpell.ignoreWords": [
1515
"Hori",
1616
"XCRCBL"
17-
]
17+
],
18+
"yaml.schemas": {
19+
"https://json.schemastore.org/github-workflow.json": "file:///home/ashutosh/Projects/Flutter%20Apps/portfolio/.github/workflows/build.yml"
20+
}
1821
}

lib/about/contact.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Contact extends StatelessWidget {
2222
contactIcon(
2323
iconData: FontAwesomeIcons.briefcase,
2424
url:
25-
"https://my-portfolio-ashutosh-singh.s3.ap-south-1.amazonaws.com/resume_ashutosh_singh.pdf",
25+
"https://my-portfolio-ashutosh-singh.s3.ap-south-1.amazonaws.com/Ashutosh_Resume.pdf",
2626
tooltip: "Ashutosh's Resume",
2727
),
2828
contactIcon(

lib/generated/intl/messages_en.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class MessageLookup extends MessageLookupByLibrary {
3232
final messages = _notInlinedMessages(_notInlinedMessages);
3333
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
3434
"aboutDesc": MessageLookupByLibrary.simpleMessage(
35-
"I am Ashutosh Singh, also known by the username thecodepapaya, currently pursuing my bachelor\'s degree majoring in computer science from Indian Institiute of Information Technology, Vadodara."),
35+
"I am Ashutosh Singh, also known by the username thecodepapaya, freshly graduated from Indian Institute of Information Technology Vadodara. I love building delightful user experiences and system verticals."),
3636
"aboutGreeting": m0,
3737
"blogMinutes": MessageLookupByLibrary.simpleMessage("Min"),
3838
"footerCredit": MessageLookupByLibrary.simpleMessage(

lib/generated/l10n.dart

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/l10n/intl_en.arb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"aboutDesc": "I am Ashutosh Singh, also known by the username thecodepapaya, currently pursuing my bachelor's degree majoring in computer science from Indian Institiute of Information Technology, Vadodara.",
2+
"aboutDesc": "I am Ashutosh Singh, also known by the username thecodepapaya, freshly graduated from Indian Institute of Information Technology Vadodara. I love building delightful user experiences and system verticals.",
33
"aboutGreeting": "{greeting, select, em {Good morning, early bird} m {Good Morning} a {Good Afternoon} e {Good Evening} n {Hi there, night owl} other {Hello}}. I'm ",
44
"blogMinutes": "Min",
55
"footerCredit": "Based on designs by Nicolas Meuzard",

0 commit comments

Comments
 (0)