Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mode": "pre",
"tag": "alpha",
"initialVersions": {
"portfolio": "1.0.4"
},
"changesets": []
}
46 changes: 46 additions & 0 deletions .changeset/release-1780375502.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
"portfolio": patch
---

- chore(deps): remove unused dependencies and clean up boilerplate form component
- feat(seo): optimize dynamic sitemap routes and allow explicit robots indexing
- ui(footer): elevate and polish site footer layout and typography
- style(projects): format imports according to project conventions
- ui(projects): replace collapsible with link redirecting to projects page on home
- feat(projects): add github repository links to list and case study pages
- refactor(llm): optimize routing and format split for llms endpoints
- chore: formatting and metadata improvements across blog and gallery pages
- docs(projects): add mdx case studies for newly integrated projects
- ui(projects): restore collapsible list with sorted chronological categories and simple framed cover
- ui(mdx): integrate iphone device mockup component and mdx showcase utility
- ui(gallery): create dynamic gallery route with animated masonry grid
- fix(routing): set dynamicParams to true for dynamic documents loading
- docs(blog): add 10 advanced tailwind and shadcn ui libraries post
- ui(social): configure whatsapp link with E.164 phone number and predefined message
- add works and projects images and assets
- style(style): format github-contributions.ts
- style(components): format avatar-lights.tsx
- style(app): format profile-header.tsx
- style(app): format profile-cover.tsx
- style(app): format index.tsx
- fix(profile): nest flip sentences children correctly to resolve eslint error
- ui(experiences): add local company logo image files
- ui(experiences): link local image logos for unity link and devia technologies
- ui(experiences): add work experiences for unity link and devia technologies
- fix(github): improve contribution graph colors and data fetching robustness
- ui(social): add reddit and bluesky with local svg icons
- ui(profile): integrate flip sentences into header metadata box
- ui(profile): remove bio description and use premium square contact button
- ui(cover): remove central logo and integrate minimal cyber-premium status badges
- refactor(profile): simplify Overview component to render occupations exclusively
- ui(profile): redesign ProfileHeader into premium X-style profile layout
- ui(avatar): support square shape variants with rounded corners
- style(style): format vendure-headless-commerce.mdx
- style(style): format shoperzz-open-source-commerce-engine.mdx
- style(style): format magicui-inspiration.mdx
- docs(blog): remove legacy template blog posts
- docs(blog): add magicui inspiration blog post
- docs(blog): add vendure headless commerce blog post
- docs(blog): add shoperzz open source commerce engine blog post
- ui(blog): render cover image using FramedImage under description
- feat(release): generate cumulative stable release notes since last stable tag
7 changes: 7 additions & 0 deletions .changeset/release-1780447029.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"portfolio": patch
---

- release: switch 1.0.4 from Stable to alpha
- style(style): format release-1780375502.md
- release: 1.0.4
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.4",
"description": "My personal hub, portfolio & blog. A place to document my projects, technical notes, and web development journey. ",
"homepage": "https://wistant.me",
"license": "GNU",
"license": "GPL-3.0-only",
"contributors": [
{
"name": "Wistant Kode",
Expand Down
35 changes: 30 additions & 5 deletions tooling/make-release-description.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ COMMITS=$(git log "$LOG_RANGE" --pretty=format:"%s ||| %ae ||| %h" --no-merges 2
declare -A CATEGORIES=(
["feat"]="Features"
["fix"]="Bug Fixes"
["ui"]="UI / Design"
["style"]="Style & Formatting"
["docs"]="Documentation"
["ci"]="CI / Infrastructure"
["refactor"]="Refactoring"
Expand Down Expand Up @@ -91,13 +93,36 @@ while IFS= read -r line; do
fi
fi

# Extract type prefix (feat, fix, etc.)
TYPE=$(echo "$SUBJECT" | grep -oP '^[a-z]+(?=[\(!\:])' || echo "other")
# Extract type, scope, and clean subject using regex
REGEX='^([a-z]+)(\(([^)]+)\))?(!?):[[:space:]]*(.+)$'
if [[ "$SUBJECT" =~ $REGEX ]]; then
TYPE="${BASH_REMATCH[1]}"
SCOPE="${BASH_REMATCH[3]:-}"
IS_BREAKING="${BASH_REMATCH[4]:-}"
CLEAN_SUBJECT="${BASH_REMATCH[5]}"
else
TYPE="other"
SCOPE=""
IS_BREAKING=""
CLEAN_SUBJECT="$SUBJECT"
fi

# Format subject with scope if present
FORMATTED_MSG=""
if [[ -n "$SCOPE" ]]; then
FORMATTED_MSG="**${SCOPE}**: ${CLEAN_SUBJECT}"
else
FORMATTED_MSG="${CLEAN_SUBJECT}"
fi

if [[ -n "$IS_BREAKING" ]]; then
FORMATTED_MSG="💥 [BREAKING] ${FORMATTED_MSG}"
fi

if [[ -n "$PR_NUM" ]]; then
ENTRY="- ${HASH} - ${SUBJECT} by @${AUTHOR} in #${PR_NUM}"
ENTRY="- ${HASH} - ${FORMATTED_MSG} by @${AUTHOR} in #${PR_NUM}"
else
ENTRY="- ${HASH} - ${SUBJECT} by @${AUTHOR}"
ENTRY="- ${HASH} - ${FORMATTED_MSG} by @${AUTHOR}"
fi

if [[ -n "${CATEGORIES[$TYPE]+x}" ]]; then
Expand All @@ -114,7 +139,7 @@ done <<< "$COMMITS"
echo ""

# Output in a defined order
for TYPE in feat fix refactor ci docs build test perf chore release other; do
for TYPE in feat fix ui style refactor ci docs build test perf chore release other; do
if [[ -n "${BUCKETS[$TYPE]+x}" && -n "${BUCKETS[$TYPE]}" ]]; then
echo "### ${CATEGORIES[$TYPE]}"
echo "${BUCKETS[$TYPE]}"
Expand Down
28 changes: 27 additions & 1 deletion tooling/release/make-release-description.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,33 @@ while IFS= read -r line; do
AUTHOR_USER="wistant"
fi

echo "$HASH: - $SUBJECT — by @$AUTHOR_USER" >> "$OUTPUT_FILE"
# Extract type, scope, and clean subject using regex
REGEX='^([a-z]+)(\(([^)]+)\))?(!?):[[:space:]]*(.+)$'
if [[ "$SUBJECT" =~ $REGEX ]]; then
TYPE="${BASH_REMATCH[1]}"
SCOPE="${BASH_REMATCH[3]:-}"
IS_BREAKING="${BASH_REMATCH[4]:-}"
CLEAN_SUBJECT="${BASH_REMATCH[5]}"
else
TYPE="other"
SCOPE=""
IS_BREAKING=""
CLEAN_SUBJECT="$SUBJECT"
fi

# Format subject with scope if present
FORMATTED_MSG=""
if [[ -n "$SCOPE" ]]; then
FORMATTED_MSG="**${SCOPE}**: ${CLEAN_SUBJECT}"
else
FORMATTED_MSG="${CLEAN_SUBJECT}"
fi

if [[ -n "$IS_BREAKING" ]]; then
FORMATTED_MSG="💥 [BREAKING] ${FORMATTED_MSG}"
fi

echo "$HASH: - [$TYPE] $FORMATTED_MSG — by @$AUTHOR_USER" >> "$OUTPUT_FILE"
done <<< "$COMMITS"

echo "" >> "$OUTPUT_FILE"
Expand Down
Loading