summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author0xhenrique <[email protected]>2025-05-30 21:02:58 +0100
committer0xhenrique <[email protected]>2025-05-30 21:02:58 +0100
commit3ca9f258e09b9abce37b8bce0e1c71e457f11189 (patch)
tree9ccc3adcd68a2a5b9a62fbf36dfaffeb12f500b7
parentaa94e94347e99441beaf78adf2feda627fd8f7e7 (diff)
add header
-rw-r--r--README.org1
-rw-r--r--esb.el10
2 files changed, 10 insertions, 1 deletions
diff --git a/README.org b/README.org
index 7112881..9ced5fa 100644
--- a/README.org
+++ b/README.org
@@ -212,6 +212,7 @@ The encrypted file is just a simple JSON array:
* License
This is a simple encrypted bookmark manager for Emacs that stores bookmarks in an encrypted file suitable for syncing via Git. It uses GPG encryption to keep your bookmarks secure while allowing you to store them in public repositories.
+
Copyright (C) 2025 0xhenrique
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
diff --git a/esb.el b/esb.el
index 3bc5bd3..578cd0e 100644
--- a/esb.el
+++ b/esb.el
@@ -1,5 +1,13 @@
;;; esb.el --- Emacs Simple Bookmark -*- lexical-binding: t; -*-
+;; Copyright (C) 2025 Henrique Marques
+
+;; Author: Henrique Marques <[email protected]>
+;; URL: https://github.com/0xhenrique/esb
+;; Version: 0.1
+;; Package-Requires: ((emacs "27.1"))
+;; SPDX-License-Identifier: AGPL-3.0-or-later
+
;;; Commentary:
;; This is a simple encrypted bookmark manager for Emacs that
;; stores bookmarks in an encrypted file suitable for syncing via Git.
@@ -12,7 +20,7 @@
(require 'json)
(defgroup esb nil
- "Encrypted bookmark manager."
+ "Emacs Simple Bookmark."
:group 'tools)
(defcustom esb-bookmarks-file "~/.bookmarks.gpg"