Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix bundle commands no longer working in popup field editor (and possibly ↵ | Max | 2015-10-21 | 1 | -6/+8 |
| | | | | | | other cases) (#2299) Replacing some [NSApp mainWindow] with their actually intended calls [NSApp keyWindow] and [view window] | ||||
* | Replace a lot of SPBeginAlertSheet()s with the more concise SPOnewayAlertSheet() | Max | 2015-10-20 | 1 | -32/+53 |
| | | | | This should also eliminate a few use-after-free crashes | ||||
* | Constrain the Table Info Comment/Create split view so that neither side can ↵ | Max | 2015-10-14 | 1 | -0/+4 |
| | | | | be completely hidden (fixes #2285) | ||||
* | Add mysql:// URL handler (fixes #1681) | Max | 2015-10-14 | 1 | -11/+21 |
| | |||||
* | Fix another case of "background thread updating UI" | Max | 2015-10-13 | 1 | -16/+20 |
| | |||||
* | Change two magic strings into constants | Max | 2015-10-10 | 1 | -7/+7 |
| | |||||
* | Trying to fix a range of crashes when closing a connection window | Max | 2015-10-05 | 1 | -0/+1 |
| | | | | Caused by a use-after-free of an unretained ivar | ||||
* | Added extra parameter to SPOnewayAlertSheet and runs runModal if no window ↵ | Guillermo Ignacio Enriquez Gutierrez | 2015-08-22 | 1 | -1/+2 |
| | | | | was provided. | ||||
* | Fix a concurrent modification exception that could occur when duplicating a ↵ | Max | 2015-07-20 | 1 | -5/+10 |
| | | | | database | ||||
* | Remove an unbalanced call to -[SPDatabaseDocument endTask] which caused ↵ | Max | 2015-07-20 | 1 | -0/+1 |
| | | | | | | misbehaviour if loading a table failed (fixes #2180) Note: I suspect this was a leftover from refactoring but I can't rule out the possibility of a code path where this was desired. | ||||
* | Add some info which might help a bit with debugging threading issues | Max | 2015-07-02 | 1 | -4/+8 |
| | |||||
* | Fix a crash when the database popup was removed from the toolbar (why would ↵ | Max | 2015-06-18 | 1 | -9/+36 |
| | | | | you do that!?) (fixes #2147) | ||||
* | Fixed two case of background thread interacting with UI | Max | 2015-04-22 | 1 | -2/+3 |
| | | | | aka "deleted uncommited CA transaction" | ||||
* | Fix Sequel Pro forgetting database charset when renaming or copying a ↵ | Max | 2015-03-12 | 1 | -18/+20 |
| | | | | | | database (#2082) (While we're at it, also removed some duplicate CREATE DATABASE code) | ||||
* | Fix an issue with connection color and cloned connections | Max | 2015-03-03 | 1 | -4/+4 |
| | | | | The red (first) connection color would not be duplicated to another tab, when choosing "Open Table in New X" from the context menu (issue reported by Kyle via e-mail). | ||||
* | Fix an issue where a KV Observer was not removed on dealloc resulting in KVO ↵ | Max | 2015-01-11 | 1 | -0/+1 |
| | | | | messaging a Zombie and crashing | ||||
* | Change some code formatting | Max | 2015-01-06 | 1 | -10/+15 |
| | |||||
* | Addition to commit 2735e15b | Max | 2015-01-04 | 1 | -2/+1 |
| | |||||
* | Replace some "magic numbers" with constants | Max | 2015-01-04 | 1 | -6/+6 |
| | |||||
* | Formalize [x release], x = nil; convention | Max | 2015-01-04 | 1 | -56/+55 |
| | | | | | Take this commit as a proposal to formalize our existing "[x release], x = nil;" convention by introducing a macro for it. Feel free to revert this commit if you see issues with the approch or implementation. | ||||
* | Add code for utf8mb4 encoding | Max | 2014-12-19 | 1 | -18/+20 |
| | |||||
* | Replace some NSDictionaries with literals | Max | 2014-12-13 | 1 | -48/+46 |
| | | | | | | * [NSDictionary dictionary] → @{} * [NSDictionary dictionaryWithObject:forKey:] can safely be replaced. object==nil would have already thrown a NPE in the past. * Also replaced some (hopefully safe) NSArray initializers (ie. their objects should always exist). | ||||
* | Change [NSArray arrayWithObject:] to @[] literal | Max | 2014-12-13 | 1 | -4/+4 |
| | | | | Note: [NSArray arrayWithObjects:...,nil] is left unchanged as that could possibly cause a NPE if converted to @[] | ||||
* | Add cast for [NSApp delegate] | Max | 2014-12-13 | 1 | -23/+23 |
| | | | | | * (Also changed some outdated URLs) * Replaced [NSApplication sharedApplication] with NSApp | ||||
* | Replace boxed integers in code with @ literals | Max | 2014-12-13 | 1 | -9/+9 |
| | |||||
* | Reformatting code for modern ObjC | Max | 2014-12-13 | 1 | -26/+26 |
| | | | | | Replaced all [NSNumber numberWithBool:YES/NO] with the @YES/@NO literals. Also replaced some TRUE/FALSE with their YES/NO counterparts. | ||||
* | Include tab color when duplicating tab. | Max | 2014-11-29 | 1 | -0/+4 |
| | | | | Fixes #2029 | ||||
* | Change some split view width calculations. | Max | 2014-11-29 | 1 | -1/+6 |
| | | | | | | * Attempt to fix the "<SPSplitView: ...>: the delegate <SPSplitView: ...> was sent -splitView:resizeSubviewsWithOldSize: and left the subview frames in an inconsistent state:" message that has been plaguing my console for some time. * This commit also adds a minimum width on the main area to prevent some strange UI bugs. | ||||
* | Attempt to fix #1961 | Max | 2014-11-11 | 1 | -10/+4 |
| | | | | | | | | | | | | | Namely this commit changes two things: 1) In the past the user manager window technically was closed after it was released (SPUserManager.m:491): [NSApp endSheet:[self window] returnCode:0]; //-> calls delegate, which calls release [[self window] orderOut:self]; This call order has now been swapped. 2) Because the delegate is invoked directly by NSApp, the release was called before other UI elements had finished their cleanup from orderOut:. The delegate callback is now put on the runloop to give other stuff priority. Requesting QA on this commit. | ||||
* | Add a "Go to Database" dialog | Max | 2014-10-12 | 1 | -0/+19 |
| | | | | | | | | The dialog enables * searching for a database by name (substring matching), * using C&P to select databases * navigating to databases not in the database dropdown * faster keyboard-based navigation | ||||
* | Fix string formatting warnings in NSRunAlertPanel by using the additional ↵ | rowanbeentje | 2014-05-04 | 1 | -1/+1 |
| | | | | arguments | ||||
* | Update URL in source file header to point to GitHub. | Stuart Connolly | 2014-01-26 | 1 | -1/+1 |
| | |||||
* | Remove SVN property placeholder. | Stuart Connolly | 2014-01-26 | 1 | -2/+0 |
| | |||||
* | Force a table reload (just the view not the actual data retrieval) whenever ↵ | Stuart Connolly | 2014-01-20 | 1 | -30/+46 |
| | | | | the view binary data as hex option is toggled. Fixes #1875. | ||||
* | Add an option to display binary data as hex, while displaying it in blue to ↵ | Stuart Connolly | 2014-01-14 | 1 | -3/+8 |
| | | | | distinguish from string data of similar content. | ||||
* | More tidy up. | Stuart Connolly | 2013-12-02 | 1 | -2/+6 |
| | |||||
* | Tidy up change to test git integration. | Stuart Connolly | 2013-12-02 | 1 | -2/+0 |
| | |||||
* | Remove more use of deprecated methods. | Stuart Connolly | 2013-11-27 | 1 | -74/+65 |
| | |||||
* | Updated Save Create Syntax panel sheet to 10.6+ SDK | Marius Ursache | 2013-11-11 | 1 | -22/+12 |
| | |||||
* | Cleaned up Format string is not a string literal (potentially insecure) errors | Marius Ursache | 2013-11-09 | 1 | -18/+18 |
| | |||||
* | Ensure the relations table view is refreshed after field changes result in a ↵ | stuconnolly | 2013-10-27 | 1 | -0/+1 |
| | | | | dropped relationship. Fixes issue #1591. | ||||
* | * This change adds basic tab coloring support for favorites - ** POC / NEEDS ↵ | dmoagx | 2013-10-23 | 1 | -0/+6 |
| | | | | | | | | | REVIEW ** Known issues: * There might be additional colors be shown when dragging tabs between windows * The color set might need fine tuning * Coloring of items in the favorite outline view is not yet handled | ||||
* | Allow opened SQL files to be saved back to the original file, addressing ↵ | rowanbeentje | 2013-09-08 | 1 | -1/+13 |
| | | | | | | | | | Issue #1805: - Add new menu item for "Save Query", making the existing item "Save Query As" as an alternate - Track the opened SQL file and used encoding to be able to easily save the same file again - Standardise encoding detection to use the UniversalDetector framework and use that for opened SQL files where the encoding menu is not used | ||||
* | - Address further Release/Distribution build warnings | rowanbeentje | 2013-05-22 | 1 | -2/+2 |
| | |||||
* | - Fix all the Xcode 4.6.2 build warnings, and tweak warning settings to ↵ | rowanbeentje | 2013-05-21 | 1 | -2/+4 |
| | | | | enable some more | ||||
* | * Move some duplicate code for charset/collation to it's own class | dmoagx | 2013-04-26 | 1 | -204/+46 |
| | |||||
* | Issue #1601: Fix menu items not being validated properly once a connection ↵ | stuconnolly | 2013-04-03 | 1 | -49/+63 |
| | | | | is established. | ||||
* | - Move the SPBeginWaitingAlertSheet function to a ↵ | rowanbeentje | 2013-04-03 | 1 | -9/+12 |
| | | | | beginWaitingAlertSheetWithTitle:... class method on a new SPAlertSheets class, allowing us to use invocation forwarding to ensure the entire function is executing on the main thread. This allows runloop processing to happen on the main thread, addressing Issue #1676 | ||||
* | - Fix validation of the "Add to Favorites" File menu item when editing past ↵ | rowanbeentje | 2013-04-02 | 1 | -3/+3 |
| | | | | | | | | favorites - Fix the action of the "Add to Favorites" File menu item to correctly create the new favorite These address Issue #1666. | ||||
* | * Add support for ALTER DATABASE statement (needs review) | dmoagx | 2013-03-17 | 1 | -0/+135 |
| |