aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPDatabaseViewController.m
Commit message (Collapse)AuthorAgeFilesLines
* fixed compiler warningssqlprodev2011-03-011-1/+8
|
* - Revert r3187, which only masked an underlying bug and caused double ↵rowanbeentje2011-02-111-16/+9
| | | | | | | | | columns in views - In SPTableStructureDelete, don't request the encoding if the table is reloading; this prevents multithreaded data fetches and race conditions causing Issue #974. - Alter SPTableData to use thread mutexes instead of a boolean to prevent threading issues, which also fixes Issue #974 in a different way. Alter race condition checks to block their threads instead of returning bogus information to prevent state issues. - Alter table loading to no longer load trigger information until required, speeding up use of other views and cleaning up the console log.
* - Ensure table information is retrieved on the working thread, to prevent a ↵rowanbeentje2011-02-071-0/+6
| | | | possible race condition where the main thread may retrieve table info as a result of a notification as well as the working thread. This may improve Issue #974.
* - Ensure window title updates occur on the main thread, fixing crashes ↵rowanbeentje2011-01-311-2/+2
| | | | under race conditions
* • Bundle CommandsBibiko2010-12-011-9/+27
| | | | | - make sure that each HTML output window will be released - if a triggered command will outputs its result in an HTML window invoke it only if the HTML output window is already open; this enables the user to "switch on/off" such a trigger
* • Bundle Editor / Bundle commandsBibiko2010-12-011-0/+21
| | | | | | | - enabled trigger support to run a command if db, table, or table row was changed - HTML output window will be ordered out without making it the key window to remain the first responder • SPTableTExtFieldCell - forgotten to remove expansionFrameWithFrame: method
* - Fix interface updates when multiple tables are selectedrowanbeentje2010-11-251-4/+2
|
* - Tweak master view loading on table change, avoiding clearing active views ↵rowanbeentje2010-11-121-5/+9
| | | | unnecessarily. This improves speed slightly by reducing interface interaction, and preserves state better during actions, fixing bugs like Issue #574.
* Add a new category to SPDatabaseDocument, allowing code cleanup and moving ↵rowanbeentje2010-11-031-0/+485
central functionality out of SPTablesList: - Centralise control over table loading, moving it away from SPTablesList and into SPDatabaseDocument and the new SPDatabaseViewController category - Centralise control over the main tab view, moving control away from SPTablesList and into SPDatabaseDocument and the new SPDatabaseViewController category - Simplify and clean up view loading logic - Improve thread safety - Update localisable strings