- Update to version 3.4.1.
OBS-URL: https://build.opensuse.org/package/show/X11:Cinnamon:Factory/nemo?expand=0&rev=103
This commit is contained in:
parent
61e0f542a0
commit
0c09ce2f81
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c0bd62719fcdf8cb4c66cf37dc3ff8bf7b788ce13cb683827e86a80c890d01fc
|
||||
size 1366150
|
3
nemo-3.4.1.tar.gz
Normal file
3
nemo-3.4.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fb3fdaf85cd1a336d97a838b40655d5c44bdc7894992595d617c24a5c51ce9ad
|
||||
size 1407786
|
@ -8,25 +8,6 @@
|
||||
}
|
||||
|
||||
static gboolean
|
||||
--- a/libnemo-private/nemo-desktop-utils.c
|
||||
+++ b/libnemo-private/nemo-desktop-utils.c
|
||||
@@ -82,15 +82,7 @@ nemo_desktop_utils_get_primary_monitor (
|
||||
#if GTK_CHECK_VERSION (3, 22, 0)
|
||||
ensure_display ();
|
||||
|
||||
- gint n_mon = gdk_display_get_n_monitors (default_display);
|
||||
- gint i;
|
||||
-
|
||||
- for (i = 0; i < n_mon; i ++) {
|
||||
- GdkMonitor *monitor = gdk_display_get_monitor (default_display, i);
|
||||
- if (gdk_monitor_is_primary (monitor)) {
|
||||
- return i;
|
||||
- }
|
||||
- }
|
||||
+ return gdk_display_get_primary_monitor (default_display);
|
||||
#else
|
||||
ensure_screen ();
|
||||
|
||||
--- a/libnemo-private/nemo-monitor.c
|
||||
+++ b/libnemo-private/nemo-monitor.c
|
||||
@@ -78,6 +78,7 @@ schedule_call_consume_changes (void)
|
||||
|
93
nemo.changes
93
nemo.changes
@ -1,3 +1,96 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun May 7 11:23:03 UTC 2017 - sor.alexei@meowr.ru
|
||||
|
||||
- Update to version 3.4.1 (changes since 3.2.2):
|
||||
* Nemo-Icon-View: Fix missing cast warning.
|
||||
* restore prototype lost in Nemo 3.2.0.
|
||||
* Add a missing include.
|
||||
* Fix quirks with tabs and search widgets.
|
||||
* Don't reload while a reload is ongoing.
|
||||
* Wildcard search for search-engine-simple.
|
||||
* Fix a crash when attempting to delete an empty selection on
|
||||
the desktop.
|
||||
* Update polkit pkexec support.
|
||||
* Fix search never resolving.
|
||||
* nemo-dbus-manager.c: Add MoveURIs method.
|
||||
* Improve date display.
|
||||
* Use 24-hour date format when requested.
|
||||
* Translate date formats.
|
||||
* nautilus-file: Implement smarter dates.
|
||||
* nautilus-list-view: Add a modified column with time.
|
||||
* nautilus-file: Clarify translators comments.
|
||||
* nautilus-file: Fix a memory leak.
|
||||
* nautilus-file: Fix code style.
|
||||
* Mark time format with xgettext:no-c-format.
|
||||
* file: Fix date string day difference calculation.
|
||||
* Use long day and month names if space allows.
|
||||
* Make libselinux dependency controllable by configure switch.
|
||||
* Raise tracker version.
|
||||
* autogen.sh: Don't run aclocal.
|
||||
* location-bar: Use a GFile in location-changed signal.
|
||||
* l10n: Generate desktop file via generate_aditional_file.
|
||||
* Add Cinnamon panel shortcuts (trash, computer, etc.) to the
|
||||
launcher.
|
||||
* Fix compiler warnings in the eel/ directory.
|
||||
* nemo-desktop-window, nemo-blank-desktop-window: Clean
|
||||
delete-event handling up.
|
||||
* window: Make NemoWindow a GtkApplicationWindow.
|
||||
* nemo-file-operations.c: Use only template filenames for new
|
||||
files.
|
||||
* nemo-navigation-action.c: Add new_tab_action.
|
||||
* configure.ac: Remove CFLAGS line - the optimisation is
|
||||
dangerous, and the fatal warnings for unused stuff was just
|
||||
annoying when trying to refactor - warnings are enough.
|
||||
* Use GTimer for tracking startup speed, and also use one to
|
||||
track view loads.
|
||||
* nemo-view.c: Add idle timer for benchmarking.
|
||||
* Split off desktop handling into new process.
|
||||
* Split off old icon container into the existing subclass
|
||||
NemoIconViewContainer and set up a new subclass -
|
||||
NemoIconViewGridContainer to match with a new
|
||||
NemoDesktopIconGridView class. The old style is accessible via
|
||||
the org.nemo.desktop 'use-desktop-grid' setting.
|
||||
* Fix autostart file name so cinnamon session doesn't fail.
|
||||
* Remove a bunch of comments, fix auto-layout not sticking.
|
||||
* nemo-icon-container: Move debug drawing to the grid container
|
||||
subclass. Trigger it using NEMO_DEBUG=Desktop when running
|
||||
nemo-desktop.
|
||||
* Implement horizontal layout.
|
||||
* General fixes, icons, metadata issues between monitors. Provide
|
||||
per-monitor metadata for desktop containers.
|
||||
* Improve DND during keep-aligned, allow for insertion of items.
|
||||
Implement zoom scaling and allow adjustment.
|
||||
* Improve highlighting of hovered items
|
||||
* Fix desktop folder launching - xdg-open was never intended to be
|
||||
the final answer.
|
||||
* Fix ellipses change listening - the is_desktop flag was being
|
||||
set too late in the view construction process to connect to the
|
||||
correct gsettings key.
|
||||
* Fix regression causing metadata to be inconsistent in nemo
|
||||
client window when navigating to and away from the Desktop
|
||||
directory.
|
||||
* Add some gsettings listeners for grid stuff.
|
||||
* Fix dnd between monitors - clamp grid values, and ensure we
|
||||
have a grid on the target monitor.
|
||||
* Fix zoom switching, dnd placement, snapping.
|
||||
* nemo-desktop-utils.c: Improve how we store the monitor number
|
||||
for a desktop window.
|
||||
* Use black instead of theme colour for pre-light label
|
||||
highlighting.
|
||||
* nemo-icon-canvas-item.c: Extend redraw area slightly for canvas
|
||||
items. This ensures any small shadow we have is cleaned up
|
||||
after an item is de-selected.
|
||||
* nemo-desktop-icon-grid-view.c: Don't trigger a real update
|
||||
while updating menus.
|
||||
* Disable zoom for the desktop window (allow it only via context
|
||||
menu).
|
||||
* nemo-desktop-application: Clean some commented lines up.
|
||||
* Fix desktop file error (gh#linuxmint#nemo#1477).
|
||||
* nemo-navigation-action.c: Extend, Fix Middle-Click
|
||||
(gh#linuxmint#nemo#1478).
|
||||
* l10n: Update POT file.
|
||||
- Rebase nemo-void-return-no-return.patch.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 15 19:24:15 UTC 2016 - sor.alexei@meowr.ru
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package nemo
|
||||
#
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -20,7 +20,7 @@
|
||||
%define sover 1
|
||||
%define typelib typelib-1_0-Nemo-3_0
|
||||
Name: nemo
|
||||
Version: 3.2.2
|
||||
Version: 3.4.1
|
||||
Release: 0
|
||||
Summary: File browser for Cinnamon
|
||||
License: GPL-2.0+
|
||||
|
Loading…
Reference in New Issue
Block a user