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
13 changes: 11 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,18 @@ updates:
- 'minor'
- 'patch'
ignore:
# Keep eslint pinned at v9 — v10 breaks eslint-config-next
# Ignore eslint updates entirely
- dependency-name: 'eslint'
versions: ['>= 10']
update-types:
- 'version-update:semver-major'
- 'version-update:semver-minor'
- 'version-update:semver-patch'
# Ignore minimatch updates entirely
- dependency-name: 'minimatch'
update-types:
- 'version-update:semver-major'
- 'version-update:semver-minor'
- 'version-update:semver-patch'
open-pull-requests-limit: 10

# GitHub Actions version updates
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**Where code meets conscience.** A brutalist × cyberpunk portfolio built with Next.js 16.

[![Version](https://img.shields.io/badge/version-1.1.1-cyan?logo=github)](package.json)
[![Version](https://img.shields.io/badge/version-1.1.2-cyan?logo=github)](package.json)
[![Security: SLSA Level 3](https://img.shields.io/badge/SLSA-Level%203-brightgreen)](https://github.com/devakesu/devakesu-web/attestations)
[![Security Scan: Trivy](https://img.shields.io/badge/Security-Trivy%20Scanned-blue)](.github/workflows/deploy.yml)
[![Attestations](https://img.shields.io/badge/Attestations-Enabled-success)](https://github.com/devakesu/devakesu-web/attestations)
Expand Down Expand Up @@ -413,5 +413,5 @@ _Love is the only way to rescue humanity from all evils._

---

**Last Updated**: February 25, 2026
**Version**: 1.1.1
**Last Updated**: March 02, 2026
**Version**: 1.1.2
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,5 @@ We appreciate security researchers who responsibly disclose vulnerabilities.

---

**Last Updated**: February 25, 2026
**Version**: 1.1.1
**Last Updated**: March 02, 2026
**Version**: 1.1.2
2 changes: 1 addition & 1 deletion app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ html {
scroll-padding-top: 0px;
/* Improve mouse wheel scrolling smoothness */
overscroll-behavior-y: contain;
scroll-snap-type: y proximity;
scroll-snap-type: none;
/* Mobile optimization */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
Expand Down
Loading