• theshatterstone54@feddit.uk
    link
    fedilink
    arrow-up
    1
    ·
    15 days ago

    So… there will be Alphas 5 and 6. And we got Alpha 4 a week late, compared to the old release schedule of the last Thursday of every month. And a lot of the things that were meant for Alphas 3 and 4 were pushed back. I hope that System76 doesn’t encounter more features that push things back further (the way VRR seems to have done), for their own sake. That way, they can keep up a lot of hype around the Betas and the release of Epoch 1.

    • cplusplus@programming.dev
      link
      fedilink
      English
      arrow-up
      2
      ·
      14 days ago

      And we got Alpha 4 a week late, compared to the old release schedule of the last Thursday of every month

      i bet most likely due to the US holiday. 28/11 and 29/11 were the Thanksgiving and Black Friday holiday in US

  • Mwa@lemm.ee
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    15 days ago

    Ngl this Desktop might make me use Popos and even outside Popos it looks nice,Idk about X Fallback. support (Since i play Beamng Which does not run on Nvidia Wayland And i cannot figure out a way to fix it),And i wanna see peoples opinion on it or if people will care anymore.

  • Karna@lemmy.mlOP
    link
    fedilink
    arrow-up
    1
    ·
    15 days ago

    Variable refresh rate (VRR) allows your display to match the framerate of an image source, such as a game — and doing so prevents screen tearing. Support for VRR has been added to the cosmic-comp compositor and Displays Settings. You can set VRR to be either always on or automatic, which will enable VRR for fullscreen content.

    Source: https://blog.system76.com/post/cosmic-alpha-4

      • flashgnash@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        13 days ago

        Thought the whole point was that it forced you to handle memory properly and automatically released things when they go out of scope

        What kind of situation can cause a memory leak in rust

        • naonintendois@programming.dev
          link
          fedilink
          arrow-up
          1
          ·
          13 days ago

          You can have a memory leak when items are still in scope in some loop or when you have a reference count cycle. The latter happens with the Rc/Arc types in rust.

          An example for the former can be a web server that keeps track of every request it’s ever received in memory. You will eventually run out of memory. But you did not violate any memory rules (dangling pointer, etc.). Memory leaks can be caused by design issues.