Create a LoggingController that shows all the commands sent and received.
[macgdbp.git] / Source / DebuggerConnection.m
2010-03-29 Robert SesekCreate a LoggingController that shows all the commands...
2010-03-28 Robert SesekDon't crash after pressing the "run" button or at end...
2010-03-27 Robert SesekRemove two obsolete methods: |-[DebuggerConnection...
2010-03-27 Robert SesekRewrite |-[DebuggerConnection getProperty:]| to be...
2010-03-27 Robert SesekTry to recover from malformed XML errors by manually...
2010-03-27 Robert SesekRename GDBpConnection to DebuggerConnection. Also organ...
2008-07-14 Robert SesekRenaming DebuggerConnection to GDBpConnection
2008-07-14 Robert SesekRenaming DebuggerWindowController to DebuggerController
2008-06-23 Robert SesekMerge branch 'bug-125' 1.0.1
2008-06-23 Robert SesekInstead of using the "stopping" status, just use "Stopp...
2008-06-22 Robert SesekClose the connection when we receive the "stopping...
2008-06-18 Robert SesekReturn the NSXMLDocument in [DebuggerConnection process...
2008-06-18 Robert SesekMerge branch 'master' into no-gc
2008-06-12 Robert SesekAfter we establish a connection, we need to resend...
2008-06-12 Robert SesekFixing a bug where if the register depth was too deep...
2008-06-11 Robert SesekIn DebuggerConnection, we need to protect against setti...
2008-06-10 Robert SesekSet the BreakpointManager's connection to the DebuggerC...
2008-06-09 Robert SesekMerge branch 'master' into no-gc
2008-06-05 Robert SesekSending the "run" command was balanced with a receive...
2008-06-04 Robert SesekInstead of using NSData for [SocketWrapper receive...
2008-05-28 Robert SesekAdd better error checking for malformed XML
2008-05-28 Robert SesekTrying to add some bounds checking so we don't get...
2008-04-17 Robert SesekTurning off GC and adding back manual memory management
2008-04-02 Robert SesekMerge branch 'breakpoints'
2008-04-02 Robert SesekAdding support to actually set breakpoints on the debug...
2008-01-09 Robert SesekThe reconnect functionality now works
2008-01-06 Robert SesekMerge branch 'leopard'
2008-01-05 Robert SesekRemoving the notification-delegate system that SocketWr...
2008-01-05 Robert SesekIn SocketWraper, don't use the notification posting...
2008-01-05 Robert SesekSynthesize new properties for class cross-referencing...
2008-01-05 Robert SesekHappy new year!
2008-01-05 Robert SesekUse garbage collection and add -[SocketWrapper close...
2008-01-05 Robert SesekMerge branch 'refactoring' into leopard
2008-01-05 Robert SesekFinish the refactoring in the previous commit and now...
2008-01-05 Robert SesekWe no longer use DebuggerConnection to manage the Debug...
2008-01-04 Robert SesekReworking the code to use NSTreeNode instead of the...
2008-01-04 Robert SesekFix some variable hiding that was caused by our refacto...
2008-01-04 Robert SesekUntested refactoring is the best! Renaming all of the...
2008-01-04 Robert SesekRemoving the extra spacing after colons in function...
2007-08-25 Robert SesekImproving the way we handle updating the stack and...
2007-08-25 Robert SesekRemoving the NSLog that was being called everytime...
2007-08-11 Robert SesekIn the dataReceived: method if an error is in the respo...
2007-08-11 Robert SesekChaning all the delivery methods to accept NSXMLDocumen...
2007-08-11 Robert SesekWe previously were leaking all over the place due to...
2007-08-05 Robert SesekWorking around an extremely annoying apple bug in NSTre...
2007-08-05 Robert SesekCasting to remove a warning
2007-08-05 Robert SesekAdding a method to check and see if the connection...
2007-08-05 Robert SesekThe depth fetching of child nodes now works and are...
2007-08-05 Robert SesekFixing a compiler error for a missing variable
2007-08-05 Robert SesekWe now get the property when we go past the currently...
2007-08-05 Robert SesekMerge branch 'master' into register-feature
2007-08-05 Robert SesekMerge branch 'master' into register-feature
2007-08-05 Robert SesekTrying to get the register viewer to work
2007-08-04 Robert SesekForgot to change the instances of _createCommand to...
2007-08-04 Robert SesekCleaning up our use of private methods: Moving all...
2007-08-04 Robert SesekHooking up "Step Over" and "Step Out" buttons
2007-08-04 Robert SesekNow that we use NSData, it doesn't make sense to print...
2007-08-04 Robert SesekInstead of data received being an NSString, have it...
2007-08-04 Robert SesekRevert "Instead of directly calling stack_get, get...
2007-08-04 Robert SesekIn dataReceived:deliverTo: print out the data we receiv...
2007-08-04 Robert SesekInstead of directly calling stack_get, get the depth...
2007-08-04 Robert SesekAdding the sent data as the parameter to the dataSent...
2007-08-04 Robert SesekImplementing a buggy stack trace viewer.
2007-08-03 Robert SesekAdding a method to handle getting the stack trace
2007-08-03 Robert SesekImplementing the "Step In" command
2007-08-03 Robert SesekAdding functionality to get the IP address of the remot...
2007-08-03 Robert SesekAdding support for the "run" command and acutally using...
2007-08-03 Robert SesekMaking the status text portray the actual status of...
2007-08-03 Robert SesekAdding support for error viewing on the Debugger window...
2007-08-03 Robert SesekAdding a selector argument to receive: so that the...
2007-08-03 Robert SesekImplementing the new delegate system throughout SocketW...
2007-08-03 Robert SesekFinally settled on a delegate/notification system combi...
2007-08-03 Robert SesekThreads can't communicate with each other and call...
2007-08-03 Robert SesekStarting to thread-ify SocketWrapper class.
2007-08-03 Robert SesekCleaning up and removing remnance of the notification...
2007-08-03 Robert SesekUsing NSNotification to pass messages around upon event...
2007-08-02 Robert Sesek* MacGDBp.xcodeproj: Change the C mode to be C99
2007-08-02 Robert SesekRemoving all information about specifying a host becaus...
2007-08-02 Robert SesekChanging from using NSStream which didn't actually...
2007-08-01 Robert SesekAdding a stream handler function that should be able...
2007-08-01 Robert Sesek* Source/DebuggerConnection.h: Added _input and _output...
2007-08-01 Robert Sesek* Source/DebuggerConnection: Adding getters for _host...
2007-08-01 Robert Sesek* Source/ConnectWindowController.h: Adding outlets...