CLOG 2.2 - Dev Journal #353
Replies: 17 comments 1 reply
-
Can now set use-clog-debugger for (clog-repl) so that it uses and display the graphical debugger. |
Beta Was this translation helpful? Give feedback.
-
Added to clog-gui clog-break (&key clog-body run (modal t)) this works similar to (break) however it will perform run and then ask to confirm continued execution of thread or to run (break) What is cool is that you can now run clog-repl and break execution even from a console app and see on the clog-repl gui |
Beta Was this translation helpful? Give feedback.
-
Added to clog-gui (defmacro clog-probe (symbol &key clog-body This let's you do some cool stuff like: (dotimes (n 100) (when (eql n 1) (clog-probe n :time-out nil)) (print n) (sleep .5)) So you can play with the local value of n while it is running (this may or may not be affected by changing n based on implementation) |
Beta Was this translation helpful? Give feedback.
-
Corrected issue with dialogs not being movable |
Beta Was this translation helpful? Give feedback.
-
added auto-probe to clog-probe to have it repeat probe :auto-probe seconds |
Beta Was this translation helpful? Give feedback.
-
added: In clog-break if the form passed to run returns :continue the break confirm dialog is not displayed and execution continues |
Beta Was this translation helpful? Give feedback.
-
added a new panel - CLOG Probe Panel
|
Beta Was this translation helpful? Give feedback.
-
You can choose now use your Lisp's console inspector or emacs slime inspector from the probes and probes started as auto can turn off the auto probe. |
Beta Was this translation helpful? Give feedback.
-
Lots of debug stuff #361 |
Beta Was this translation helpful? Give feedback.
-
Added CLOG Object Scope |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Added to preferences.lisp.sample ;; Load extensions to CLOG Builder and Plugins |
Beta Was this translation helpful? Give feedback.
-
Added ability to evaluate to a Probe on the CLOG Probe Panel |
Beta Was this translation helpful? Give feedback.
-
Added clog-tools:clog-builder-scope to create a new CLOG Object Scope |
Beta Was this translation helpful? Give feedback.
-
Remove objects not in the DOM from the browser left over from using javascript or a (setf (text obj) ""), ie. gc dangling clog artifacts in the browser clog[] array. |
Beta Was this translation helpful? Give feedback.
-
New preference to password protect the IDE if want to deploy over internet as part of a project etc: ;; To password protect use of the IDE set to a password or a function that |
Beta Was this translation helpful? Give feedback.
-
Sys Browse from menu bar |
Beta Was this translation helpful? Give feedback.
-
Goals -
Beta Was this translation helpful? Give feedback.
All reactions