Slashdot Mirror


LibreOffice Ported To Run On Wayland

An anonymous reader writes: LibreOffice has lost its X11 dependency on Linux and can now run smoothly under Wayland. LibreOffice has been ported to Wayland by adding GTK3 tool-kit support to the office suite over the past few months. LibreOffice on Wayland is now in good enough shape that the tracker bug has been closed and it should work as well as X11 except for a few remaining bugs. LibreOffice 5.0 will be released next month with this support and other changes outlined by the 5.0 release notes.

3 of 216 comments (clear)

  1. What's the point? by amalcolm · · Score: 2, Interesting

    What does Wayland solve for me, a standard Ubuntu user? What I have wordks ok, why does it need to change?

    --
    Time for bed, said Zebedee - boing
    1. Re:What's the point? by kenaaker · · Score: 5, Interesting

      This statement is fundamentally crap. Every day I run multiple kde 4 applications on multiple systems back to a single desktop with ssh. The applications are not degraded and I don't have to disable any X11 features to do it. Occasionally I even use OpenGL applications remotely and they perform just fine.

    2. Re:What's the point? by prefec2 · · Score: 4, Interesting

      Beside your tone, you also missed the point. X11 is a graphical terminal technology where an application sends UI draw information to a server which renders it into graphic memory which is finally displayed on a screen. All input is collected and transmitted to the application. The server understands a simple protocol based on graphical primitives including fonts. In later years the font feature got extended, but the principle was not violated by that extension. The problem started when people wanted to use 3D and watch videos. Also audio was outside of the scope of X11 and of course printing. The addition of video required direct hardware access to be fast enough (especially in the late 1990s and early 2000s). Therefore, stuff like DRI where realized, which broke with the X11 principle that an application sends drawing information to the server which then does all the graphic stuff.

      I hope that clears things up.