Commit Graph
100 Commits
Author SHA1 Message Date
Valentin Popov ff28f7d12c chore: add Renovate configuration and workflows
RenovateBot / renovate (push) Successful in 23s
Test / npm test (push) Has been cancelled
- Introduced .renovaterc for Renovate settings.
- Added renovate.config.cjs for Gitea integration.
- Created .gitea/workflows/renovate.yml for daily Renovate runs.
- Added .gitea/workflows/test.yml for CI testing.
- Removed outdated GitHub workflows and configuration files.
2026-01-30 17:24:32 +04:00
Valentin Popov f1746adad9 fix: updated the article descriptions 2025-09-02 16:17:33 +04:00
Valentin Popov 333dd6a65c fix: added rel="noopener" for external links 2025-09-02 15:58:28 +04:00
Valentin Popov 15fdeb46f1 chore: update README for consistency
- Removed duplicate line regarding project maintenance to streamline the README content.
2025-06-15 12:22:29 +00:00
Valentin Popov 15795a5337 chore: update GitHub Actions workflow for repository mirroring
- Modified the workflow trigger to include both push and pull request events on the master branch.
- Set permissions for the workflow to allow read access to contents.
2025-06-15 12:02:26 +00:00
Valentin Popov bc4f65c1f6 chore: update README and add GitHub Actions workflow for repository mirroring
- Updated the README to change the read-only mirror link to the new URL.
- Added a GitHub Actions workflow for mirroring the repository to a remote Git repository.
2025-06-15 11:51:56 +00:00
Valentin Popov a81117972d feat: implement Open Graph image generation and enhance configuration
- Added ogImages integration to generate Open Graph images for blog posts.
- Updated configuration to include Open Graph settings and default preview image.
- Refactored Head component to utilize new preview property for Open Graph meta tags.
- Enhanced blog post schema to include preview image for structured data representation.
- Introduced utility functions for creating Open Graph images with dynamic content.
2025-06-14 19:25:16 +00:00
Valentin Popov 3d0f485746 feat: add Open Graph and JSON-LD support to Head component
- Introduced OpenGraph component for enhanced social media sharing with Open Graph meta tags.
- Updated Head component to include OpenGraph and JSON-LD for improved SEO and structured data representation.
- Added comments for better clarity on meta tags and JSON-LD integration.
2025-06-14 12:19:01 +00:00
Valentin Popov 25ebd94466 refactor: remove preview property from blog post schema and configuration
- Eliminated the optional `preview` field from the blog post schema and configuration to streamline data handling.
- Updated the blog post schema to utilize the default image directly from configuration, enhancing consistency in image representation.
2025-06-14 12:12:16 +00:00
Valentin Popov 0473060773 feat: add configuration and default image for blog posts
- Introduced a new configuration file to centralize author information and default image settings for blog posts.
- Added a default image path in the blog post configuration for improved content presentation.
- Updated blog post schema to utilize the new configuration for author details, enhancing structured data representation.
2025-06-14 12:08:48 +00:00
Valentin Popov a65e9c8455 feat: enhance blog post and page schema with new properties
- Added optional `basedOn` field to blog post schema for better content attribution.
- Updated blog post markdown to include `basedOn` reference for improved context.
- Refactored page schema to replace deprecated website schema, enhancing structured data representation.
- Adjusted 404 and index pages to utilize the new page schema for consistency and SEO improvements.
2025-06-14 11:47:17 +00:00
Valentin Popov 17f9a467d7 refactor: update blog post date handling and schema
- Replaced `pubDate` with `datePublished` in blog post components for consistency.
- Updated sorting logic in blog sections to use `datePublished`.
- Enhanced blog post schema to include `dateModified` for better structured data representation.
- Adjusted various blog markdown files to reflect the new date fields.
2025-06-14 11:25:17 +00:00
Valentin Popov 3df02c5304 feat: enhance blog post schema and structure
- Added description and lang parameters to the blogPostSchema for improved structured data.
- Updated the blog post layout to include a header section for better semantic structure and accessibility.
2025-06-14 11:09:34 +00:00
Valentin Popov 9777d996d1 refactor: enhance PostElement structure and update blog schema
- Wrapped the post link in an <article> tag for improved semantic structure.
- Updated blogSchema to include posts for better structured data representation.
- Adjusted the blog index to utilize the new posts parameter for enhanced SEO.
2025-06-14 11:01:42 +00:00
Valentin Popov 1c15151ef5 fix: enhance accessibility by adding role attribute to SVG icons 2025-06-14 10:53:20 +00:00
Valentin Popov 67f245a48f feat: integrate schema.org support and enhance component structure
- Added schema.org support by introducing `schema-dts` for structured data in components.
- Updated `Head`, `BaseLayout`, and various page components to accept and utilize schema props for better SEO.
- Created new utility schemas for blog posts and website to standardize structured data implementation.
- Enhanced the `SocialLinks` section by utilizing dedicated icon components for improved maintainability.
- Refactored the `Header` component to improve accessibility and structure.
- Introduced new icons for social links and integrated them into the layout.
2025-06-11 23:20:36 +00:00
Valentin Popov 16fa8a3b5d feat: enhance accessibility and language support across components
- Updated various components to include `lang` attributes for improved accessibility and SEO.
- Introduced a new `env.d.ts` file to define environment variables for better type safety.
- Adjusted the print width in `.prettierrc.mjs` for improved code formatting.
- Streamlined the `Header`, `PostElement`, and `SocialLinks` components for better structure and clarity.
- Added language support to blog posts and updated the layout to reflect these changes.
2025-06-11 17:49:14 +00:00
Valentin Popov 423344fca5 chore: remove unused environment variables and update layout components
- Deleted the .env and src/env.d.ts files as they are no longer needed.
- Updated BaseLayout to require title and description props directly, ensuring better clarity in component usage.
- Adjusted various pages to pass explicit title and description values, enhancing SEO and user experience.
- Increased print width in .prettierrc.mjs for improved code formatting.
2025-06-11 17:20:43 +00:00
Valentin Popov 78a9c2abc5 feat: add LatestPosts section to homepage
- Introduced a new LatestPosts component to display the five most recent blog posts.
- Updated the index page to include the LatestPosts section, enhancing content visibility.
- Made minor text adjustments in the Welcome section for clarity.
2025-06-11 16:47:48 +00:00
Valentin Popov 604e507b31 refactor: update blog layout and components
- Removed the PostSummary component and replaced it with a new PostElement component for better post display.
- Introduced SocialLinks and Welcome sections to enhance the homepage layout.
- Updated the index page to utilize the new sections, improving overall structure and user experience.
2025-06-11 16:34:34 +00:00
Valentin Popov 3d6aedd272 feat: group blog posts by year in index page
- Implemented functionality to categorize blog posts by publication year.
- Updated the blog index page to display posts organized under their respective years for improved navigation.
2025-06-11 16:05:50 +00:00
Valentin Popov 6fe5df4e32 refactor: simplify Header component by removing site title and navigation wrapper
- Removed the site title and navigation links wrapper from the Header component for a cleaner structure.
- Updated styles to reflect these changes, streamlining the component's layout.
2025-06-11 15:56:06 +00:00
Valentin Popov 26de615385 chore: update README to reflect new badge and remove CI link
- Replaced the CI badge with a 512KB club badge for better representation of the project.
2025-06-11 00:11:24 +00:00
Valentin PopovandGitHub 77e65cb92c refactor: simplify Analytics component and update BaseLayout
* style: enhance Header component and update SCSS imports

- Improved the Header component by adding a site title with styling.
- Wrapped navigation links in a div for better structure.
- Updated SCSS imports across multiple components for consistency.

* refactor: simplify Analytics component and update BaseLayout

- Removed props from the Analytics component to streamline its usage.
- Updated BaseLayout to call Analytics without passing the title prop, ensuring default values are used.
2025-06-11 00:12:57 +04:00
Valentin PopovandGitHub 34ce9f6162 style: enhance Header component and update SCSS imports (#50)
- Improved the Header component by adding a site title with styling.
- Wrapped navigation links in a div for better structure.
- Updated SCSS imports across multiple components for consistency.
2025-06-10 22:38:58 +04:00
Valentin PopovandGitHub f3cc07e92c chore: migrate sass imports to use (#49) 2025-06-10 18:27:34 +04:00
Valentin PopovandGitHub d74eec1c47 Merge pull request #48 from valentineus/header
New Header
2025-06-10 18:20:48 +04:00
Valentin Popov 9ebcd40f60 feat: create PostElement component for blog post display
- Added a new PostElement component to render individual blog posts with title, publication date, and reading time.
- Updated the blog index page to utilize PostElement instead of PostSummary for improved post presentation.
2025-06-10 14:17:48 +00:00
Valentin Popov 4e8c17a6ea chore: update blog routing and header link
- Removed the redirects for the blog route in the configuration.
- Updated the blog link in the Header component to include a trailing slash.
- Added a new index page for the blog to display all posts.
2025-06-10 14:05:48 +00:00
Valentin Popov 6a47cb4165 refactor: remove Pagination component and restructure blog page
- Deleted the Pagination component as it is no longer needed.
- Refactored the blog page to directly display posts without pagination.
- Introduced a new index page to list all blog posts in a single view.
2025-06-10 14:01:27 +00:00
Valentin Popov bb7481670e feat: add header component and update blog layout
- Introduced a new Header component for site navigation.
- Integrated Header into BaseLayout for consistent site structure.
- Updated blog post layout to include the post title in a dedicated section.
- Minor update to README for license clarity.
2025-06-10 13:44:56 +00:00
Valentin PopovandGitHub 2f535ac598 docs: update README and license
* docs: update README and add licenses

* chore: remove unused materials license and update README for clarity
2025-06-06 04:03:32 +04:00
Valentin Popov b1c85503d6 revert: update comment section theme 2025-06-05 23:52:13 +00:00
Valentin Popov 009dca3402 style: update comment section theme 2025-06-05 23:50:10 +00:00
Valentin Popov e56c4f3edf perf: improve site icon loading 2025-06-05 23:33:09 +00:00
Valentin Popov e9612c756b feat: add IE11 compatibility 2025-06-05 23:22:39 +00:00
Valentin Popov eb36082087 chore(deps): update dependencies 2025-06-05 23:16:27 +00:00
Valentin Popov 81bcfbdc65 Migrate from Gitea Actions to GitHub Actions 2025-06-05 23:12:22 +00:00
Valentin Popov 9b937e2736 Refactor CI workflow step names for clarity by adding descriptive titles for dependency installation and checks. 2025-05-23 12:02:49 +00:00
Valentin Popov 6d0f766671 Remove push trigger from Renovate workflow configuration to streamline scheduling. 2025-05-23 11:59:13 +00:00
Valentin Popov 27caca159e Update Renovate configuration to enable 'ignoreScripts' for npm and improve workflow step naming for clarity during dependency updates. 2025-05-23 11:57:15 +00:00
Valentin Popov cf5901f8c1 Update Renovate configuration to use the full container image for enhanced functionality during dependency updates. 2025-05-23 11:52:02 +00:00
Valentin Popov 547b008398 Update Renovate configuration by removing 'githubTokenWarn' and adding 'RENOVATE_GITHUB_COM_TOKEN' for improved token management in Gitea workflows. 2025-05-23 11:45:24 +00:00
Valentin Popov 1d79bd154b Update Renovate configuration to enable 'githubTokenWarn' and set 'ignoreScripts' to false, enhancing security and improving script execution during dependency updates. 2025-05-23 11:43:17 +00:00
Valentin Popov 24c710bd41 Add GitHub token to Renovate configuration for enhanced repository access during updates. 2025-05-23 11:39:15 +00:00
Valentin Popov 3660982271 Update Renovate configuration to enable 'ignoreScripts' for npm, enhancing security during dependency updates. 2025-05-23 11:29:43 +00:00
Valentin Popov ad6903f7ee Remove 'binarySource' setting from Renovate configuration to streamline package source management. 2025-05-23 11:23:19 +00:00
Valentin Popov 5c89158bdb Update Renovate configuration by removing 'binarySource' from JSON file and adding it to CJS file for consistent package source management. 2025-05-23 11:20:03 +00:00
Valentin Popov bff792581a Add 'binarySource' setting to Renovate configuration for improved package source management. 2025-05-23 11:15:35 +00:00
Valentin Popov a170c87cdb Refactor Renovate configuration by removing 'containerbase' and 'lockFileMaintenance' settings, streamlining dependency management and focusing on package update rules. 2025-05-23 11:12:37 +00:00
Valentin Popov dca4c61251 Add 'containerbase' setting to Renovate configuration, disabling container base updates for improved dependency management control. 2025-05-23 11:01:36 +00:00
Valentin Popov d0b675b944 Update Renovate configuration to include 'postUpdateOptions' for npm lockfile updates, improving dependency management automation. 2025-05-23 10:59:26 +00:00
Valentin Popov cb4820f8f1 Update Renovate configuration to include 'skipInstalls' setting, enhancing npm management during dependency updates. 2025-05-23 10:54:37 +00:00
Valentin Popov 39e28d06ea Remove 'labels' from Renovate configuration and retain 'automerge' setting for improved dependency update control. 2025-05-23 10:50:09 +00:00
Valentin Popov 6f0260f7bc Update Renovate configuration to include a schedule for lock file maintenance, allowing updates at any time for enhanced flexibility in dependency management. 2025-05-23 10:48:49 +00:00
Valentin Popov d74d8acdc2 Enhance Renovate configuration by adding range strategy and enabling lock file maintenance, while consolidating npm settings for improved dependency management. 2025-05-23 10:47:27 +00:00
Valentin Popov c47b9f9037 Refactor Renovate configuration by removing automerge setting to enhance control over dependency updates. 2025-05-23 10:42:23 +00:00
Valentin Popov 1ed689ed71 Add new Renovate configuration file to automate dependency management 2025-05-23 10:39:24 +00:00
Valentin Popov 1d7fbe8fbb Updated Renovate configuration to set npm requireConfig to false, removing the allowed post-upgrade commands for improved dependency management clarity. 2025-05-23 08:03:09 +00:00
Valentin Popov 2bb3139579 Updated Renovate configuration to include allowed post-upgrade commands and specify file filters, enhancing the automation of dependency management tasks. 2025-05-23 07:58:56 +00:00
Valentin Popov f88a1eaa69 Updated Renovate configuration to set npm requireConfig to "optional" and removed post-upgrade tasks for streamlined dependency management. 2025-05-23 07:56:42 +00:00
Valentin Popov a560f6d2e0 Updated package.json to specify npm version 10.9.0 as the package manager, enhancing project dependency management. 2025-05-23 07:51:17 +00:00
Valentin Popov 6adb475581 Updated Renovate configuration to enable npm settings, added post-upgrade tasks for smoother dependency management, and refined command execution for package updates. 2025-05-23 07:42:39 +00:00
Valentin Popov 725ec5df89 Refined Renovate configuration by removing unnecessary parameters and simplifying package rules for improved clarity and efficiency. 2025-05-23 07:34:44 +00:00
Valentin Popov a6078cdf0b Updated Renovate configuration to include binary source setting, streamlining dependency management and enhancing package update processes. 2025-05-23 07:29:14 +00:00
Valentin Popov b7005555c7 Added push trigger for master branch in Renovate workflow to enhance automation on code updates. 2025-05-23 07:24:54 +00:00
Valentin Popov 5364a666fd Enhanced Renovate configuration by enabling lock file updates and adding post-upgrade tasks for npm, ensuring smoother dependency management. 2025-05-23 07:24:15 +00:00
Valentin Popov b5bc0bc56a Updated Renovate configuration to include range strategy and enabled npm settings with stability days and post-update options. 2025-05-22 23:33:01 +00:00
Valentin Popov da49ba84ba Added debug log level to Renovate workflow for improved troubleshooting. 2025-05-22 23:28:25 +00:00
Valentin Popov a1895c8bc8 The Renovate configuration file has been added and the setting has been updated to optimize for disabled actions. 2025-05-21 17:35:20 +04:00
Valentin Popov cfa3cc7be8 Unnecessary parameters have been removed from the Renovate configuration 2025-05-21 17:30:43 +04:00
Valentin Popov 0db17945d4 Moved renovate.json 2025-05-10 14:53:13 +04:00
Valentin Popov 2b4908aa92 Added self-hosted Renovate Bot 2025-05-08 13:12:45 +00:00
Valentin Popov 001585b8a6 Update dependency 2025-05-08 12:54:35 +00:00
Valentin Popov 8bce6939d1 Disabled GitHub CI; Enabled Gitea Actions 2025-05-08 12:34:43 +00:00
Valentin Popov 0deb65fde2 Added an icon for the website 2025-02-05 00:20:40 +00:00
Valentin Popov 88464d0240 Updated Renovate config 2025-02-05 03:43:12 +04:00
Valentin PopovandGitHub 2202c45aba Merge pull request #14 from valentineus/renovate/all-digest
Update dependency astro to v5.2.4
2025-02-04 22:53:53 +04:00
Valentin Popov 0bba3fe744 Updated CI parameters & Added mirror 2025-02-01 18:12:29 +04:00
Valentin PopovandGitHub 6c083b7b0e Merge pull request #11 from valentineus/renovate/all-digest
Update dependency astro to v5.2.1
2025-01-31 00:16:48 +04:00
Valentin PopovandGitHub d2ac0ca590 Merge pull request #10 from valentineus/renovate/all-digest
Update dependency astro to v5.2.0
2025-01-30 18:57:49 +04:00
Valentin PopovandGitHub e48033a97d Merge pull request #9 from valentineus/renovate/all-digest
Update dependency astro to v5.1.10
2025-01-27 18:36:29 +04:00
Valentin Popov 9b62213886 Updating the project version to 2025.01.24 in the package.json and package-lock.json 2025-01-23 23:14:20 +00:00
Valentin Popov c694648c2c Adding a link to the main blog page 2025-01-23 23:10:09 +00:00
Valentin Popov 7724e9617d Adding the "vitesse-dark" theme configuration for Shiki in the Markdown settings 2025-01-23 23:03:20 +00:00
Valentin Popov 0cbdbbad7f Improved printing styles: adding backgrounds and text colors, customizing tables and links 2025-01-23 22:47:57 +00:00
Valentin Popov 849d637880 Changing the background color to a darker shade 2025-01-23 22:42:11 +00:00
Valentin Popov 6a81db4cfc Adding disabling the Dependency panel to the Renovate configuration 2025-01-23 22:36:12 +00:00
Valentin PopovandGitHub 1b6b61ba31 Merge pull request #7 from valentineus/renovate/migrate-config
Migrate renovate config
2025-01-24 02:33:44 +04:00
Valentin Popov f2bd75ac67 Adding the Dependabot configuration for devcontainers updates at a weekly interval 2025-01-23 22:31:04 +00:00
Valentin Popov 90a0ba8b97 Changing the Dependabot configuration to update dependencies once a week and adding support for GitHub Actions updates; removing the Renovate configuration. 2025-01-23 22:29:33 +00:00
Valentin Popov aa94393f4d Updating the Dependabot configuration for daily dependency updates with permission for direct dependencies and activation of security updates; disabling security updates in Renovate. 2025-01-23 22:18:54 +00:00
Valentin Popov f2025da4fd Adding Renovate configuration and updating dependencies 2025-01-23 22:15:33 +00:00
Valentin PopovandGitHub 5e4542edcb Merge pull request #5 from valentineus/dependabot/npm_and_yarn/astro-5.1.9
Bump astro from 5.1.8 to 5.1.9
2025-01-24 02:00:37 +04:00
Valentin Popov f1416bf181 Configuring Dependabot for daily dependency updates and deleting Renovate configurations 2025-01-23 21:58:33 +00:00
Valentin Popov 4d4eb86bfa Merge pull request 'Update dependency astro to v5' (!30) from renovate/major-astro-monorepo into master
Reviewed-on: #30
2024-12-04 10:11:37 +03:00
Valentin Popov 471c98d958 Merge pull request 'Update ghcr.io/renovatebot/renovate Docker tag to v39' (!22) from renovate/ghcr.io-renovatebot-renovate-39.x into master
Reviewed-on: #22
2024-11-06 09:43:04 +03:00
Valentin Popov b6a06ed787 Deleted the unnecessary CF adapter 2024-10-24 19:54:32 +00:00
Valentin Popov bc13a45d3d Updated the structure of the post's page 2024-10-24 19:50:34 +00:00
Valentin Popov ef6185eb00 Deleted the footer of the pages 2024-10-24 19:45:26 +00:00