Skip to content

Commit e821072

Browse files
committed
Set version to 0.5.0
1 parent aa90e1c commit e821072

File tree

7 files changed

+35
-11
lines changed

7 files changed

+35
-11
lines changed

.emacs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; Emacs4CL 0.5.0.dev <https://github.com/susam/emacs4cl>
1+
;;; Emacs4CL 0.5.0 <https://github.com/susam/emacs4cl>
22

33
;; Customize user interface.
44
(when (display-graphic-p)

CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
0.5.0 (UNRELEASED)
1+
0.5.0 (2023-06-27)
22
------------------
33

44
### Changed

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MIT License
22
===========
33

4-
Copyright (c) 2020-2022 Susam Pal
4+
Copyright (c) 2020-2023 Susam Pal
55

66
Permission is hereby granted, free of charge, to any person obtaining
77
a copy of this software and associated documentation files (the

README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ like:
2525

2626
[![Screenshot of Emacs][screenshot]][screenshot]
2727

28-
[screenshot]: https://i.imgur.com/9LoZzHz.png
28+
[screenshot]: https://susam.github.io/blob/img/emacs4cl/emacs4cl-0.5.0.png
2929

3030
If you are already comfortable with Emacs and only want to understand
3131
the content of the [`.emacs`] file, you can skip ahead directly to the
@@ -416,11 +416,7 @@ them. The fingers do what the mind wants effortlessly due to muscle
416416
memory.
417417
418418
While you are getting used to the Emacs key bindings, keep this [GNU
419-
Emacs Reference Card][emacs-ref] handy. Also, if you are using it in
420-
GUI mode, then the menu options can be quite helpful. The Emacs
421-
initialization file that comes with this project hides the menu bar by
422-
default but you can always invoke the menu bar any time by typing
423-
`<f10>`.
419+
Emacs Reference Card][emacs-ref] handy.
424420
425421
[emacs-ref]: https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf
426422

meta/Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
loc:
22
f() { grep -vE '^$$|^;|^ *".*"$$' ../.emacs; }; f; echo ';;;;'; f | wc -l
3+
4+
demo:
5+
mv ../.git ../git
6+
emacs -q -l ../.emacs -l demo.el
7+
mv ../git ../.git

meta/README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ Release Checklist
77
- Update version number in .emacs.
88
- Update year in LICENSE.md.
99
- Update CHANGES.md.
10-
- Add new screenshot (120x32) if necessary.
10+
- Add new screenshot if necessary.
11+
12+
```
13+
make demo
14+
```
15+
1116
- Commit changes.
1217
1318
```
@@ -23,4 +28,4 @@ Release Checklist
2328
git commit -em "Set version to $VER"
2429
git tag $VER -m "Emacs4CL $VER"
2530
git push origin main $VER
26-
```
31+
```

meta/demo.el

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
(set-frame-size (selected-frame) 120 32)
2+
(find-file "example.lisp")
3+
(split-window-right)
4+
(slime)
5+
(other-window 1)
6+
(sleep-for 1.0)
7+
(slime-eval-buffer)
8+
(other-window 1)
9+
(sleep-for 0.2)
10+
(execute-kbd-macro (kbd "(hello-world) RET"))
11+
(sleep-for 0.2)
12+
(execute-kbd-macro (kbd "(factorial SPC 6) RET"))
13+
(sleep-for 0.2)
14+
(execute-kbd-macro (kbd "(trace SPC factorial) RET"))
15+
(sleep-for 0.2)
16+
(execute-kbd-macro (kbd "(factorial SPC 6) RET"))
17+
(sleep-for 0.2)
18+
(execute-kbd-macro (kbd "(fibonacci SPC 7) RET"))

0 commit comments

Comments
 (0)