This document describes the changes made to the Debugger application.
Update build scripts to not make assumtions about where env, cp and perl are located.
Own Id: OTP-13800
When the debugger searches for source files, it will also use the location of the source in the compilation information part of the BEAM file.
Own Id: OTP-13375
Documentation corrections.
Own Id: OTP-12994
Fix crash when starting a quick debugging session. Thanks Alan Duffield.
Own Id: OTP-12911 Aux Id: seq12906
Support variables as Map keys in expressions and patterns
Erlang will accept any expression as keys in Map expressions and it will accept literals or bound variables as keys in Map patterns.
Own Id: OTP-12218
Fix save state which did not work on Mac.
Own Id: OTP-12378
Make sure to install .hrl files when needed
Own Id: OTP-12197
Invoking debugger functions
Own Id: OTP-12357
Fix evaluation of map updates in the debugger and erl_eval
Reported-by: José Valim
Own Id: OTP-11922
The debugger now correctly evaluates code such as '
Own Id: OTP-11553
A few subtle bugs in the evaluation of code in the debugger has been corrected. (Thanks to Anthony Ramine.)
Own Id: OTP-11676
Application upgrade (appup) files are corrected for the following applications:
A new test utility for testing appup files is added to test_server. This is now used by most applications in OTP.
(Thanks to Tobias Schlager)
Own Id: OTP-11744
Removed gs based applications and gs based backends. The
*** POTENTIAL INCOMPATIBILITY ***
Own Id: OTP-10915
Support Maps syntax in debugger (Thanks to Anthony Ramine).
Own Id: OTP-11673
Fix matching of floating point middle-endian machines. Thanks to Johannes Weissl.
Own Id: OTP-11201
A new checkbox has been added. When it is checked,
the range set by the
A minor incompatibility: settings saved by Erlang R16B01 or later cannot be read by Erlang R16B or earlier.
Own Id: OTP-10899
Erlang source files with non-ASCII characters are now encoded in UTF-8 (instead of latin1).
Own Id: OTP-11041 Aux Id: OTP-10907
The +pc flag to erl can be used to set the range of characters considered printable. This affects how the shell and io:format("~tp",...) functionality does heuristic string detection. More can be read in STDLIB users guide.
Own Id: OTP-10884
Fix Debugger settings dialog due to changed behavior in wxFileDialog (Thanks to Håkan Mattsson)
Own Id: OTP-10621
Support for Unicode has been implemented.
Own Id: OTP-10302
Where necessary a comment stating encoding has been added to Erlang files. The comment is meant to be removed in Erlang/OTP R17B when UTF-8 becomes the default encoding.
Own Id: OTP-10630
Integer lists and utf-8 binaries in variables are now displayed as strings.
Own Id: OTP-10679
Fixed disappearing breakpoints bug, reported by Ricardo Catalinas Jiménez.
Own Id: OTP-9950
Fix "OK" spelling in debugger messages and variables
Simple code refactor in the debugger: renames all the occurrences of "Ok" to "OK" in the code, variable names and strings. This improves the consistency of the code and follows the GTK UI where "OK" is always used.(Thanks to Ricardo Catalinas Jiménez)
Own Id: OTP-9699
Variables are now now allowed in '
The representation of '
*** POTENTIAL INCOMPATIBILITY ***
Own Id: OTP-9643
Fix issues reported by dialyzer.
Own Id: OTP-9107
Miscellaneous updates
Own Id: OTP-8976
Type specs have been added/cleaned up. (Thanks to Kostis Sagonas.)
Own Id: OTP-8757
Warnings due to new autoimported BIFs removed
Own Id: OTP-8674 Aux Id: OTP-8579
The predefined builtin type tid() has been removed. Instead, ets:tid() should be used.
*** POTENTIAL INCOMPATIBILITY ***
Own Id: OTP-8687
Bugs have been fixed in the evaluation of comprehensions and short-circuit expressions in guards.
Own Id: OTP-8310
Miscellaneous corrections of the WX version of the debugger.
Own Id: OTP-8346
The documentation is now built with open source tools (xsltproc and fop) that exists on most platforms. One visible change is that the frames are removed.
Own Id: OTP-8201
Added a new gui, start with debugger:start(gs) for old gui.
Own Id: OTP-7366
The undocumented, unsupported, and deprecated guard BIF
*** INCOMPATIBILITY with R12B ***
Own Id: OTP-7673
There is now experimental support for loading of code
from archive files. See the documentation of
The error handling of
An
An
An
The internal module
Own Id: OTP-7548 Aux Id: otp-6622
Minor changes.
Own Id: OTP-7388
The documentation has been updated so as to reflect
the last updates of the Erlang shell as well as the minor
modifications of the control sequence
Superfluous empty lines have been removed from code examples and from Erlang shell examples.
Own Id: OTP-6944 Aux Id: OTP-6554, OTP-6911
Minor Makefile changes.
Own Id: OTP-6689
Obsolete guard tests (such as list()) have been replaced with the modern guard tests (such as is_list()).
Own Id: OTP-6725
Removed some dead code from
Own Id: OTP-6552
The interpreter could not handle the case where an expression that should evaluate to a fun referred to uninterpreted code.
Own Id: OTP-6061 Aux Id: seq10295
Timeout for
Own Id: OTP-6103
Notification windows are now centered over a parent window.
Own Id: OTP-6011 Aux Id: OTP-5987
When interpreting a module, it is now checked that the module does not belong to the Kernel, STDLIB, GS or Debugger application, as interpreting a module used by the debugger/interpreter itself will lead to a deadlock or emulator crash.
Also
Own Id: OTP-6020
Own Id: OTP-6021 Aux Id: OTP-5894
When evaluating a guard expression for a fun function clause, the environment variable bindings were not taken into account.
Own Id: OTP-5837
A number of smaller improvements to the GUI:
Debugger can now handle
Own Id: OTP-5730
It is now possible to encrypt the debug information in Beam files, to help keep the source code secret. See the documentation for compile on how to provide the key for encrypting, and the documentation for beam_lib on how to provide the key for decryption so that tools such as the Debugger, Xref, or Cover can be used.
The
Own Id: OTP-5460 Aux Id: seq9787
The graphic applications now search for HTML documentation in the correct place.
Own Id: OTP-5381
Package support has been added to the debugger. Thanks to Richard Carlsson in the HiPE project.
Own Id: OTP-5255
Updated to handle the latest version of the compiler.
Own Id: OTP-5265