aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - Ensure SPTableInfo reloads occur on the main thread, fixing a number of ↵rowanbeentje2010-06-052-5/+11
| | | | logged exceptions for beyond-bound index accesses
* - Enable the translation feedback menu item. The nightly build system has ↵rowanbeentje2010-06-051-2/+1
| | | | been updated to fetch the latest translations as part of the build process, so this should also be the first build including the start of multiple language support.
* Update the translation feedback URL to point to the new feedback page. The ↵stuconnolly2010-06-042-3/+3
| | | | menuitem should be enabled when we actually start including localisations.
* Fix for array index issues when deleting users, sometimes.mltownsend2010-06-021-3/+5
|
* Fixed Reversed Sort Order menu itemmltownsend2010-06-021-1/+1
|
* • fixed incompatibility between regexp engine ICU 10.6 and 10.5 for ↵Bibiko2010-06-021-1/+1
| | | | | | | parsing tab snippets - the regexp [^{}] is a valid expression but leads on 10.5 to an error; for 10.5 one has to escape { and } → [^\\{\\}] works on both SDKs - this fixes i682
* • Updated copyright info for RegexKitLiteBibiko2010-06-021-1/+1
|
* • Updated RegexKitLite to 4.0Bibiko2010-06-022-542/+1598
|
* - Fix exceptions and crashes caused by corrupt tables, disabled storage ↵rowanbeentje2010-06-022-1/+9
| | | | engines, or similar hard MySQL errors
* Add a 'Translation Feedback' menuitem to the 'Help' menu (currently hidden). ↵stuconnolly2010-06-015-13/+93
| | | | Implements issue #713. When the feedback page is available simply change the constant SPTranslationFeedbackURL to point to it.
* Fix export dialog interface validation when switching between data formats. ↵stuconnolly2010-06-011-3/+3
| | | | Fixes issue #714.
* Added sorting of the favorites in the connection panel. Will use the same ↵mltownsend2010-06-013-34/+536
| | | | sort order as what is set in preferences as well. Fix for Issue#664
* - Fix opening of .spfs on application launch or if no windows are openrowanbeentje2010-06-011-1/+1
|
* - Ensure start/end query notifications are sent on the main thread to avoid ↵rowanbeentje2010-06-019-21/+149
| | | | | | | the interface being updated from the wrong thread on listeners - Add a "Support Files" folder to MCPKit, containing NSNotificationAdditions to support main thread notifications from within MCPKit
* Remove debug.stuconnolly2010-05-301-3/+1
|
* Prevent spawning multiple threads for refreshing the server process list by ↵stuconnolly2010-05-282-1/+12
| | | | tracking the threads running state. Fixes log http://spbug.com/l/563.
* Changed the refresh method so that it creates a new persistentstore as well ↵mltownsend2010-05-282-14/+19
| | | | and clearing out the outlineview.
* Changed the SPUserManager instance to an allocated instance when the ↵mltownsend2010-05-282-3/+14
| | | | SPUserManager is selected. SPUserManager is released when the user his cancel or apply. This forces the UI to refresh itself.
* Removed the SPUserManager instancemltownsend2010-05-281-41/+47
|
* Rename TableDocument to SPDatabaseDocument.stuconnolly2010-05-2848-1035/+980
|
* Rename TableContent to SPTableContent.stuconnolly2010-05-2814-241/+257
|
* Remove unsed try/catch exception blocks in all data exporters.stuconnolly2010-05-275-569/+553
|
* Remove multiple occurrences of accessing the same array element, improving ↵stuconnolly2010-05-271-6/+8
| | | | the overall performance of SQL dumps.
* Rename TableSource to SPTableStructure.stuconnolly2010-05-2710-124/+116
|
* Rename TablesList to SPTablesList.stuconnolly2010-05-2727-316/+314
|
* Rename CMImageView to SPImageView.stuconnolly2010-05-276-44/+42
|
* Rename CMTextView to SPTextView.stuconnolly2010-05-2715-273/+239
|
* Update table list 'gear' menu to match that of the context menu.stuconnolly2010-05-271-17/+162
|
* Fix table list context menu separator display caused by the introduction of ↵stuconnolly2010-05-271-82/+13
| | | | the new export menu item.
* Perform interface validation on the new export window on a background thread ↵stuconnolly2010-05-271-31/+69
| | | | to prevent locking up the main thread when dealing with databases with a large number (>100) of tables.
* - Fix SQL export progress displayrowanbeentje2010-05-276-536/+532
| | | | | - When compression is enabled, use .sql.gz as file extension instead of .gz
* Data export fixes:stuconnolly2010-05-262-9/+6
| | | | | | | - Fix the same potential autorelease pool memory leak found in the CSV exporter in the XML exporter. - When performing an XML export to a single file don't write the header twice. - Remember to append the .xml extension when performing an XML export to a single file.
* Fix an overreleased dictionary crash and always ensure both autorelease ↵stuconnolly2010-05-261-7/+8
| | | | pools are released to prevent potential memory leaks. Fixes log http://spbug.com/l/584.
* - Fix Connection splitview resizing to affect the underlying view (and so ↵rowanbeentje2010-05-251-2/+5
| | | | correctly save). Fixes Issue #705
* Update Growl controller notify method selector when an export finishes. ↵stuconnolly2010-05-251-1/+1
| | | | Fixes logs http://spbug.com/l/521 and http://spbug.com/522.
* Fix autoresizing properties of the UTF-8 BOM option on the export dialog.stuconnolly2010-05-251-3/+3
|
* More tweaks in regards to issue#699mltownsend2010-05-242-24/+48
|
* Removed local framework path from build settingsmltownsend2010-05-241-3/+0
|
* Addition fix for issue#699mltownsend2010-05-241-1/+3
|
* Merge export redesign branch back into trunk.stuconnolly2010-05-2449-1766/+7204
| | | | | | | | | | | | | | | | | | | | | Includes a completely redesign approach to all export data types based on the use of NSOperation subclasses. CSV, SQL, XML and dot export types are currently functional, while the source files for PDF and HTML export types exist they are to be implemented, but are currently hidden from the interface. Also includes the following: - Completely redesigned export interface. - The ability to customize CSV NULL values. - The ability to specify whether the UTF-8 BOM should be used in SQL dumps. - The ability to specify whether BLOB fields are output as hex or plain text during SQL dumps. Defaults to hex. - Exporting currently selected tables via the tables list context menu. Outstanding issues: - Not all progress indicators for all export types are functional (or functioning correctly). - A few issues related to the introduction of only exporting the content and create and drop syntax of specific tables during SQL dumps. Needs some serious testing and benchmarking to ensure it replicates the current export functionality.
* - Add support for progress indicator in tabsrowanbeentje2010-05-246-23/+57
| | | | | | - Hide Navigator menu option again - Remove accidentally committed debug
* Menu divider.stuconnolly2010-05-241-5/+25
|
* Initial implementation of tabs:rowanbeentje2010-05-2392-8793/+11514
| | | | | | | | - Addition of PSMTabBar framework - Rework away from a document-based TableDocument - Support tabs throughout the application - Add menu items for creating tabs, and add support for dragging tabs to different windows
* Add missing space to auto increment value field on extended information view.stuconnolly2010-05-231-1/+1
|
* Fix for issue#699mltownsend2010-05-231-3/+7
|
* - Fix an issue when truncating tables using the right-click menu, by ↵rowanbeentje2010-05-225-42/+46
| | | | | | | | improving the truncation reload code and by removing a problem in TableContent tracking the active table name. This addresses Issue #700 and a number of crash reports. - Rename SPHistoryView* constants to SPTableView* constants and use them more widely rather than hard-coded tab indexes - Fix a problem preventing history navigation if a triggers view was the previous item in the history
* Fields in Resources tab of User Manager actually will persist now.mltownsend2010-05-215-47/+87
|
* - Fix a singleton proprty release in SPGrowlController's -release method; ↵rowanbeentje2010-05-191-4/+1
| | | | avoids overrelease and memory trampling. Thanks to Towny for spotting this; addresses Issue #692 and http://spbug.com/l/411
* - Ensure any table changes are applied before switching tables as a result ↵rowanbeentje2010-05-191-0/+5
| | | | of a right-click. This should address much of Issue #691, and a number of crashes logged since 0.9.8
* Change filesize units to base 2 rather than base 10. Fixes issue #690. Patch ↵stuconnolly2010-05-184-10/+10
| | | | provided by Max Lohrmann, thanks Max!.