aboutsummaryrefslogtreecommitdiffstats
path: root/Interfaces/English.lproj/Console.xib
Commit message (Collapse)AuthorAgeFilesLines
* Touch all XIB files with Xcode 6.1.1Max2014-12-191-10/+52
| | | | | No"real" changes were made. NOTE: There is actually a chance for this change to break stuff.
* Another attempt to fix the cog menus on 10.10Max2014-11-211-12/+15
| | | | | | | Previously our cog menus have been Round Rect (borderless) NSPopupButtons with text aligned to the left of the image as that combination would allow us to make the box of the button exactly as big as the image. However in 10.10 Apple changed the layout so that a padding is always added on the right border of a popup button (except if the menu is attached to the left). From playing around I found the only setting to be compatible between 10.9 and 10.10 to be the button type Bevel (borderless). This commit changes all cog buttons to Bevel type in hopes those will also look the same on 10.8, 10.7, 10.6.
* Resolve #1938: In the query console display the database the query was ↵Stuart Connolly2014-08-281-57/+334
| | | | executed in.
* Allow all interfaces to be opened in Xcode 4.Stuart Connolly2014-01-191-1486/+412
|
* Build config update:stuconnolly2013-01-241-25/+199
| | | | | | | | | - Update base SDK to 10.6 - Update minimum OS version to 10.6 - Update all XIB to have a 10.6 target - Drop support for PPC - Apply all of the above to frameworks SPMySQLFramework and QueryKit
* • localisation issuesBibiko2010-07-051-8/+11
| | | | | | - made "This table currently does not support relations..." localisable - resized some nib elements for longer translations - replaced [[NSApp mainMenu] itemWithTitle:@"Table"] by [[NSApp mainMenu] itemWithTag:SPMainMenuTable] for dynamic title changes
* • removed wrong tooltips from gear menu (copying artefact)Bibiko2010-06-221-22/+37
| | | | - fixes i744
* Bind the 'Show Connections' menu item in the console to the user's ↵stuconnolly2009-11-191-13/+18
| | | | preferences using key 'ConsoleShowConnections' to ensure it is hidden/visible between launches. Fixes issue #468.
* When viewing the information_schema database, disable all controls on the ↵stuconnolly2009-11-151-3/+5
| | | | table information view as all table in this database are not modifiable by anyone.
* Console 'gear' menu alignment.stuconnolly2009-11-151-3/+3
|
* Updates to the 'use monospaced font' preference, making it a lot more ↵stuconnolly2009-11-141-7/+3
| | | | consistent across all table views. Also includes live updating when the preference is changed as well as its implementation in the query console, process list and variables table views.
* Bunch of improvements to the query console, including:stuconnolly2009-11-141-70/+244
| | | | | | | | | | | | | - New connection column (been meaning to add this for a while) - Display table view column headers - Enable table view text cell line truncating - Allow table view columns to be re-ordered - The table view now respects the display table view vertical grid lines preference - Support for including the connection when saving messages to a file - Support for showing/hiding the connection column - Increase table view row height to match that of all others - Display message time stamps using the user's system wide medium time format
* Increase row size of console table view.stuconnolly2009-11-141-26/+19
|
* Replace deprecated stringWithCString:length: and update Console.xib after ↵stuconnolly2009-09-031-68/+784
| | | | SPQueryConsole rename.
* - Rename the preference pane 'Alerts' to 'Alerts & Logs'.stuconnolly2009-06-111-1/+1
| | | | | | - Move the new disable query logging to the 'Alerts & Logs' pane. - Hide the display of the new 'Shortcuts' toolbar item.
* Add a very basic preference to disable all query logging. This can be ↵stuconnolly2009-06-111-69/+58
| | | | expanded upon to disable different types of queries.
* • added "Show HELP statements" to MySQL ConsoleBibiko2009-04-281-18/+119
|
* - Save the state of the "Show timestamps" and "Show SELECT/SHOW statements" ↵rowanbeentje2009-04-201-17/+80
| | | | options for the console in the user preferences
* Fix console filter progress indicator position.stuconnolly2009-04-201-9/+6
|
* - Changed console window to match style of main window.avenjamin2009-04-201-178/+323
| | | | | | - New bottom bar. - Both checkboxes moved into gear button with menu. - Clear Console button has new custom image
* 'Include time stamps' console outlet was hooked up to the wrong checkbox.stuconnolly2009-04-121-13/+21
|
* Completely redesigned query console that now uses a table view instead of a ↵stuconnolly2009-03-261-0/+992
text view. This should significantly improve import speed, but most importantly resolves the crashes caused by the drawing that was being performed by the text view. Fixes issue #87 and implements #167. New console provides the following: - Live filtering - Ability to hide message time stamps - Ability to hide SELECT/SHOW statement messages - Ability to copy messages to pasteboard, including multiple messages - Ability to save the current filtered content to a file, with the option to include the message time stamps