protesilaos.modus-themes/modus-operandi-theme.el
Protesilaos Stavrou 142d199ae8
Render obsolete the 'master' branch
'main' has been the primary branch since December 2020 when the project
underwent a major refactoring that brought about the unification of the
two themes into a single code base.

The packages 'modus-operandi-theme' and 'modus-vivendi-theme' were
deleted from GNU ELPA yesterday (see Emacs bug#49574), following a ~3
month period during which they would unconditionally pull in the new
'modus-themes' package.

This formally fixes issue 174 by Damien Cassou:
<https://gitlab.com/protesilaos/modus-themes/-/issues/174>.
2021-07-17 09:50:44 +03:00

60 lines
2.1 KiB
EmacsLisp
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; modus-operandi-theme.el --- Accessible light theme (WCAG AAA) [DEPRECATED] -*- lexical-binding:t -*-
;; Copyright (c) 2019-2021 Free Software Foundation, Inc.
;; Author: Protesilaos Stavrou <info@protesilaos.com>
;; URL: https://gitlab.com/protesilaos/modus-themes
;; Version: 0.13.2
;; Package-Requires: ((emacs "26.1") (modus-themes "1.2.4"))
;; Keywords: faces, theme, accessibility
;; This file is NOT part of GNU Emacs.
;; This program is free software; you can redistribute it and/or
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; This package is obsolete. It has been replaced by `modus-themes',
;; which includes the modus-operandi and modus-vivendi themes. Users
;; who were tracking the `master' branch must switch to `main'.
;;
;; An Info manual should be distributed with the Modus themes.
;; Evaluate this form to access it directly:
;;
;; (info "(modus-themes) Top")
;;
;; Else check the web page: <https://protesilaos.com/modus-themes/>.
;;
;; A summary of all new customisation options is available here:
;; <https://protesilaos.com/modus-themes/#h:bf1c82f2-46c7-4eb2-ad00-dd11fdd8b53f>.
;; Or evaluate this form to read the Info manual:
;;
;; (info "(modus-themes) Customization Options")
;;; Code:
(if t (require 'modus-themes)) ;; Don't require it during compilation!
(eval-and-compile
(let ((msg "Package `modus-operandi-theme' is obsolete; use the new `modus-themes' or switch to the `main' branch"))
(if (and noninteractive (fboundp 'byte-compile-warn))
(byte-compile-warn msg)
(message "%s" msg))))
(provide 'modus-operandi-theme)
;;; modus-operandi-theme.el ends here