summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* canvas-view: simplify for multiscreen GTK changesCosimo Cecchi2013-04-082-104/+3
| | | | | Since now GdkDisplay objects in GTK have one single GdkScreen, this code can now be simplified under that assumption.
* application: simplify for multiscreen GTK changesCosimo Cecchi2013-04-081-39/+33
| | | | | Since now GdkDisplay objects in GTK have one single GdkScreen, this code can now be simplified to avoid iteration on screens.
* view: remove NautilusViewFactoryCosimo Cecchi2013-04-0816-295/+60
| | | | | | We stopped having pluggable views a long time ago; remove the factory code completely in favor of a simple nautilus_view_new() that looks at the specified view ID among the list of views we support.
* empty-view: remove obsolete APICosimo Cecchi2013-04-081-7/+0
|
* slot: simplify codeCosimo Cecchi2013-04-081-3/+1
| | | | Reuse a helper we already have for this condition.
* view-factory: remove supports_uri()Cosimo Cecchi2013-04-087-150/+4
| | | | | There's really no use for this in the current Nautilus, and we're getting rid of nautilus-view-factory.
* app-menu: add accelerators for app menu actionsCosimo Cecchi2013-04-081-0/+5
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=697252
* Small fix in Serbian translationМилош Поповић2013-04-082-514/+512
|
* Updated Danish translationAsk H. Larsen2013-04-061-312/+315
|
* file: do not reverse collated order for files with same search rankCosimo Cecchi2013-04-041-0/+3
| | | | | | | | | When two search results rank equally, we fall back to the collated order. Since search is usually ranked reversed (highest at the top), we need to ensure we don't accidentally reverse the collated order as well. https://bugzilla.gnome.org/show_bug.cgi?id=688772
* query: rank prefix matches lower than exact matchesCosimo Cecchi2013-04-041-2/+5
| | | | | Count how many letters are left after the string occurrence, and subtract that from the match score.
* search-hit: add a missing breakCosimo Cecchi2013-04-041-0/+1
|
* sendto: We only send mails nowBastien Nocera2013-04-041-4/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=680983
* Added missing ellipses in app menu.Adam Dingle2013-04-041-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=697108
* search-engine-simple: don't follow symlinks when descendingCosimo Cecchi2013-04-041-1/+2
| | | | | | | | It's inconsistent with "find" and it can yield to unexpectedly large result sets. Do not follow symlinks when recursing the search down the hierarchy. https://bugzilla.gnome.org/show_bug.cgi?id=697181
* query-editor: avoid focus change hack when focusing the search entryCosimo Cecchi2013-04-041-65/+3
| | | | | | | | | Code was very fragile and didn't work when the window wasn't initially realized, such as when launching a search from the Shell provider. We can get the same effect by moving the cursor at the end of the entry after the focus has been set. https://bugzilla.gnome.org/show_bug.cgi?id=697224
* view: allow copying, and not cutting, from Recent FilesCosimo Cecchi2013-04-031-4/+5
| | | | | | | | | Previously, we enabled the Cut action for the Recent location, and kept Copy and Copy To disabled. This should be the other way around, as copying a file from there is a valid option, whereas cutting/moving it doesn't make sense, being a virtual location. https://bugzilla.gnome.org/show_bug.cgi?id=690138
* Updated Slovak translationDušan Kazik2013-04-031-329/+304
|
* Updated Norwegian bokmål translationKjartan Maraas2013-04-031-273/+277
|
* build: require gsettings-desktop-schemas 3.8.0Cosimo Cecchi2013-03-311-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=696962
* Updated Slovenian translationAndrej Žnidaršič2013-03-301-608/+347
|
* One fix to the Finnish translationVille-Pekka Vainio2013-03-291-5/+5
|
* Updated Hebrew translation.Yaron Shahrabani2013-03-281-316/+320
|
* Updated Odia Language along with FUEL implementationManojKumar Giri2013-03-281-405/+299
|
* Finnish translation update by Jiri GrönroosVille-Pekka Vainio2013-03-261-5/+6
|
* Fixed syntax in translation of Keywords stringDaniel Mustieles2013-03-261-1/+1
|
* Updated Telugu TranslationPraveen Illa2013-03-261-280/+156
|
* Update uk translationDaniel Korostil2013-03-261-845/+924
|
* Updated Indonesian translationDirgita2013-03-261-816/+866
|
* Updated Lithuanian translationMantas Kriaučiūnas2013-03-251-286/+285
|
* Updated Odia Language along with FUEL implementationManojKumar Giri2013-03-251-85/+69
|
* view: use g_app_info_get_name() for application names in Open With menusCosimo Cecchi2013-03-252-4/+4
| | | | | | | This is consistent with the Shell and what is used in the properties/Open With dialog. https://bugzilla.gnome.org/show_bug.cgi?id=696374
* query-editor: Fix initial key press processing with async IMsRui Matos2013-03-251-31/+7
| | | | | | | | | | | | When using an async input method we can't rely on the entry's text or preedit text being updated as a direct result of processing a key event. Instead, we can look at the event keyval and check if it's going to yield a printable character to decide if we are interested in the event. https://bugzilla.gnome.org/show_bug.cgi?id=696260
* query-editor: Make IMs process the fake event we generate at firstRui Matos2013-03-251-0/+16
| | | | | | Input methods will typically only process events after getting focus. https://bugzilla.gnome.org/show_bug.cgi?id=696260
* query-editor: Don't set the entry's text if not strictly neededRui Matos2013-03-251-1/+7
| | | | | | | | | | | | If the current text in the entry is equal to the new query's text we shouldn't needlessly set the text on the entry since that affects the cursor position. gtk_entry_set_text() already does a similar check internally but that isn't enough here because NautilusQuery doesn't keep the full string but instead a stripped version of it. https://bugzilla.gnome.org/show_bug.cgi?id=696430
* eel-editable-label: Fix string length on retrieve-surrounding handlerRui Matos2013-03-251-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=696532
* sidebar: increase default sidebar widthCosimo Cecchi2013-03-251-1/+1
| | | | | | | So that at least in english locale, entries can fill the width without ellipsizing. https://bugzilla.gnome.org/show_bug.cgi?id=696213
* Updated Telugu translationsKrishnababu Krothapalli2013-03-251-1180/+1658
|
* release: prepare for 3.8.03.8.0Cosimo Cecchi2013-03-252-1/+5
|
* Completed nautilus for MalayalamAni Peter2013-03-251-369/+563
|
* l10n: Update Japanese translationJiro Matsuzawa2013-03-251-502/+507
|
* Updated kn translationsShankar Prasad2013-03-251-989/+1136
|
* [l10n] updated Italian translationLuca Ferretti2013-03-251-2/+2
|
* [l10n] updated Italian translationLuca Ferretti2013-03-251-5/+4
|
* Fix translations of keywords in .desktop filesPiotr Drąg2013-03-244-4/+4
|
* Add Finnish date/time format translations and source links in comments.Timo Jyrinki2013-03-241-13/+15
|
* Finnish translation update by Jiri GrönroosTimo Jyrinki2013-03-241-69/+58
|
* Update French translationAlexandre Franke2013-03-241-2/+2
|
* Updated slovak translationDušan Kazik2013-03-241-1175/+1145
|
* mime-actions: filter applications not supposed to be visibleCosimo Cecchi2013-03-221-0/+24
| | | | | | | Ensure NoDisplay=True applications don't end up in our Open With context menus. https://bugzilla.gnome.org/show_bug.cgi?id=696372