diff --git a/.gitignore b/.gitignore index a50232f..a86b1ce 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,6 @@ dist/ # packaging *-autoloads.el *-pkg.el + +# OS generated +.DS_Store diff --git a/CHANGELOG.md b/CHANGELOG.md index b6f1b33..0ba00e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,14 @@ All notable changes to this project will be documented in this file. Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. - -## 1.1 (Unreleased) +## 3.0 (Unreleased) > Released N/A +* N/A + +## 2.0 +> Released Feb 10, 2025 + * Configure theme for `region-occurrences-highlighter` * Configure theme for `whitespace` * Configure theme for `fill-column-indicator` @@ -26,6 +30,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how * Configure dashboard text banner (204c9d59ce6081294fa02542dfbbd5e95b8bb172) * Add support for `nxml-mode` (9271b350651c7404a1b71559df9feb4647879613) * Support LSP inlay hints (ad61f777d374f67db5e5ef66ab6da2967ba83abd) +* chore: Add spacing for `dashboard` headings (0c039a0efaabd2de96dd9c80f9a52c7e3adfa57c) ## 1.0 > Released Jan 1, 2022 diff --git a/Eask b/Eask index 7c4ed89..fcd0c21 100644 --- a/Eask +++ b/Eask @@ -1,15 +1,16 @@ (package "vs-light-theme" - "1.0" + "2.0" "Visual Studio IDE light theme") (website-url "https://github.com/emacs-vs/vs-light-theme") -(keywords "") +(keywords "faces") (package-file "vs-light-theme.el") (script "test" "echo \"Error: no test specified\" && exit 1") -(source "melpa") +(source 'gnu) +(source 'melpa) (depends-on "emacs" "24.1") @@ -17,3 +18,7 @@ (depends-on "ert-runner")) (setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432 + +(add-hook 'eask-before-compile-hook + (lambda (&rest _) + (setq byte-compile-error-on-warn t))) diff --git a/vs-light-theme.el b/vs-light-theme.el index 98b8782..0a21597 100644 --- a/vs-light-theme.el +++ b/vs-light-theme.el @@ -1,11 +1,12 @@ -;;; vs-light-theme.el --- Visual Studio IDE light theme +;;; vs-light-theme.el --- Visual Studio IDE light theme -*- lexical-binding: t; -*- ;; Copyright (C) 2019-2025 Shen, Jen-Chieh ;; Author: Jen-Chieh Shen ;; URL: https://github.com/emacs-vs/vs-light-theme -;; Version: 1.0 +;; Version: 2.0 ;; Package-Requires: ((emacs "24.1")) +;; Keywords: faces ;; This file is NOT part of GNU Emacs. @@ -191,7 +192,8 @@ `(dashboard-text-banner ((t :foreground "black"))) `(dashboard-banner-logo-title ((t :foreground "#616161"))) - `(dashboard-heading ((t :foreground "#727272"))) + `(dashboard-heading ((t :foreground "#727272" + :box (:line-width (-1 . 5) :color "#ffffff")))) `(dashboard-items-face ((t :foreground "#1475B7"))) `(yascroll:thumb-fringe ((t :background "#C2C3C9" :foreground "#C2C3C9")))