aboutsummaryrefslogtreecommitdiffstats
path: root/Interfaces/English.lproj/MainMenu.xib
Commit message (Collapse)AuthorAgeFilesLines
* Missing changes from r2554.stuconnolly2010-08-191-53/+53
|
* • enabled Navigator in the main menu main > ViewBibiko2010-08-121-1/+0
|
* Rename CustomQuery as SPCustomQuery.stuconnolly2010-07-061-552/+550
|
* • enabled "Save (As) Session" File menu items for testingBibiko2010-07-041-45/+2897
| | | | • renamed MainMenu > File > "Save (As)" menu item to "Save Connection (As)" and added tooltips
* Add option to toggle the tab bar visibility.avenjamin2010-06-301-51/+68
| | | | | - Only applies when one tab is present. - Saves last used state to preferences.
* • Open Session fileBibiko2010-06-291-5/+7
| | | | | | - set [tabbar setHideForSingleTab:NO] if window has more than one tab in order to avoid issues while animated fading-in of the tabbar - assign initial keyboard short-cut ^⌥⌘S for Save Session (needs to be discussed) - still hidden
* Remove duplicate 'Select next/prev tab' menu items from the 'View Menu'.stuconnolly2010-06-251-161/+21
|
* • initial preparations to support the storage of the entire SP session ↵Bibiko2010-06-211-11/+109
| | | | | | | | (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
* • added Window menu item "Move Tab to New Window"Bibiko2010-06-161-16/+55
| | | | - it moves the SPDatabaseDocument of the currently selected tab to a new window
* - Convert connection encoding menus to be menu tag based to fix ↵rowanbeentje2010-06-141-4/+29
| | | | | | | | | | 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
* Make the dock menu consistent with the 'File' menu by adding the ability to ↵stuconnolly2010-06-141-56/+135
| | | | create a new tab as well as fixing the new window item.
* • simplified tooltips for tabsBibiko2010-06-141-5/+100
| | | | | • preparations for "Move Tab to New Window" action menu action • display Select Next/Previous Tab menu items also under Main Menu > Window to be consistent
* • add to Main Menu > View > :Bibiko2010-06-111-6/+114
| | | | | | | | - Select Next Tab ^⇥ - Select Previous ^⇧⇥ and menu validation to be able to navigate through available tabs by using the keyboard.
* - 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-041-2/+2
| | | | menuitem should be enabled when we actually start including localisations.
* Add a 'Translation Feedback' menuitem to the 'Help' menu (currently hidden). ↵stuconnolly2010-06-011-13/+82
| | | | Implements issue #713. When the feedback page is available simply change the constant SPTranslationFeedbackURL to point to it.
* Rename TableDocument to SPDatabaseDocument.stuconnolly2010-05-281-280/+266
|
* Rename TablesList to SPTablesList.stuconnolly2010-05-271-131/+134
|
* Rename CMTextView to SPTextView.stuconnolly2010-05-271-32/+31
|
* Merge export redesign branch back into trunk.stuconnolly2010-05-241-525/+5
| | | | | | | | | | | | | | | | | | | | | 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-241-5/+6
| | | | | | - Hide Navigator menu option again - Remove accidentally committed debug
* Menu divider.stuconnolly2010-05-241-5/+25
|
* Initial implementation of tabs:rowanbeentje2010-05-231-28/+555
| | | | | | | | - 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
* Menu item reordering.stuconnolly2010-04-281-22/+80
|
* This changeset implements renaming and duplicating databases on a server. ↵drx7772010-04-281-16/+73
| | | | | | | | | | | | | | | | | | | Details as follows: * altered MCPConnection listTablesFromDB:like: to return NSArray * altered MCPConnection listFieldsFromTable:like: to use backtick quoted strings for table and fieldnames * added MCPConnection listTablesFromDB for a complete table list * added SPStringAdditions.h to various files to prevent warnings * added sheets for duplicate/rename DB in DBView.xib * added duplicate/rename menu items to MainMenu.xib * added outlets in TableDocument: databaseNewSheet databaseRenameSheet databaseCopyNameField databaseRenameNameField copyOnlyStructureButton copyDatabaseButton renameDatabaseButton * added methods in TableDocument: getConnection, copyDatabase, renameDatabase, _copyDatabase, _renameDatabase * added OCMock Framework for object mocking in tests * added group Others/DatabaseActions
* changed many occurrences of "REMOVE" to "DELETE", eg. "DELETE DATABASE"jakob2010-04-221-4/+4
|
* - Change target action of export current table/browse view to exportTable: ↵rowanbeentje2010-04-181-56/+42
| | | | (from export:). Same action, but additional validation is performed on menus with exportTable: selected, so that the menu items can't be used when no table is selected. This addresses http://spbug.com/l/123 .
* Add a 'Show Create Syntax...' menu item to the tables list context menu and ↵stuconnolly2010-04-111-244/+22
| | | | 'gear' menu.
* • added "Import from Clipboard" ⌥⇧⌘IBibiko2010-04-101-6/+271
| | | | | | - sheet showing the first 4kB of pasteboard content and the SQL/CSV accessory view - pasteboard content will be saved as temp file and read by using the current table/connection encoding
* Add a new gear drop down menu to the connection favorites table view ↵stuconnolly2010-03-311-288/+5
| | | | containing the remove, duplicate and sort favorites menu items. Also, fix the selection of newly added and duplicated favorites because of sorting options being applied.
* - Ensure Copy [with Column Names]/Copy As SQL are disabled on the trigger ↵rowanbeentje2010-03-291-6/+5
| | | | and relations views. This fixes the copy parts of http://log.sequelpro.com/view/53
* Add the ability to sort the connection favorites table view in the ↵stuconnolly2010-03-271-5/+288
| | | | preferences. Sort options are by name, host or type as well as the option to be sorted in reverse order. This implements issue #490.
* Revent menu item change that shouldn't have been committed.stuconnolly2010-03-271-196/+90
|
* Fix an exception caused when selecting the default favorite popup button. ↵stuconnolly2010-03-271-246/+217
| | | | Caused by the addition of validateMenuItem: in r2015.
* • changed behaviour of ^⌥⌘F "Filter Table" or "Change Focus to Table ↵Bibiko2010-03-251-7/+7
| | | | | | | | List" - if > 20 tables are listed it sets the focus on the search field - if <= 20 it sets the focus on the table list, and - if no selection - it selects the first table item - this fixes i597
* • CSV Import Field MapperBibiko2010-03-221-2/+3
| | | | | - added the chance to mark a global value as SQL statement in the sheet to allow to use a calculated value like LENGTH(`foo`) or NOW() while inserting/replacing/updating • added ^⌥⌘N short-cut Navigator (still hidden)
* • some progress of the navigator approach (not yet active - hidden main ↵Bibiko2010-03-181-5/+268
| | | | menu item)
* Add a 'Keyboard Shortcuts' menu item to the 'Help' menu which opens the page ↵stuconnolly2010-03-101-239/+51
| | | | http://www.sequelpro.com/docs/Keyboard_Shortcuts.
* • improved tooltip behaviour of SPNarrowDownCompletion's tableViewBibiko2010-03-091-2/+261
| | | | • added "Filter Tables…" ^⌥⌘F" to main menu > Table which sets the focus to TablesList's search field if visible
* Until we can find a better way of doing this and to prevent a conflict with ↵stuconnolly2010-03-081-5/+7
| | | | the query favourites menu popup, change the 'Filter Content...' menu item's shortcut to control+cmd+F.
* Add a new 'Filter Content...' menu item to the 'Table' menu that switches to ↵stuconnolly2010-03-081-9/+100
| | | | the content view and places the focus on the filter field.
* • bound ⌥⌘H to Mac's default "Hide others"; fixes i561Bibiko2010-02-041-4/+4
| | | | •rebound ⌥⌘Y to open the "Query History"
* • CMTextViewBibiko2010-02-021-7/+7
| | | | | | - suppress current query/syntax highlighting for text buffer size > 20MB to allow at least editing and performing queries • Main Menu - set hidden new Export menu item to key ⇧⌘E and reset "Use selection for searching" to ⌘E since it's a standard Mac binding
* Added preliminary support for triggers. You can access the tab via the bamse162010-01-311-5/+61
| | | | | | | | | | | | | | | | | | | | menu item View > Table Triggers (apple-6). Heavily copied from Relations tab, lots of functionality missing. Just lists the triggers for the table now. M Source/SPTableData.m M Source/SPConstants.h M Source/SPConstants.m A Source/SPTableTriggers.h A Source/SPTableTriggers.m M Source/TableDocument.h M Source/TableDocument.m M Source/SPTableData.h M Interfaces/English.lproj/MainMenu.xib M Interfaces/English.lproj/DBView.xib M sequel-pro.xcodeproj/project.pbxproj
* The result of being bored. Add a nicer looking about panel based on Adium's.stuconnolly2009-11-191-19/+30
|
* In an aid to split up the functionality of the TableDocument class as well ↵stuconnolly2009-11-131-34/+62
| | | | as reducing the overall size of DBView, split out the server variables sheet into it's own controller and XIB in the same way as the new server processes sheet is implemented.
* - New server processes panel, accessible via the 'Database' menu and ↵stuconnolly2009-11-121-55/+262
| | | | | | | | alt+cmd+P. Includes the ability to kill queries and connections as well as live filtering support and the ability to save all processes or the current filtered set to a file. Implements issue #458. - Reorganise 'Database' menu. - Give 'Flush Privileges' key equivalent of shift+cmd+F.
* Add a 'Provide Feedback' menu item to the help menu, which links to ↵stuconnolly2009-10-161-9/+59
| | | | http://www.sequelpro.com/docs/Contact_the_developers.
* • added to SP's Dock menu "Open…" and "Open Recent" menu itemsBibiko2009-10-151-3/+95
|
* • cleaned and improved AppleScript supportBibiko2009-10-141-1/+9
| | | | | | - now 'activate' & 'quit' works due to that fact that if an app is scriptable the Dock's "Quit" command calls handleQuitScriptCommand: which has to be implemened - fixed issue that SPAppController has to be the delegate for NSApp to support AS - added support for AS à la: "get name of first document" or "close every window" etc.