summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update Occitan translationgnome-3-2Cédric Valmary2016-10-111-127/+552
|
* Update Occitan translationCédric Valmary2016-10-111-2755/+615
|
* Revert "Updated Telugu Translation"Praveen Illa2012-08-031-589/+661
| | | | | | This reverts commit a7fbf7e1f1aa110bfda59052187c31e9c4720a9b. By mistake committed to 3-2 branch instead of master
* Updated Telugu TranslationPraveen Illa2012-08-031-661/+589
|
* Updated Telugu TranslationPraveen Illa2012-05-071-164/+166
|
* Bump version to 3.2.23.2.2Owen W. Taylor2012-01-182-2/+13
| | | | Update NEWS
* meta-window-actor: Add error traps in meta_window_actor_set_redirectedAdel Gadllah2012-01-171-1/+6
| | | | | meta_window_actor_set_redirected makes X calls on the client window so it need to set error traps.
* util: Fix memory leak in meta_later_removeJasper St. Pierre2012-01-171-1/+1
| | | | | | | | | | | | | | | | | | | | We never destroy the later list that's added by meta_later_add. ==4289== 16 bytes in 1 blocks are definitely lost in loss record 1,632 of 7,258 ==4289== at 0x4C2640D: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) ==4289== by 0x5178D9F: standard_malloc (gmem.c:88) ==4289== by 0x5178E37: g_malloc (gmem.c:164) ==4289== by 0x51924B5: g_slice_alloc (gslice.c:842) ==4289== by 0x5194521: g_slist_insert_sorted_real (gslist.c:900) ==4289== by 0x519465A: g_slist_insert_sorted (gslist.c:957) ==4289== by 0x4EA609A: meta_later_add (util.c:876) ==4289== by 0x4E9C330: meta_screen_queue_workarea_recalc (screen.c:2640) ==4289== by 0x4E9A360: update_num_workspaces (screen.c:1646) ==4289== by 0x4E99026: meta_screen_new (screen.c:924) ==4289== by 0x4E7AB51: meta_display_open (display.c:803) ==4289== by 0x4E9168E: meta_run (main.c:552) https://bugzilla.gnome.org/show_bug.cgi?id=642652
* Updated Telugu translationskrishnababu k2011-10-251-1285/+1049
|
* Updated Vietnamese translationNguyễn Thái Ngọc Duy2011-10-181-16/+18
|
* po/vi: import from Damned LiesNguyễn Thái Ngọc Duy2011-10-181-256/+327
|
* Bump version to 3.2.13.2.1Owen W. Taylor2011-10-172-1/+24
| | | | Update NEWS
* window: Correct coordinates for the configure eventJasper St. Pierre2011-10-171-4/+8
| | | | We should still correct the coordinates for withdrawn windows.
* frame: Make sure to offset by invisible borders when unmanaging windowsJasper St. Pierre2011-10-171-2/+5
| | | | | | | | When we reparent a window to the root when we're exiting, we need to offset the position by the invisible borders, otherwise windows will creep up and to the left. https://bugzilla.gnome.org/show_bug.cgi?id=660848
* Make meta_display_unmanage_screen publicJasper St. Pierre2011-10-172-4/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=660848
* tiling: keep track of the monitor where a window was tiledRui Matos2011-10-185-11/+37
| | | | | | | | | | | meta_window_get_current_tile_area() computes the area where the tiled window should be based on the current pointer position but that's only meaningful when the user is actually dragging the window. When running the tiling constrain the pointer might be on other monitor and at that point the window jumps to this other monitor. https://bugzilla.gnome.org/show_bug.cgi?id=642580
* tiling: for tiled maximization use the tile area as target size/positionRui Matos2011-10-182-2/+10
| | | | | | | | | | | When using more than one monitor, tiled maximization can be triggered with the pointer in one monitor while most of the window area remains in another. This means that the maximization constraint would maximize the window into the wrong monitor as it uses the work area size/position as target. Fix this by using the current tile area as target size/position. https://bugzilla.gnome.org/show_bug.cgi?id=657519
* MetaWindowActor: don't unredirect ARGB32 windowsRui Matos2011-10-181-1/+2
| | | | | | | In particular this would a cause a "flash" when showing the tile preview for maximization on a non-primary monitor. https://bugzilla.gnome.org/show_bug.cgi?id=662053
* Update window->has_resize_func at the right time when unfullscreeningOwen W. Taylor2011-10-171-3/+5
| | | | | | | | Since the frame window size that meta_window_move_resize() uses depends on whether the window has horizontal/vertical resize functionality, we need to update this flag before we resize the window. https://bugzilla.gnome.org/show_bug.cgi?id=659854
* window.c: use a consistent mapping from frame_type => decoratedOwen W. Taylor2011-10-171-4/+2
| | | | | | | | | | If a window had a type hint intended for override-redirect windows like NOTIFICATION, we ended up with a window that was decorated but with a frame type of FRAME_TYPE_LAST, causing assertion failures. Fix this by making recalc_window_features() just call meta_window_get_frame_type(). https://bugzilla.gnome.org/show_bug.cgi?id=599988
* Allow keyboard ops to work without a pointer grabMatthias Clasen2011-10-151-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=660457
* Updated Turkish translationMuhammet Kara2011-10-101-116/+167
|
* theme: Remove outdated assertionSandro Mani2011-10-082-3/+0
| | | | | | | | The theme state used to use GtkStateType, but was ported over to GtkStateFlags, leaving behind a broken assertion that fails when using certain Metacity themes, for example Nodoka. https://bugzilla.gnome.org/show_bug.cgi?id=661286
* Various annotation fixesJasper St. Pierre2011-10-043-5/+13
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=660854
* frame: destroy window->frame_bounds when destroying the frameRui Matos2011-10-041-0/+5
| | | | | | | Since window->frame_bounds is used as a cache we need to invalidate it when destroying the frame. https://bugzilla.gnome.org/show_bug.cgi?id=660773
* theme: Don't add invisible borders for windows that can't be resizedJasper St. Pierre2011-09-291-21/+23
| | | | | | | Invisible borders are all about resizing -- in the case that a window cannot be resized, it makes no sense to add them. https://bugzilla.gnome.org/show_bug.cgi?id=659854
* meta-window-group: Plug memory leakAdel Gadllah2011-09-291-3/+6
| | | | | | We have to free the list returned by clutter_actor_get_effects() . https://bugzilla.gnome.org/show_bug.cgi?id=660464
* Updated Serbian translationМирослав Николић2011-09-282-513/+625
|
* Updated Finnish translationTommi Vainikainen2011-09-271-1338/+729
|
* .gitignore: Ignore generated POT file (po/*.pot)Tommi Vainikainen2011-09-271-0/+1
|
* Bump version to 3.2.03.2.0Owen W. Taylor2011-09-262-2/+16
| | | | Update NEWS
* [l10n]Updated Catalan (Valencian) translationCarles Ferrando2011-09-261-132/+181
|
* Update Czech translationPetr Kovar2011-09-261-139/+193
|
* Updated Japanese translationOKANO Takayoshi2011-09-251-8/+8
|
* Updated Basque languageInaki Larranaga Murgoitio2011-09-251-201/+279
|
* window: Fix _NET_FRAME_EXTENTS to work properlyJasper St. Pierre2011-09-241-4/+7
| | | | | | | | _NET_FRAME_EXTENTS should contain the difference between where a window asked to be placed, and where it is. Ideally, this should be the same as the visible extents. https://bugzilla.gnome.org/show_bug.cgi?id=659848
* window: Fix window placement to exclude invisible bordersJasper St. Pierre2011-09-241-4/+4
| | | | | | | | A window can specify geometry that it is placed at. We need to exclude invisible borders when calculating where to place the window, otherwise the window will have a strange offset. https://bugzilla.gnome.org/show_bug.cgi?id=659848
* [l10n] Updated German translationMario Blättermann2011-09-241-165/+224
|
* Updated Korean translationChangwoo Ryu2011-09-241-143/+182
|
* Update Assamese translationNilamdyuti Goswami2011-09-221-2652/+899
|
* configure.ac: switch to dist-xzOwen W. Taylor2011-09-211-1/+1
|
* Updated Hungarian translationGabor Kelemen2011-09-211-167/+253
|
* Updated Brazilian Portuguese translationDjavan Fagundes2011-09-201-134/+205
|
* Bump version to 3.1.923.1.92Owen W. Taylor2011-09-202-1/+16
| | | | Update NEWS
* frames: Take out accidental south resize disable of attached dialogsJasper St. Pierre2011-09-201-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=657795
* MetaWindowActor: Skip paint optimization for actors with an effectAdel Gadllah2011-09-201-0/+19
| | | | | | | | The optimizations might not work for an actor with an effect, and our clipped drawing interferes badly with the operation of CoglOffscreenEffect. https://bugzilla.gnome.org/show_bug.cgi?id=659523
* MetaWindowActor: unset the shaped texture overlay path for frameless windowsRui Matos2011-09-191-1/+5
| | | | | | | | | | | When a window loses its frame we must unset any overlay path previously set on the shaped texture. Not doing so would cause rendering glitches near the window corners in e.g. chrome/chromium by changing the Appearance preference "Use system title bar and borders" → "Hide system title bar and use compact borders". https://bugzilla.gnome.org/show_bug.cgi?id=659477
* [l10n]Updated Catalan translationJoan Duran2011-09-191-138/+196
|
* Updated Danish translationJoe Hansen2011-09-181-1934/+195
|
* Updated Japanese translationJiro Matsuzawa2011-09-171-104/+104
|