aboutsummaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
...
* Apply changes from 23c4d04e433f9eb21872edacc41173e34ec45ac2 to ↵Max2017-05-151-0/+12
| | | | SPTableContent (#2775)
* Apply changes from e1b881b8f893803c4949a69055c4e8106562327d to ↵Max2017-05-152-11/+2
| | | | SPTableContent (part of #2770)
* Change some method calls so the custom query view controller gets notified ↵Max2017-05-103-8/+18
| | | | when the window is about to be closed and can stop a pending UI timer (#2775)
* Expand a mutex lock because it previously did not cover all possible ↵Max2017-05-061-17/+26
| | | | multithreading cases
* Fix the way „Kill Query“ / „Kill Connection“ acquires the ID to ↵Max2017-05-041-13/+34
| | | | | | prevent an possible exception and possible data corruption (caused by killing the wrong connection/query) #2779 Previously the code did not take into account „auto reload“ and that it may cause the selected row to change between clicking on „Kill …“ and actually executing the query.
* Implement progress for BZ2 file importFacundo2017-04-293-39/+46
|
* Change a few methods so they do what their name suggests (fix for #2765)Max Lohrmann2017-04-231-39/+77
|
* * Fix a case of "background thread updating UI" (may affect some crashes ↵Max Lohrmann2017-04-224-30/+35
| | | | when importing CSVs)
* Remove a superfluous ivar and the unholy intermingling of UI and data code ↵Max2017-04-182-24/+18
| | | | it has caused (part of #2770)
* Move some code to a place where it makes more sense to be (part of #2770)Max2017-04-184-11/+20
| | | | (This should not cause any behavioral changes)
* Fix an error where Sequel Pro was unable to detect the default charset of ↵Max2017-04-101-2/+5
| | | | partitioned tables (#2761)
* Fix an exception when opening the „About“ window on OS X < 10.10Max2017-04-011-1/+2
|
* Fix encrypted Session files on 10.6Max2017-04-011-3/+5
|
* Update source code compatibilityMax2017-03-3121-208/+177
| | | | | | * Remove forward SDK declaration for 10.8 and below (since that is the minimum required development SDK) * Fix one case where a method unconditionally required a 10.9+ runtime * Move all of the forward/backward hacks into their own file
* Merge branch 'master' of https://github.com/sequelpro/sequelproMax2017-03-311-6/+9
|\
| * Fix first responder exception being logged on 10.12. Check if the favourites ↵Stuart Connolly2017-03-301-2/+2
| | | | | | | | outline view is attached to a window before setting it as the first responder.
| * Fix first responder exception being logged on 10.12. Check if the favourites ↵Stuart Connolly2017-03-301-6/+9
| | | | | | | | outline view is attached to a window before setting it as the first responder.
* | Fix a case of „background thread updating UI“ that could cause an ↵Max2017-03-313-17/+35
|/ | | | exception with a very specific timing (#2754)
* More debug code to find cause of #2266Max2017-03-301-3/+12
|
* Merge branch 'master' of github.com:sequelpro/sequelproStuart Connolly2017-03-284-39/+77
|\
| * Allow copying lines from query console by using drag-and-drop (part of #2749)Max2017-03-294-39/+77
| |
* | Remove unused var.Stuart Connolly2017-03-281-3/+1
| |
* | Move table relations delegate methods into their own catrgory to be ↵Stuart Connolly2017-03-284-57/+127
|/ | | | consistent with other controllers.
* Fix an issue where the wrong table could be deleted when switching tables ↵Max2017-03-261-7/+5
| | | | | | (by key press) fast enough after confirming deletion (#2742) This was caused by the delete code being called via a `performSelector:…` timer event instead of directly, which gave the run loop a chance to handle the key event between confirming the delete and actually executing it.
* Disable automatic window tabbing on 10.12+ until we fully implement it.Stuart Connolly2017-03-252-7/+28
|
* Fix crashes on tab/window closing due to previously registed preference ↵Stuart Connolly2017-03-242-6/+28
| | | | observers not being removed.
* Remove duplicate setting of sheet title/message.Stuart Connolly2017-03-235-22/+9
|
* - #1235: Prevent renaming a database which contains any non-table objects as ↵Stuart Connolly2017-03-2314-202/+307
| | | | | | | | it's currently not supported. - #1235: Inform the user when duplicating a database than any non-table objects won't be copied. - Add missing high resolution images to project. - Fix a potential memory leak inside SPCreateDatabaseInfo
* Fix warnings.Stuart Connolly2017-03-221-8/+16
|
* Remove redundant code and associated warning. No longer required after c4e9a4b.Stuart Connolly2017-03-221-14/+1
|
* Performance improvement for databases that contain lots of objects. When ↵Stuart Connolly2017-03-221-26/+25
| | | | getting shell variables for bundles don't call the object names methods multiple times.
* Fix user manager throwing an exception when mysql.user.authentication_string ↵Stuart Connolly2017-03-212-14/+28
| | | | is NULL.
* Fix about panel cropping it's main label.Stuart Connolly2017-03-181-6/+8
|
* Fix table triggers view not reacting to UI preference changes. Also, move ↵Stuart Connolly2017-03-183-140/+125
| | | | the responsibility of adding/removing preference observers to the controllers of respective views (more to follow).
* Comment typo.Stuart Connolly2017-03-172-1/+3
|
* #2705: FULLTEXT indexes should not require a column size prefix.Stuart Connolly2017-03-172-146/+84
|
* Fix two cases of background thread updating UI (could cause a concurrent ↵Max2017-03-161-2/+2
| | | | modification exception)
* Merge branch 'master' of github.com:sequelpro/sequelproStuart Connolly2017-03-151-2/+2
|\
| * Fix an exception when removing custom content filters via the outline ↵Max2017-03-151-2/+2
| | | | | | | | view’s context menu (#2733)
* | #2732: Fix table information panel stuck on activities view.Stuart Connolly2017-03-153-37/+48
|/
* Replace some legacy NSIndexSet enumeration with 10.6+ style ↵Max Lohrmann2017-03-1213-179/+83
| | | | -enumerateIndexesUsingBlock:
* #2629 show binary data as hex now also applies to blobAbhi Beckert2017-03-102-16/+31
|
* * Turn `-[SPMySQLConnection checkConnectionIfNecessary]` into a public ↵Max2017-03-091-1/+1
| | | | | | method, since it is actually the preferable way to `-[SPMySQLConnection checkConnection]` (which forces network IO in a new thread each time) * Change `-[SPDatabaseStructure queryDbStructureWithUserInfo:]` doing a forced connection check inside a tight loop (#2306)
* #2437 disable keychain access when passwords are being sent as cleartextAbhi Beckert2017-03-031-0/+17
|
* #2711 no-longer truncate binary columns whlie editingAbhi Beckert2017-03-031-2/+6
|
* Merge commit 'b87faacf805f76daaa5ad9e2e6e39efc3d558289'Abhi Beckert2017-03-031-1/+1
|\
| * Fix typo when exporting processes listQuentin Mazars-Simon2017-02-241-1/+1
| |
* | Merge remote-tracking branch 'sequelpro/master'Abhi Beckert2017-02-1711-30/+608
|\|
| * Add unit tests and fix a bug in JSON formatterMax2017-02-121-4/+4
| |
| * Fix an erroneous if condition (#2688)Max2017-02-121-1/+1
| | | | | | | | In some rare cases this could have resulted in an unexpected „No data was updated“ error message