Skip to content

Commit

Permalink
Merge pull request #31 from PLGuerraDesigns/dev
Browse files Browse the repository at this point in the history
Bug Fixes & General Improvements
  • Loading branch information
PLGuerraDesigns authored Aug 9, 2024
2 parents 4c77340 + 2d8f039 commit 19b80ad
Show file tree
Hide file tree
Showing 20 changed files with 148 additions and 454 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 2.5.1

- NEW: Added YouTube channel to list of social media buttons.
- FIX: Fixed issue with app version number not displaying after loading while on the home page.
- REVISED: Relocated View Source Code button to the action menu.
- REVISED: Updated the media browser thumbnails for YouTube and local videos.

## 2.5.0

- NEW: Added the app version number to the action menu.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<img src="https://raw.githubusercontent.com/PLGuerraDesigns/portfolio/master/web/icons/Icon-192.png" alt="Icon" width="100" height="100" style="margin-right: 10px;">
<h1 style="margin: 0;">Pablo L. Guerra's Portfolio Web-App</h1>
</div>
</br>
<br />

This web app is a portfolio of my work, projects, and research. </br>
This web app is a portfolio of my work, projects, and research. <br />
You can find relevant publications, documents, source code, images, videos, and more here.

It is a static web app built using the [Flutter framework](https://flutter.dev/) and hosted on [GitHub Pages](https://pages.github.com/). </br>
It is a static web app built using the [Flutter framework](https://flutter.dev/) and hosted on [GitHub Pages](https://pages.github.com/). <br />

You can access the web app here: [https://plguerradesigns.github.io/portfolio](https://plguerradesigns.github.io/portfolio)

Expand All @@ -21,7 +21,7 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
[![dart-pad.gif](https://i.postimg.cc/brNDxMJQ/dart-pad.gif)](https://dartpad.dev/?id=5c0e154dd50af4a9ac856908061291bc&sample=counter)

</details>
</br>
<br />
<strong>Some notable features include:</strong>

- Dark and light mode, with a toggle button
Expand Down Expand Up @@ -204,7 +204,7 @@ Try Flutter directly in your browser using [DartPad](https://dartpad.dev/?id=5c0
[![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)

The development of this web app is ongoing and follows an iterative process known as Continuous Integration/Continuous Deployment (CI/CD). </br>
The development of this web app is ongoing and follows an iterative process known as Continuous Integration/Continuous Deployment (CI/CD). <br />

![CI/CD Pipeline](https://www.synopsys.com/glossary/what-is-cicd/_jcr_content/root/synopsyscontainer/column_1946395452_co/colRight/image_copy.coreimg.svg/1663683682045/cicd.svg)

Expand Down
Binary file added assets/images/icons/youtube.webp
Binary file not shown.
5 changes: 3 additions & 2 deletions lib/common/asset_paths.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
class AssetPaths {
AssetPaths._();

static const String socialIconsBase = 'assets/images/icons';

static const String projectsJsonData = 'assets/json/projects.json';
static const String professionalExperienceJsonData =
'assets/json/professional_experience.json';
Expand All @@ -15,4 +13,7 @@ class AssetPaths {
'assets/images/home/professional.webp';
static const String personalExperiencePhoto =
'assets/images/home/personal.webp';

static String socialMediaIcon(String socialMedia) =>
'assets/images/icons/$socialMedia.webp';
}
69 changes: 0 additions & 69 deletions lib/common/color_schemes.dart

This file was deleted.

3 changes: 2 additions & 1 deletion lib/common/strings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class Strings {
static const String show = 'Show';
static const String github = 'GitHub';
static const String thingiverse = 'Thingiverse';
static const String youtube = 'YouTube';
static const String linkedin = 'LinkedIn';
static const String poweredByFlutter = 'Powered by Flutter';
static const String professional = 'Professional';
Expand All @@ -31,7 +32,7 @@ class Strings {
static const String prev = 'Prev.';
static const String next = 'Next';
static const String viewAllMedia = 'View all Media';
static const String viewSourceCode = 'View the Source Code';
static const String viewSourceCode = 'View Source Code';
static const String professionalExperiences = 'Professional Experiences';
static const String previousProject = 'Previous Project';
static const String nextProject = 'Next Project';
Expand Down
235 changes: 0 additions & 235 deletions lib/common/theme.dart

This file was deleted.

3 changes: 3 additions & 0 deletions lib/common/urls.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@ class Urls {
'https://github.com/PLGuerraDesigns/portfolio/issues';
static const String projectSourceCode =
'https://github.com/PLGuerraDesigns/portfolio';
static const String changelog =
'https://github.com/PLGuerraDesigns/portfolio/blob/master/CHANGELOG.md';

static const String github = 'https://github.com/PLGuerraDesigns';
static const String thingiverse =
'https://www.thingiverse.com/plg_designs/designs';
static const String linkedin = 'https://www.linkedin.com/in/plguerra/';
static const String youtube = 'https://www.youtube.com/@plguerra';
static const String contactEmail = 'mailto:plguerra@outlook.com';

static const String googleSearchBase = 'https://www.google.com/search?q=';
Expand Down
Loading

0 comments on commit 19b80ad

Please sign in to comment.