-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Features - **Add about page** - **Add i18n support** - **Add new blog post (zBLtyQby) (en/pt)** - **Add project details page** - Add trailing slash to rss url - Add og:image:alt meta to layout - Add background pattern effect - Add title option to Description - Add dark/light icon toggle - Add Tooltip to ThemeIcon - Add Tooltip to Socials - Add position option to Tooltip - Add mobile menu to Header - Add Tooltip to Footer links - Add description to index page - Add title to PostCard description - Add `@iconify-json/tabler` package - Add optional Tooltip message - Add `showName` and `showTooltip` to Socials component - Add accesskey to ThemeIcon tooltip message - Add justifyContent option to Socials component - Add icon toggle in mobile view - Add project status to ProjectCard - Add copy email button to 404 page - Add width to PostComments component - Add image slider to ProjectCard - Add sections to home page - Add new open graph generator - Add title attribute to remark-image-caption - Add z-index to header nav - Add wrapContent option to Tags component - Add opacity to ProjectCardSlider - Add remark-slider package ### Changes - Increase Description font size - Increase mobile menu icon size - Replace stackoverflow with email in socials - Replace Table of Contents with Summary - Update 404 page - Update index page layout - Update copyright year - Update dependencies - Update Layout component to support new open graph - Update headConfig fields - Update table structure in articles - Update tags and category title page - Update remark toc and collapse to support i18n - Update remark-code-highlight package - Update website static content - Remove MiniPostCard - Remove `time-ago` toggle/package - Enable script: experimental flag - Disable open graph in category and tag pages - Reduce scrollbar width - Move PostUpdatedAt to top ### Fixes - Wrong width in LinkBox component - Wrong heading structure in hello-world post - Wrong "Read more" button in PostCard *Bump version to 1.13.0*
- Loading branch information
Showing
132 changed files
with
7,069 additions
and
1,509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,10 @@ | |
dist/ | ||
.output/ | ||
|
||
# satori-og | ||
.fonts/ | ||
**/open-graph/*.png | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
{ | ||
"name": "@lucjosin/lucasjosino.com", | ||
"packageManager": "[email protected]", | ||
"version": "1.12.0", | ||
"version": "1.13.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "astro dev", | ||
"start": "astro dev", | ||
"build": "astro build", | ||
"preview": "astro preview", | ||
"astro": "astro" | ||
"astro": "astro", | ||
"sync": "astro sync", | ||
"clean": "rm -rf ./dist", | ||
"og:clean": "rm -rf ./public/static/open-graph/*.png" | ||
}, | ||
"devDependencies": { | ||
"@adapttive/remark-responsive-tables": "^1.0.1", | ||
|
@@ -19,30 +22,30 @@ | |
"@lucjosin/remark-image-caption": "./plugins/remark-image-caption", | ||
"@lucjosin/remark-post-reference": "./plugins/remark-post-reference", | ||
"@lucjosin/remark-readme-stats": "./plugins/remark-readme-stats", | ||
"@lucjosin/remark-slider": "./plugins/remark-slider", | ||
"@typescript-eslint/eslint-plugin": "^6.8.0", | ||
"@typescript-eslint/parser": "^6.8.0", | ||
"astro": "^4.10.1", | ||
"astro-compress": "^2.2.27", | ||
"astro-expressive-code": "^0.35.3", | ||
"astro-icon": "^1.1.0", | ||
"astro": "^4.16.8", | ||
"astro-compress": "^2.3.5", | ||
"astro-expressive-code": "^0.38.1", | ||
"astro-icon": "^1.1.1", | ||
"astro-rename": "^1.1.2", | ||
"astro-robots-txt": "^1.0.0", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-astro": "^0.31.4", | ||
"javascript-time-ago": "^2.5.10", | ||
"prettier": "^3.3.1", | ||
"prettier-plugin-astro": "^0.14.0", | ||
"prettier": "^3.3.3", | ||
"prettier-plugin-astro": "^0.14.1", | ||
"rehype-autolink-headings": "^7.1.0", | ||
"rehype-external-links": "^3.0.0", | ||
"rehype-slug": "^6.0.0", | ||
"remark-collapse": "^0.1.2", | ||
"remark-numbered-footnote-labels": "^1.1.0", | ||
"remark-toc": "^9.0.0", | ||
"satori": "^0.10.13", | ||
"satori-html": "^0.3.2", | ||
"satori": "^0.11.3", | ||
"satori-og": "^1.0.0", | ||
"svgo": "2.8.0", | ||
"typescript": "^5.4.5" | ||
"typescript": "^5.6.3" | ||
}, | ||
"dependencies": { | ||
"@astrojs/react": "3.0.10", | ||
|
@@ -51,11 +54,12 @@ | |
"@iconify-json/ic": "^1.1.17", | ||
"@iconify-json/mdi": "^1.1.64", | ||
"@iconify-json/simple-icons": "^1.1.93", | ||
"@iconify-json/tabler": "^1.1.118", | ||
"@resvg/resvg-js": "^2.5.0", | ||
"@swup/astro": "^1.3.2", | ||
"@types/react": "^18.2.29", | ||
"@types/react-dom": "^18.2.14", | ||
"astro-meta-tags": "^0.3.0", | ||
"astro-meta-tags": "^0.3.1", | ||
"medium-zoom": "^1.1.0", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "@lucjosin/remark-slider", | ||
"version": "1.0.0", | ||
"type": "module", | ||
"author": { | ||
"name": "Lucas Josino", | ||
"username": "LucJosin", | ||
"email": "[email protected]", | ||
"url": "https://lucasjosino.com" | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
"registry": "https://registry.npmjs.org" | ||
}, | ||
"homepage": "https://github.com/LucJosin/lucasjosino.com", | ||
"bugs": { | ||
"url": "https://github.com/LucJosin/lucasjosino.com", | ||
"email": "[email protected]" | ||
}, | ||
"license": "MIT", | ||
"keywords": [ | ||
"remark-plugin", | ||
"remark-slider" | ||
], | ||
"main": "src/index.js", | ||
"dependencies": { | ||
"unist-util-visit": "^5.0.0" | ||
} | ||
} |
Oops, something went wrong.