diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6b2a36f..8d8b026 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 2.5.2
+
+- FIX: Fixed social media icons not displaying due to case sensitivity in the file path.
+
## 2.5.1
- NEW: Added YouTube channel to list of social media buttons.
diff --git a/README.md b/README.md
index 59ecb61..13b715c 100644
--- a/README.md
+++ b/README.md
@@ -40,6 +40,7 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
- relevant institutions/organizations/companies
- the source code of the web app
- the project issue tracker
+ - the project change log
- A contact button that opens an email client with my email address
## Showcase
@@ -48,19 +49,19 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
v2.5.0
-Desktop
+Dark Mode
- Dark Mode |
- Light Mode |
+ Desktop |
+ Mobile |
|
-
+
|
@@ -68,7 +69,7 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
-
+
|
@@ -76,7 +77,7 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
-
+
|
@@ -84,35 +85,35 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
-Mobile
+Light Mode
- Dark Mode |
- Light Mode |
+ Desktop |
+ Mobile |
-
+
|
-
+
|
-
+
|
-
+
|
-
+
|
-
+
|
@@ -129,14 +130,13 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
Desktop |
Mobile |
-
|
-
+
|
@@ -144,7 +144,7 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
-
+
|
@@ -152,7 +152,7 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
-
+
|
@@ -160,7 +160,7 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
-
+
|
@@ -168,7 +168,7 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
-
+
|
@@ -176,14 +176,14 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
-
+
|
|
-
+
|
@@ -191,7 +191,7 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
-
+
|
@@ -200,7 +200,7 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
## Development Notes
-![Build and Release](https://github.com/plguerradesigns/portfolio/actions/workflows/main.yml/badge.svg)
+[![Build and Release](https://github.com/plguerradesigns/portfolio/actions/workflows/main.yml/badge.svg)](https://github.com/PLGuerraDesigns/portfolio/actions/workflows/main.yml)
[![Bugs](https://img.shields.io/github/issues/plguerradesigns/portfolio/bug?label=Bugs)](https://github.com/PLGuerraDesigns/portfolio/issues?q=is%3Aissue+is%3Aopen)
[![Enhancements](https://img.shields.io/github/issues/plguerradesigns/portfolio/enhancement?label=Enhancements)](https://github.com/PLGuerraDesigns/portfolio/issues?q=is%3Aissue+is%3Aopen)
@@ -210,8 +210,8 @@ The development of this web app is ongoing and follows an iterative process know
There are three main branches in this repository:
-- `master`: The main branch is the default branch and is protected. It contains the latest stable version of the web app.
-- `dev`: The development branch is where new features are added and tested. It is merged into the main branch after testing.
+- `master`: The master branch is the default branch and is protected. It contains the latest stable version of the web app.
+- `dev`: The development branch is where new features are added and tested. It is merged into the master branch after testing.
- `published`: The published branch contains the latest build of the web app. This branch is used to host the web app on GitHub Pages.
The CI/CD pipeline is implemented using [GitHub Actions](https://github.com/features/actions). The pipeline consists of the following stages:
diff --git a/lib/common/asset_paths.dart b/lib/common/asset_paths.dart
index 6359fb9..54367d4 100644
--- a/lib/common/asset_paths.dart
+++ b/lib/common/asset_paths.dart
@@ -15,5 +15,5 @@ class AssetPaths {
'assets/images/home/personal.webp';
static String socialMediaIcon(String socialMedia) =>
- 'assets/images/icons/$socialMedia.webp';
+ 'assets/images/icons/${socialMedia.toLowerCase()}.webp';
}
diff --git a/pubspec.yaml b/pubspec.yaml
index b435052..0a03c8a 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,7 +1,7 @@
name: plg_portfolio
description: Pablo L. Guerra's web-app portfolio powered by Flutter.
publish_to: "none"
-version: 2.5.1+55
+version: 2.5.2+56
environment:
sdk: ">=3.1.1 <4.0.0"