aboutsummaryrefslogtreecommitdiffstats
path: root/sequel-pro.xcodeproj
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | - Bring SPMySQL Framework integration branch up to date with trunkrowanbeentje2012-03-051-235/+83
| |\ \ \ \ | |/ / / / |/| | | |
| * | | | Warning: this branch commit is largely untested, and known to throw ↵rowanbeentje2012-02-231-432/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exceptions as database structure retrieval is currently missing! Further work on SPMySQLFramework integration: - Improve SPMySQL framework build settings including correct ppc builds and a Distribution configuration for the build distributions to match - Add new convenience querying and result methods to the framework - Amend Sequel Pro source to use the new SPMySQL.framework methods everywhere, replacing MCPKit methods where they differ and improving some functions - Remove MCPKit from the source - Fix a number of warnings on Release-style builds
| * | | | - Fix incorrect conversion via a CFStringEncoding for eucjpmsrowanbeentje2012-02-201-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | - Delete incorrectly committed build and pref files
| * | | | Initial commit of the new SPMySQL Framework, which is added to the project ↵rowanbeentje2012-02-201-0/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and ready for use but not yet integrated. This new framework should provide much of the functionality required from MCPKit and is based around its interface for relatively easy integration. The largest missing component is Hans' structure code which I believe is better placed outside the framework. From the Readme file: The SPMySQL Framework is intended to provide a stable MySQL connection framework, with the ability to run text-based queries and rapidly retrieve result sets with conversion from MySQL data types to Cocoa objects. SPMySQL.framework has an interface loosely based around that provided by MCPKit by Serge Cohen and Bertrand Mansion (http://mysql-cocoa.sourceforge.net/), and in particular the heavily modified Sequel Pro version (http://www.sequelpro.com/). It is a full rewrite of the original framework, although it includes code from patches implementing the following Sequel Pro functionality, largely contributed by Hans-Jörg Bibiko, Stuart Connolly, Jakob Egger, and Rowan Beentje: - Connection locking (Jakob et al) - Ping & keepalive (Rowan et al) - Query cancellation (Rowan et al) - Delegate setup (Stuart et al) - SSL support (Rowan et al) - Connection checking (Rowan et al) - Version state (Stuart et al) - Maximum packet size control (Hans et al) - Result multithreading and streaming (Rowan et al) - Improved encoding support & switching (Rowan et al) - Database structure; moved to inside the app (Hans et al) - Query reattempts and error-handling approach (Rowan et al) - Geometry result class (Hans et al) - Connection proxy (Stuart et al)
* | | | | - Re-add QueryKit as a dependency, and correct framework paths and linking ↵rowanbeentje2012-02-261-3/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to fix errors building and running the project - Add svn ignore properties on QueryKit build and mode paths
* | | | | Remove QueryKit as an SP dependency as it's currently not being used.stuconnolly2012-02-261-13/+0
| | | | |
* | | | | Add missing SVN properties.stuconnolly2012-02-261-3/+3
| | | | |
* | | | | Move QueryKit to it's own project.stuconnolly2012-02-251-202/+59
|/ / / /
* | | | Fix test.stuconnolly2011-09-261-1/+1
| | | |
* | | | More QueryKit progress. Still very rough.stuconnolly2011-09-061-3/+1
| | | |
* | | | Add the beginnings of QueryKit.stuconnolly2011-09-041-7/+239
| | | |
* | | | Tidy up console/query controller.stuconnolly2011-09-031-2/+28
| | | |
* | | | - Update localised strings for up-to-date German and Russian translations, ↵rowanbeentje2011-08-311-0/+2
| | | | | | | | | | | | | | | | including Russian translation of the credits file
* | | | Remove useless icons file. Resolves issue #1130.stuconnolly2011-07-311-0/+0
| | | |
* | | | - Replace the Release and Distrubtion architecture targets of ↵rowanbeentje2011-06-201-2/+10
| | | | | | | | | | | | | | | | ARCHS_STANDARD_32_64_BIT with an explicit definition of ppc / i386 / x86_64, as Xcode 3.2.6 and 4 remove PPC from the standard list
* | | | - Copy some NSStringAdditions to MCPStringAdditions to improve framework ↵rowanbeentje2011-06-191-0/+4
| | | | | | | | | | | | | | | | separation/standaloneness
* | | | Tidy up bundle editor UI.stuconnolly2011-06-151-2/+2
| | | |
* | | | - Update version strings to 0.9.9 version and 2011 copyright datesrowanbeentje2011-06-121-1/+380
| | | | | | | | | | | | | | | | | | | | - Add German and Russian localisations
* | | | Implement a large number of minor fixes and improvements to export ↵rowanbeentje2011-05-071-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | functionality, including an overhaul of filename NSTokenField functionality: - Improve the NSTokenField used for export filenames: only tokenise reserved tokens, don't tokenise reserved words which are parts of other words, allow the comma to be used, update tokenisation during typing, and prevent whitespace triming. - Save the last selected export path, and make the path selection button open a dialog to the selected directory - Save the export filename and restore on future uses of the export dialog (only if the name contains placeholder tokens, so one-off export names aren't saved) - If the advanced options are collapsed, display a summary of the selected options next to the disclosure triangle - Display a small warning in the corner of the window if the export file cannot be imported into Sequel Pro, to warn those people attempting to back up their databases in XML - Clarify and improve the export warning dialog if files already exist or could not be created; make the simpler file-exists cases reflect OS-style dialogs, alter wording based on the number of files that failed and how they failed, and only show the "replace" or "skip" type buttons if it makes sense to do so. - Fix a mutation-during-enumeration error when skipping files - If "Cancel" is chosen in the export file creation replace/error dialog, redisplay the export sheet with the previous selection still active - Add support for year, month and day tokens in the filename token list - Don't allow blank custom filenames, before or after tokenisation, as this can cause problems - instead fall back to default filenames in those cases - Only append the extension if one hasn't been set - on all export formats, extending r3284 - If exporting to multiple files option is enabled but only one table is selected, supply that table name for filename table tokens - Update the progress bar to reflect update progress when exporting CSV data - Fix a bug causing exports to hang if the low-memory advanced option was set and content was selected to export and any empty tables were encountered - Save memory use and compression advanced export settings across sessions - Update localisable strings
* | | | Fix unit test warnings and add SPMenuAdditionsTest.stuconnolly2011-03-201-10/+17
| | | |
* | | | Fix more compiler warnings.stuconnolly2011-03-031-0/+1
| | | |
* | | | - Fix compiler warnings for MCPKit - largely typecast relatedrowanbeentje2011-03-021-10/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fix further compiler warnings, including a couple of bugs - Disable the -wselector warnings (Multiple definition types for selector) as they're currently unsupported in LLVM - Disable the -wconversion warnings (Prototype conversion) warnings as we usually can't affect protocol declaration - Disable the -wstrict-selector-match (Strict selector matching) due to too many false positives
* | | | Fix compiler warnings.stuconnolly2011-03-011-3/+3
| | | |
* | | | Disable the 'Inhibit all warnings' option. We now have a _lot_ of compiler ↵stuconnolly2011-03-011-3/+3
| | | | | | | | | | | | | | | | warnings.
* | | | Increase compiler warnings.stuconnolly2011-02-281-6/+9
| | | |
* | | | Update the README file and add it to the Xcode project so it's more visible.stuconnolly2011-01-311-0/+2
| | | |
* | | | Improve unsaved theme warning message.stuconnolly2011-01-301-0/+1
| |_|/ |/| |
* | | - Change shortcut for "Duplicate Connection Tab" to alt-T for increased ↵rowanbeentje2011-01-231-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | discoverability - this improves on Issue #943 - Add alternate keybindings for tab switching - support command-shift-[ and -], and command-alt-left and right arrows to match behaviour of other applications - Update localisable strings
* | | Tidy up scripts and add create-test-stubs.pl to generate test stubs for the ↵stuconnolly2011-01-111-0/+2
| | | | | | | | | | | | specified header. Run create-test-stubs.pl -h for usage.
* | | Fix the unit tests build target.stuconnolly2011-01-061-7/+23
| |/ |/|
* | Group bundle classes.stuconnolly2010-12-051-4/+12
| |
* | Remove old SPF alias branch.stuconnolly2010-12-051-0/+1
|/
* • preparations for handling issue if user assigned the same keyboard ↵Bibiko2010-12-031-0/+6
| | | | short-cut on different Bundle commands; if so show a kind of a context menu to pick up one item; this will be done via the new SPChooseMenuItem class which will display a borderless window with a context menu at a passed location
* • added cancel operation images and set them to SPActivityTextFieldBibiko2010-12-021-0/+24
|
* • added chance to cancel an activity - up to now a running Bundle command ↵Bibiko2010-12-011-0/+6
| | | | | | - from the Activities pane (toggable via double-clicking at Table Information header); it's still tentative and the correct cancel icon will follow asap • added notification system for updating the activities pane (SPActivitiesUpdateNotification)
* - Fix issues right-clicking in the empty table area ( http://spbug.com/l/1726 )rowanbeentje2010-11-271-0/+6
| | | | | | | - Improve 10.5 compatibility when clearing menus ( http://spbug.com/l/1508 , http://spbug.com/l/1829 , http://spbug.com/l/1818 ) - Fix a possible crash when updating database lists - Update localisable strings
* • added skeleton for displaying the result of Bundle commands in a ↵Bibiko2010-11-221-0/+18
| | | | separate HTML webkit window
* • added SPBundleCommandTextView and use it instead of SPEditSheetTextVIew ↵Bibiko2010-11-201-0/+6
| | | | | | | | since it works in a sheet only and due to future extensions • fixed init in SPEditSheetTextView • Bundle Editor: minor bug fixing
* - Add the NewBSD-licensed ShortcutRecorder.framework to the project, for ↵rowanbeentje2010-11-161-0/+6
| | | | | | | initial use in the bundle editor (not implemented yet). Includes the .ibplugin within the framework. - Update localisable strings
* • added SPConstants.m source file to QLgenerator target in order to be ↵Bibiko2010-11-161-0/+2
| | | | able to make usage of constants in categorial addition files
* • added skeleton for Bundle EditorBibiko2010-11-121-1/+18
| | | | - not yet visible
* Commenting and move SPFavoriteNode within Xcode's logical structure.stuconnolly2010-11-111-2/+2
|
* Add a new outline view to be used by the connection view so hitting enter ↵stuconnolly2010-11-101-0/+6
| | | | doesn't start editing the selected favorite. This will also allow behaviour to be further customised. Fixes issue #892.
* Add a new class template for the favorites controller.stuconnolly2010-11-101-2/+14
|
* First changes towards changing the initial connection view's favorites table ↵stuconnolly2010-11-091-2/+14
| | | | list to an outline view in order to support grouping favorites. Future changes include creating a favorites data controller, including migrating favorites storage to their own plist in the app support directory as well as support for grouping favorites.
* Rearchitect preferences, including:stuconnolly2010-11-031-8/+101
| | | | | | | | | - Split each preference pane into their own controller (subclass of SPPreferencePane, which is a subclass of NSViewController). - Each preference pane controller conforms to the protocol SPPreferencePaneProtocol to allow the main preference controller to build the toolbar. - Move the preferences upgrade function to it's own file. - Add SPFontPreviewTextField which is based on Colloquy's JVFontPreviewField to allow previewing of the selected font in the tables and editor preference panes. - Update localisable strings files.
* Add a new category to SPDatabaseDocument, allowing code cleanup and moving ↵rowanbeentje2010-11-031-1/+6
| | | | | | | | | | | 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
* Move SPConnectionController's delegate methods to their own protocol.stuconnolly2010-10-291-2/+12
|
* Tidy up SPTableStructure including moving all the private field type ↵stuconnolly2010-10-281-4/+18
| | | | validation methods to their own class, SPTableFieldValidation.
* Move the user manager data model to the new Models dir.stuconnolly2010-10-261-1/+1
|