aboutsummaryrefslogtreecommitdiffstats
path: root/Resources
Commit message (Collapse)AuthorAgeFilesLines
* As the initial MySQL connection is now threaded, start the current tab's ↵stuconnolly2010-07-071-0/+0
| | | | progress indicator to indicate that it's connecting in the event that the user switches to a different tab. Also preserve the tab's label as 'Connecting...' when switching tabs.
* Change the export dialog's 'Selected Tables' option to simply 'Tables' and ↵stuconnolly2010-07-063-0/+0
| | | | update strings files.
* Update XIB strings.stuconnolly2010-07-053-0/+0
|
* Simplify the ease at which export filename tokens can be localised as well ↵stuconnolly2010-07-051-0/+0
| | | | as how they are updated with respect to the selected export type.
* Tidy up the Resources directory to match that of Xcode's logical directory ↵stuconnolly2010-07-0311-0/+0
| | | | structure.
* Various improvements to default connection favorites handling, including:stuconnolly2010-07-031-0/+0
| | | | | | | | | - Updating the default favorite popup button to reflect the sorted order of the favorites tableview. - A new icon indicating the default favorite in the favorites tableview. - A new 'Make Default' menu item in the favorites tableview context menu. (Outstanding issue: Incorrect default favorite being selected upon launch because the sorting of favorites on the connection screen and preferences are independent of each other).
* Localise the custom export filename tokens.stuconnolly2010-07-021-0/+0
|
* Remove all the old export code and associated UI controls.stuconnolly2010-07-022-0/+0
|
* - Update localisable stringsrowanbeentje2010-06-303-0/+0
| | | | | | - Fix a casting issue preventing release/dist builds - Remove a line of old debug
* Add option to toggle the tab bar visibility.avenjamin2010-06-301-0/+0
| | | | | - Only applies when one tab is present. - Saves last used state to preferences.
* Add tooltips to the export dialog's tableview.stuconnolly2010-06-302-0/+0
|
* Minor interface tweaks.stuconnolly2010-06-251-0/+0
|
* • initial preparations to support the storage of the entire SP session ↵Bibiko2010-06-211-0/+20
| | | | | | | | (all windows including tabs) • added file extension 'spfs' as SP bundle Note: The idea is to save inside the given spfs bundle a file 'Info.list' which contains the entire structure (which window, which tabs, selected items, etc.; each single connection is saved as separate spf file - if untitled inside the bundle in the sub-folder 'Contents' or if not the absolute path to a already saved spf file). This should insure that the user can open a single spf file in SP or as part of a spfs bundle session without loosing having two different spf file for the same connection. - Comments are welcome
* Enable the "Sequel Pro" tab style by default, and include the following fixes:rowanbeentje2010-06-182-0/+0
| | | | | | | | - Fix display of the overflow menu - Improve tab spacing and internal layout - Improve tab names for documents to correctly show the database for background documents in additional cases - Update strings files
* - Forgot to update .strings files to match r2325rowanbeentje2010-06-142-0/+0
|
* - Convert connection encoding menus to be menu tag based to fix ↵rowanbeentje2010-06-141-2/+2
| | | | | | | | | | localisation errors - Add database encoding retrieval support for MySQL 4.1 - Convert the add table and add database sheets to use encoding menus derived from server supported encodings - Re-layout preferences with larger labels to aid localisation - Fix preference resizing in non-Favorite tabs
* Forgot to commit new strings file, not that anything actually changed.avenjamin2010-06-141-0/+0
|
* Split the management of a table's indexes (adding and removing) to its own ↵stuconnolly2010-06-145-0/+0
| | | | controller and XIB in preparation for the UI redesign.
* - Update the nib localisation postprocessor to output strings files in the ↵rowanbeentje2010-06-1224-0/+0
| | | | | | | original format they were read using - Convert the .strings files to UTF16
* - Implement the Wil shipley/Golden % Braeburn localisation method for ↵rowanbeentje2010-06-1225-0/+4509
| | | | | | | | .xibs; add a build stage to Release/Dist builds which generates .strings files for each nib, and swizzle nib loading to automatically translate strings based on any localised .strings files - Fix the genstring stage of the build script and move it to Release/Dist builds only - Update Localizable.strings to match latest code
* - Replace the precompiled PSMTabBar framework with a build-from-source ↵rowanbeentje2010-06-071-0/+22
| | | | dependency, in preparation for future code and style changes
* • Updated copyright info for RegexKitLiteBibiko2010-06-021-1/+1
|
* Merge export redesign branch back into trunk.stuconnolly2010-05-241-0/+0
| | | | | | | | | | | | | | | | | | | | | 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.
* Initial implementation of tabs:rowanbeentje2010-05-231-8/+8
| | | | | | | | - 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
* Added 'Add Host' to Locazable.stringsmltownsend2010-05-041-0/+0
|
* Added myself to the list of devs, testing svn commit accessdrx7772010-04-281-3/+6
|
* Bunch of improvements to the serve processes panel, including:stuconnolly2010-04-241-2/+4
| | | | | | | | | | - MCPKit's listProcesses (mysql_list_processes) method is now used, instead of running the query ourselves. - The ability to set whether or not the list is auto refreshed. - The ability to set the autorefresh interval, either via the presets or by entering a custom value (the interface for this might need updating). - Get the process list is now performed on a background thread. This completes the implementation of issue #607.
* changed many occurrences of "REMOVE" to "DELETE", eg. "DELETE DATABASE"jakob2010-04-221-0/+0
|
* Localize 'Edit Favorites...' popup button menu item.stuconnolly2010-04-201-0/+0
|
* Add a new SPFileHandle class to support gzip compression and writing on a ↵rowanbeentje2010-04-121-0/+2
| | | | | | | | | | | background thread, and integrate for SQL import: - Implement streaming reading of gzip-compressed files for SQL import - Support exporting SQL dumps into a gzip-compressed file - SPFileHandle supports the most-used subset of NSFileHandle commands for easy integration - Integrate zlib 1.2.4 for improved gzip streaming performance (and support for custom buffer sizes and file offset positions) This implements Issue #571 .
* Forgot to update Localizable.strings for previous commit.stuconnolly2010-04-111-0/+0
|
* - Update a couple more copyright dates to 2010rowanbeentje2010-04-031-2/+2
|
* - Increment version number to 0.9.8 and copyright date to 2010rowanbeentje2010-04-022-3/+3
|
* - By default, export SQL dumps without the UTF-8 BOM, restoring ↵rowanbeentje2010-04-021-0/+2
| | | | compatibility with older versions of MySQL (http://code.google.com/p/sequel-pro/issues/detail?id=610 is tracking an interface for this in future)
* When adding a new table with a CSV storage engine, the initial field cannot ↵stuconnolly2010-03-301-0/+0
| | | | be NULL as nullable fields are not supported. Fixes issue #614. Although resolved, this will ultimately be fixed in a better approach upon the implementation of issue #297 that should allow the user to customize many of the properties of the initial field of a new table.
* Add the ability to sort the connection favorites table view in the ↵stuconnolly2010-03-271-0/+8
| | | | preferences. Sort options are by name, host or type as well as the option to be sorted in reverse order. This implements issue #490.
* Localize 'Save As...' button titles on console and process list windows.stuconnolly2010-03-251-0/+0
|
* • NavigatorBibiko2010-03-246-0/+0
| | | | | | - ENTER and RETURN selects schema path in active connection window - outsourced some stuff to SPNavigatorOutlineView • added rotating sync arrows to project for future usage
* Update Localizable.strings and add error checking to genstrings build process.stuconnolly2010-03-231-0/+0
|
* • some progress of the navigator approach (not yet active - hidden main ↵Bibiko2010-03-181-0/+0
| | | | menu item)
* - Enable Sparkle anonymous stat collectionrowanbeentje2010-03-171-0/+2
|
* Consolidate all localizable content in the Resources/ directory and only use ↵stuconnolly2010-03-1726-0/+1493
| | | | Interfaces/ for XIBs. This addresses the first point on issue #593.
* - Add toolbar item for Triggers interfaceavenjamin2010-03-131-0/+0
| | | | - Add table triggers toolbar icon
* Add support for printing a table's create syntax with syntax highlighting.stuconnolly2010-03-131-1/+3
|
* Lots more printing support enhancements, including:stuconnolly2010-03-132-10/+158
| | | | | | | | | - The ability to print the extended table information view using a new template. - The inclusion of NULL values diaplyed as the user's NULL value placeholder when printing a table's sturcture and indexes. - If enabled in the user's preferences, the inclusion of vertical gridlines in the table views. - Dynamic calculation of page margins based on the paper size of the selected printer as opposed to using hard coded values. - Lots of other little style enhancements.
* • fixed completion strings for DELIMITERBibiko2010-03-121-2/+4
|
* Various printing support enhancements, including:stuconnolly2010-03-122-37/+81
| | | | | | | | | - Splitting out all printing methods to SPPrintController which is category of TableDocument. - The ability to print table relations. - If present the inclusion of table indexes when printing a table's source. - If the user has use monospaced fonts enables, then the print out's tabular data will be in a monospaced font. - Lots of other style enhancements, including page headings and sections headings.
* Include the current table name in printing support. Fixes issue #501.stuconnolly2010-03-101-60/+70
|
* • corrected function arg list for MATCHBibiko2010-03-081-1/+1
|
* • added possibility to define a snippet via ¦a¦b¦ – such a snippet ↵Bibiko2010-03-082-5/+5
| | | | | | | | will be shown as completion list with the items “a” and “b” • set auto-completion default Pref setting to true • fixed some auto-completion issues like do not insert common prefix automatically and some others • applied ¦a¦b¦ template to CompletionTokens.plist and some tiny corrections and improvements