1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
The Debian packaging of emacs-doom-themes is maintained in git, using the
merging workflow described in dgit-maint-merge(7). There isn't a
patch queue that can be represented as a quilt series.
A detailed breakdown of the changes is available from their canonical
representation - git commits in the packaging repository. For
example, to see the changes made by the Debian maintainer in the first
upload of upstream version 1.2.3, you could use:
% git clone https://git.dgit.debian.org/emacs-doom-themes
% cd emacs-doom-themes
% git log --oneline 1.2.3..debian/1.2.3-1 -- . ':!debian'
(If you have dgit, use `dgit clone emacs-doom-themes`, rather than plain
`git clone`.)
A single combined diff, containing all the changes, follows.
--- emacs-doom-themes-2.3.0.orig/README.md
+++ emacs-doom-themes-2.3.0/README.md
@@ -149,12 +149,6 @@ extensions][wiki].
- `(doom-themes-visual-bell-config)`: flash the mode-line when the Emacs bell
rings (i.e. an error occurs). May not be compatible with all mode line
plugins.
-- `(doom-themes-neotree-config)`: a [neotree] theme that takes after [Atom]'s
- file drawer; a more minimalistic icon theme plus variable pitch file/directory
- labels, as seen [in the doom-one screenshot](/../screenshots/doom-one.png).
-
- (This requires `all-the-icons`' fonts to be installed: `M-x
- all-the-icons-install-fonts`)
- `(doom-themes-treemacs-config)`: two [treemacs] icon themes, one that takes after
[Atom]'s, and a second more colorful implementation.
- `(doom-themes-org-config)`: corrects and improves some of org-mode's native
--- emacs-doom-themes-2.3.0.orig/doom-themes-base.el
+++ emacs-doom-themes-2.3.0/doom-themes-base.el
@@ -322,11 +322,11 @@
(compilation-mode-line-exit :inherit 'compilation-info)
(compilation-mode-line-fail :inherit 'compilation-error)
;;;; custom <built-in>
- (custom-button :foreground blue :background bg :box '(:line-width 1 :style none))
- (custom-button-unraised :foreground violet :background bg :box '(:line-width 1 :style none))
- (custom-button-pressed-unraised :foreground bg :background violet :box '(:line-width 1 :style none))
- (custom-button-pressed :foreground bg :background blue :box '(:line-width 1 :style none))
- (custom-button-mouse :foreground bg :background blue :box '(:line-width 1 :style none))
+ (custom-button :foreground blue :background bg :box '(:line-width 1 :style nil))
+ (custom-button-unraised :foreground violet :background bg :box '(:line-width 1 :style nil))
+ (custom-button-pressed-unraised :foreground bg :background violet :box '(:line-width 1 :style nil))
+ (custom-button-pressed :foreground bg :background blue :box '(:line-width 1 :style nil))
+ (custom-button-mouse :foreground bg :background blue :box '(:line-width 1 :style nil))
(custom-variable-button :foreground green :underline t)
(custom-saved :foreground green :background (doom-blend green bg 0.2) :bold bold)
(custom-comment :foreground fg :background region)
|