-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* compiler-explorer.el: Update `Version'. * ChangeLog: Add entry.
- Loading branch information
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,36 @@ | ||
2024-06-09 Michał Krzywkowski <[email protected]> | ||
|
||
Version 0.5.0 | ||
|
||
- Implemented colored source line to ASM line mappings with | ||
overlays. This can be toggled by setting the customizable | ||
variable `compiler-explorer-source-to-asm-mappings' or via the | ||
menu. New command `compiler-explorer-jump' can be used to jump | ||
from source line to corresponding ASM line and vice versa. | ||
|
||
- Fixed output filters which are not supported by current | ||
language/compiler being set in the request. | ||
|
||
- List of languages in the menu is now sorted, and compilers are | ||
grouped. | ||
|
||
- Fixed an issue where a new session could not be interactively | ||
created when the default compiler for a language was invalid. | ||
|
||
- Switched from the old, and apparently no longer actively | ||
developed `request' package for HTTP requests to newer and | ||
actively developed `plz'. **Note**: this makes compiler-explorer | ||
depend on curl being installed. | ||
|
||
- Added better protection against some external package/function | ||
messing buffer-local variables and modes which are required for | ||
compiler-explorer. This was done by converting | ||
`compiler-explorer-mode' into a globalized minor mode which in | ||
turn enables an internal buffer-local mode that reliably sets up | ||
buffer-local variables. | ||
|
||
- Various fixes and smaller improvements. | ||
|
||
2024-04-18 Michał Krzywkowski <[email protected]> | ||
|
||
Version 0.4.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
;; Author: Michał Krzywkowski <[email protected]> | ||
;; Keywords: c, tools | ||
;; Version: 0.4.0 | ||
;; Version: 0.5.0 | ||
;; Homepage: https://github.com/mkcms/compiler-explorer.el | ||
;; Package-Requires: ((emacs "26.1") (plz "0.8") (eldoc "1.15.0") (map "3.3.1") (seq "2.23")) | ||
|
||
|