Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Minor fix: When „Display as Hex“ was enabled, „NULL“ was highlighted ↵ | Max Lohrmann | 2017-05-20 | 1 | -4/+4 |
| | | | | in blue instead of gray | ||||
* | Some changes to PR #2795 | Max Lohrmann | 2017-05-20 | 1 | -0/+28 |
| | | | | | | | * Adjusted code style * Added unit tests * Rewrote a function to be easier to understand * Added support for MySQL X’val’ style hex literal | ||||
* | Hex edit for binary columns | Michael Heins | 2017-05-19 | 1 | -7/+0 |
| | | | | | | Implement the ability to edit binary columns as hex data. Check input string for valid hex values; if invalid input, open alert sheet. | ||||
* | Remove unused var. | Stuart Connolly | 2017-03-28 | 1 | -3/+1 |
| | |||||
* | #2629 show binary data as hex now also applies to blob | Abhi Beckert | 2017-03-10 | 1 | -9/+4 |
| | |||||
* | #2470 fix logic error preventing drag from table content view | Abhi Beckert | 2016-04-10 | 1 | -2/+1 |
| | |||||
* | Fix bundle commands no longer working in popup field editor (and possibly ↵ | Max | 2015-10-21 | 1 | -5/+5 |
| | | | | | | 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 | -2/+5 |
| | | | | This should also eliminate a few use-after-free crashes | ||||
* | Attempt at fixing a crash when trying to open the field editor sheet and ↵ | Max | 2015-09-10 | 1 | -4/+8 |
| | | | | Accessibility Services are enabled and a certain other Application is running (issue #2220) | ||||
* | Add some info which might help a bit with debugging threading issues | Max | 2015-07-02 | 1 | -1/+1 |
| | |||||
* | Fix a popular exception when a user tried to edit a field with a lost ↵ | Max | 2015-06-12 | 1 | -1/+1 |
| | | | | connection and then chose "disconnect" when Sequel Pro asks to reconnect (attempt at #2137) | ||||
* | Fix a previous commit not catching all cases. | Max | 2015-04-13 | 1 | -8/+8 |
| | |||||
* | Disable editing columns in "Display in Hex" mode | Max | 2015-03-24 | 1 | -2/+11 |
| | | | | This is a workaround for a potential data loss/corruption bug until we really fix this (see #1876) | ||||
* | Formalize [x release], x = nil; convention | Max | 2015-01-04 | 1 | -1/+1 |
| | | | | | 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 cast for [NSApp delegate] | Max | 2014-12-13 | 1 | -2/+2 |
| | | | | | * (Also changed some outdated URLs) * Replaced [NSApplication sharedApplication] with NSApp | ||||
* | Mark issue for s.o. to look at | Max | 2014-12-13 | 1 | -2/+3 |
| | |||||
* | Change some split view width calculations. | Max | 2014-11-29 | 1 | -1/+1 |
| | | | | | | * 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. | ||||
* | Add a safety check within [SPCopyTable shouldUseFieldEditorForRow:column:] ↵ | rowanbeentje | 2014-06-16 | 1 | -2/+2 |
| | | | | for use when loading tables, which may improve Issue #1925 and Issue #1902. | ||||
* | 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 |
| | |||||
* | when displaying binary data, make sure we're checking the display as hex ↵ | Stuart Connolly | 2014-01-19 | 1 | -1/+3 |
| | | | | option to so we know what color to use. | ||||
* | Add an option to display binary data as hex, while displaying it in blue to ↵ | Stuart Connolly | 2014-01-14 | 1 | -10/+24 |
| | | | | distinguish from string data of similar content. | ||||
* | - Add the ability for SPTextAndLinkCell arrows to be selectively disabled ↵ | rowanbeentje | 2013-08-27 | 1 | -4/+16 |
| | | | | | | | on a per-cell rather than a per-column basis - Use this ability in SPTableContentDelegate to disable link arrows if the cell is showing a NULL or (not loaded) value, and also if the current row is being edited and so might be unvalidated. This addresses Issue #1790 and http://spbug.com/l/2306 . | ||||
* | Rework table content and custom query data loading and storage for speed ↵ | rowanbeentje | 2013-08-13 | 1 | -20/+13 |
| | | | | | | | | | increases and lower memory usage: - Add a new SPMySQLStreamingResultStore class to SPMySQL.framework. This class acts as both a result set and a data store for the accompanying data, storing the row information in a custom format in a custom malloc zone. - Amend SPDataStorage to wrap the new class, so original result information is stored in the one location in the custom format. Any edited information is handled by SPDataStorage for clean separation - Rework table content and custom query data data stores to use the new class. This significantly speeds up data loading, resulting in faster data loads if they weren't previously network constrained, or lower CPU usage otherwise. The memory usage is also lowered, with the memory overhead for many small cells being enormously reduced. | ||||
* | - Fix all the Xcode 4.6.2 build warnings, and tweak warning settings to ↵ | rowanbeentje | 2013-05-21 | 1 | -4/+0 |
| | | | | enable some more | ||||
* | Fix remaining 10.6/7 build warnings. | stuconnolly | 2013-02-17 | 1 | -0/+5 |
| | |||||
* | Fix more wanrings by creating a protocol that delegates of the copy table ↵ | stuconnolly | 2013-02-16 | 1 | -0/+11 |
| | | | | should conform to. | ||||
* | Changing SP_REFACTOR macro to SP_CODA | sqlprodev | 2013-02-14 | 1 | -15/+15 |
| | |||||
* | Changes required to merge Sequel Pro r4011 into Coda | sqlprodev | 2013-02-14 | 1 | -2/+2 |
| | |||||
* | Fix more warnings. | stuconnolly | 2013-01-24 | 1 | -2/+2 |
| | |||||
* | - Add names for most threads created by Sequel Pro for easier debug | rowanbeentje | 2012-10-14 | 1 | -1/+2 |
| | |||||
* | Move table content filter logic to it's own file. | stuconnolly | 2012-08-15 | 1 | -0/+1 |
| | |||||
* | Change Sequel Pro's license from GPL (version 2) to MIT. | stuconnolly | 2012-07-25 | 1 | -3/+3 |
| | |||||
* | * Fixes the case of the curious @"es"'s | dmoagx | 2012-05-17 | 1 | -1/+1 |
| | |||||
* | #ifdef'ing out references to frameworks that are not used in SP_REFACTOR builds | sqlprodev | 2012-03-29 | 1 | -0/+4 |
| | |||||
* | - Clean up SPMySQL and QueryKit inclusion and search methods, which should ↵ | rowanbeentje | 2012-03-27 | 1 | -1/+1 |
| | | | | | | | fix nightly builds - Fix warnings | ||||
* | - When exporting a query result or filtered table view make sure we're ↵ | stuconnolly | 2012-03-20 | 1 | -0/+778 |
including the entire content of BLOBs, not just what we display. Fixes issue #1124. - Move SPTableContent's table view datasource and delegate methods to separate categories in order to reduce it's size. |