summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* nautilus-view: Change move to trash acceleratorwip/delete_notificationCarlos Soriano2015-01-281-1/+1
| | | | | | | | Now that we have an in app notification, the user has a feedback if they push Delete key as an accident. So we no longer need to make the move to trash action difficult to do. So change the accelerator of move to trash from <shift>Delete to just Delete
* general: Add in app notification for move to trashCarlos Soriano2015-01-289-3/+536
| | | | | | | | | | | | | | | | We want to make sure the user has feedback when moving files to trash, so add an in app notification when some file has been moved to trash. Currently the notification manager only supports one notification at once, since the undo machinery only support to undo the last operation, not a specific operation. Even if we add support to it I'm not sure if multiple notifications of deleted files would be good, so instead of that just show one at once. To achieve that, connect to the undo state and delete all notification when the undo state changes. For that reason, we have to make sure that that's called before we add the new notification. So we set the undo action before the delete_callback, where the new notification is added.
* general: Add libgd as a submoduleCarlos Soriano2015-01-286-1/+15
| | | | We will use it for in app notifications.
* list-view: enable horizontal grid linesCosimo Cecchi2015-01-271-0/+1
| | | | To match mockups.
* list-view: increase vertical paddingCosimo Cecchi2015-01-271-3/+19
| | | | To match mockups.
* Updated Slovak translationDuĊĦan Kazik2015-01-261-2389/+1577
|
* nautilus-file-undo-operations: Fix crash for multiple deleted filesCarlos Soriano2015-01-261-3/+3
| | | | | | | | | | | | Previously when using GtkMenuItem, setting NULL to a label of a menu item was not a problem, although it was a bug anyway since the label was present as empty. We were doing that with the Undo and Redo labels on the toolbar. Now with GMenuItem it was crashing when deleting more than a file since the label was NULL and the menu item couldn't be created. To fix it, make sure we always set a label for the trash delete job.
* toolbar: remove debug spewCosimo Cecchi2015-01-261-2/+0
|
* toolbar: cleanup handling of zoom actionsCosimo Cecchi2015-01-267-107/+38
| | | | | Store the entire state in the action. The toolbar will be called to update the state anyway...
* toolbar: don't read the sort hint if there's no sort actionCosimo Cecchi2015-01-261-12/+15
|
* toolbar: use g_simple_action_set_state_hint() for sort actionCosimo Cecchi2015-01-264-26/+54
| | | | This way we can avoid directly poking at the toolbar.
* window: move undo actions to the window action groupCosimo Cecchi2015-01-262-109/+79
| | | | | They are shared between different views - and windows actually. So it makes more sense for them to live here for now.
* toolbar: rework how Undo/Redo actions are added to the menuCosimo Cecchi2015-01-265-28/+41
| | | | | Currently we always reload the menu from scratch and reset the menu button; the intent of the code here is to modify the menu in-place.
* view: plug memory leaksCosimo Cecchi2015-01-261-2/+6
| | | | We were not freeing the strings coming from the undo manager.
* toolbar: plug a couple of memory leaksCosimo Cecchi2015-01-261-0/+3
|
* window-slot: remove unneeded includeCosimo Cecchi2015-01-261-1/+0
|
* toolbar: remove unneeded instructionCosimo Cecchi2015-01-261-2/+0
|
* Update Aragonese translationDaniel Martinez2015-01-251-2243/+2032
|
* window: simplify handling of enter-location actionCosimo Cecchi2015-01-253-19/+5
| | | | We don't need it on both the application and the window.
* toolbar: remove unused declarationCosimo Cecchi2015-01-251-2/+0
|
* toolbar: move updating of navigation actions in NautilusWindowCosimo Cecchi2015-01-253-21/+9
|
* toolbar: formatting cleanupCosimo Cecchi2015-01-251-4/+2
|
* toolbar: don't explicitly call to update the view modeCosimo Cecchi2015-01-253-32/+33
| | | | The toolbar can just listen to changes in the action state.
* toolbar: don't explicitly show/hide the sort menuCosimo Cecchi2015-01-253-10/+2
| | | | Look at whether the action exists in the view action group instead.
* toolbar: don't explicitly show/hide visible columns menu itemsCosimo Cecchi2015-01-253-10/+3
| | | | Look at whether the action exists in the view action group instead.
* view: make nautilus_view_get_action_group a base class methodCosimo Cecchi2015-01-252-2/+0
| | | | No need to have subclasses override this.
* toolbar: don't explicitly show/hide stop/reload buttonsCosimo Cecchi2015-01-253-36/+33
| | | | | Just connect to the action enabled notification from the window's GActionGroup.
* Updated Hebrew TranslationYosef Or Boczko2015-01-241-1818/+1369
|
* nautilus-view: fix memory leakCarlos Soriano2015-01-241-1/+4
|
* Remove unused fileCarlos Soriano2015-01-241-105/+0
| | | | | Commit bb884cb6151a make unused some files, but they got added again at some point while rebasing. Delete one more.
* release: prepare for 3.15.43.15.4Cosimo Cecchi2015-01-232-1/+14
|
* Update POTFILES.in for releaseCosimo Cecchi2015-01-231-7/+4
|
* Remove now unused nautilus-window-menus.c fileCosimo Cecchi2015-01-231-726/+0
|
* Remove old GtkUIManager XML definitionsCosimo Cecchi2015-01-233-225/+0
|
* canvas-container: fix compute_stretch testsCosimo Cecchi2015-01-231-3/+3
| | | | | Since we changed the small icon size value, this test should be updated with the new expected results.
* canvas-container: take the canvas icon size into account for icon sizeCosimo Cecchi2015-01-241-3/+8
| | | | | | When scaling the icon size with the grid unit, take the nominal icon size into account too, since the actual icon we get back might be smaller than that - e.g. if we have a narrow thumbnail with little text.
* canvas-item: change the maximum text size at standard zoomCosimo Cecchi2015-01-241-4/+5
| | | | To match mockups.
* canvas-container: add a comment to explain STANDARD_ICON_GRID_WIDTHCosimo Cecchi2015-01-241-0/+7
| | | | This constant is very important and needs explaining.
* canvas-item: remove useless checkCosimo Cecchi2015-01-241-6/+2
| | | | The max text width is always > 0.
* canvas-container: formatting cleanupsCosimo Cecchi2015-01-241-4/+4
|
* theme: add theming for selected dim labels for canvas itemsCosimo Cecchi2015-01-241-0/+4
|
* canvas-item: fix an incorrect commentCosimo Cecchi2015-01-241-1/+1
| | | | This size is based off the NAUTILUS_CANVAS_ICON_SIZE_STANDARD icon size.
* canvas-container: remove an always true parameterCosimo Cecchi2015-01-241-17/+14
|
* canvas-container: remove unused defineCosimo Cecchi2015-01-241-2/+0
|
* theme: add a style for dim-label canvas item labelsCosimo Cecchi2015-01-241-0/+4
|
* canvas-view-container: remove unused definesCosimo Cecchi2015-01-241-3/+0
|
* canvas-view-container: change icon captions logicCosimo Cecchi2015-01-241-2/+2
| | | | | We now can show one caption at small zoom, two at normal and three at maximum zoom. The default is to show no captions.
* canvas-view-container: don't cache icon captions attributesCosimo Cecchi2015-01-241-26/+14
| | | | This will lead the code to caching the wrong value.
* view: fix possibly uninitialized variableCosimo Cecchi2015-01-241-0/+1
|
* view: code formattingCosimo Cecchi2015-01-241-6/+3
|