Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: whoisyurii/checkmygit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: InzGIBA/devcard
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 19 commits
  • 138 files changed
  • 1 contributor

Commits on Jan 16, 2026

  1. Migrate from Cloudflare Pages to GitHub Pages with static generation

    - Replace adapter-cloudflare with adapter-static
    - Add site.config.js for centralized configuration
    - Create build-time data fetching module
    - Remove dynamic routes and server-side code
    - Remove Cloudflare KV dependencies
    - Add GitHub Actions workflow for automated deployment
    - Add sitemap generation
    - Update documentation with setup instructions
    - Configure for single GitHub profile display
    InzGIBA committed Jan 16, 2026
    Configuration menu
    Copy the full SHA
    fef37b2 View commit details
    Browse the repository at this point in the history
  2. Update environment variable names from GITHUB_* to GH_*

    GitHub does not allow secrets starting with GITHUB_ prefix.
    Changed all references to use GH_TOKEN and GH_USERNAME instead.
    InzGIBA committed Jan 16, 2026
    Configuration menu
    Copy the full SHA
    4a8839c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e3aeb6e View commit details
    Browse the repository at this point in the history
  4. Fix: Correct CNAME file creation condition in workflow

    GitHub Actions doesn't allow direct secret comparison in if conditions.
    Changed to use environment variable check inside shell script.
    InzGIBA committed Jan 16, 2026
    Configuration menu
    Copy the full SHA
    cf64a7b View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2026

  1. Remove views counter from all templates

    - Removed views prop from all template components
    - Removed views display from Sidebar, TemplateGitHub, TemplateBento, and TemplateMinimal
    - Contribution graph and external contributions are already displayed in templates
    InzGIBA committed Jan 17, 2026
    Configuration menu
    Copy the full SHA
    26314b2 View commit details
    Browse the repository at this point in the history
  2. Fix: Use GH_TOKEN instead of GITHUB_TOKEN in github.ts

    This fixes the issue where contributions data was not being fetched
    because the token variable name was not updated.
    InzGIBA committed Jan 17, 2026
    Configuration menu
    Copy the full SHA
    128cf45 View commit details
    Browse the repository at this point in the history
  3. Add full language statistics and LinkedIn integration

    - Remove top-10 limitation in language statistics calculation
    - Display all languages sorted by usage in backend
    - Show top-5 languages in LanguageChart component
    - Show top-8 languages in TechStack component
    - Fix repository count display text with proper singular/plural handling
    - Add LinkedIn URL support to GitHubUser type
    - Add LINKEDIN_URL environment variable configuration
    - Create LinkedInButton component with URL normalization
    - Integrate LinkedIn button into ProfileHeader
    - Format all files with Prettier
    InzGIBA committed Jan 17, 2026
    Configuration menu
    Copy the full SHA
    1a6577f View commit details
    Browse the repository at this point in the history
  4. Fix: Include all repositories in language statistics

    - Calculate language stats from all repositories including forks
    - Change repository sorting from STARGAZERS to PUSHED_AT for more recent repos
    - This ensures all languages are properly counted and displayed
    InzGIBA committed Jan 17, 2026
    Configuration menu
    Copy the full SHA
    6f26979 View commit details
    Browse the repository at this point in the history
  5. Add LINKEDIN_URL to GitHub Actions workflow

    - Add LINKEDIN_URL environment variable to build step
    - This enables LinkedIn button to appear in deployed version
    InzGIBA committed Jan 17, 2026
    Configuration menu
    Copy the full SHA
    27c3787 View commit details
    Browse the repository at this point in the history
  6. Enhance profile tags with more variety and categories

    - Add more granular tags based on stars, repos, followers, and activity
    - Add streak-based tags (Year Streak, Long Streak, On Fire)
    - Add experience-based tags (Legend, Veteran, Experienced)
    - Add open source contribution tags
    - Add special combination tags (Elite Developer)
    - Expand language categories (Web, Game Dev, Security, Cloud)
    - Increase max tags from 4 to 5
    - Remove emoji for professional appearance
    InzGIBA committed Jan 17, 2026
    Configuration menu
    Copy the full SHA
    cb68fd7 View commit details
    Browse the repository at this point in the history
  7. Improve code quality and add Telegram integration support

    - Add Telegram button component for contact profiles
    - Enhance ESLint configuration with stricter rules and test file support
    - Refactor Sidebar component with improved structure and readability
    - Add resume-related components (WorkExperience, Education, Skills, Awards, Publications, Volunteer, Projects)
    - Add resume server utilities and type definitions
    - Improve ProfileHeader with better layout and Telegram button integration
    - Optimize TechStack component by removing unused code
    - Enhance GitHub data fetching with better error handling
    - Update environment variables documentation in .env.example
    - Add integration tests for TemplateGitHub component
    - Improve UI components consistency (Button, Toast, LinkedInButton, Dropdown)
    - Refactor GitHub type definitions for better type safety
    - Update multiple portfolio components for better accessibility
    InzGIBA committed Jan 17, 2026
    Configuration menu
    Copy the full SHA
    4064b84 View commit details
    Browse the repository at this point in the history
  8. Add JSONRESUME_URL to GitHub Actions workflow

    - Add JSONRESUME_URL environment variable to build step
    - Enable JSON Resume integration in deployed version
    InzGIBA committed Jan 17, 2026
    Configuration menu
    Copy the full SHA
    ef58412 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    619ea78 View commit details
    Browse the repository at this point in the history
  10. feat: hide Skills section

    InzGIBA committed Jan 17, 2026
    Configuration menu
    Copy the full SHA
    f3e0d6f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    ef4cc0b View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    974b151 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    18c1ce9 View commit details
    Browse the repository at this point in the history
  14. refactor: complete FSD restructure and project cleanup

    - Restructured project according to Feature-Sliced Design methodology
    - Moved all components to appropriate FSD layers (shared, entities, features, widgets, pages, app)
    - Updated .gitignore with comprehensive rules from gitignore.io
    - Configured path aliases for FSD layers in svelte.config.js
    - Fixed duplicate keys in Svelte each blocks (ContributionGraph, ProjectItem, VolunteerItem, Awards, Projects, Publications, Volunteer)
    - Updated .prettierrc with correct path to layout.css
    - Moved types from src/lib/types to src/shared/types
    - Moved fetchProfileData from src/lib/build to src/shared/api
    - Cleaned up old directory structure
    - All tests passing: npm run check, npm run lint, npm run build
    InzGIBA committed Jan 17, 2026
    Configuration menu
    Copy the full SHA
    80ce8ad View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2026

  1. update design

    InzGIBA committed Jan 25, 2026
    Configuration menu
    Copy the full SHA
    741f26f View commit details
    Browse the repository at this point in the history
Loading