Skip to content
Snippets Groups Projects
  1. Nov 02, 2022
  2. Aug 14, 2022
  3. Aug 13, 2022
  4. Aug 12, 2022
  5. Aug 10, 2022
  6. Aug 08, 2022
  7. Jul 28, 2022
  8. Jul 21, 2022
    • Evangelos Ribeiro Tzaras's avatar
      Prepare release of 1.0-4 · adfbc0b3
      Evangelos Ribeiro Tzaras authored
      adfbc0b3
    • Evangelos Ribeiro Tzaras's avatar
      d/patches: Work around construct property related build failure · 748e4fc6
      Evangelos Ribeiro Tzaras authored
      The old version used optional construct (only?) setters in
      Widgets/Status.vala like so:
      
      publi API.NotificationType? kind { get; construct set; }
      
      With newer vala this leads to build failures,
      because "construct" is not allowed for this property
      (presumably because '?' marks it as optional).
      
      The constructor uses a default value of `null` for the
      kind (API.NotificationType).
      
      We emulate the old behaviour by making the property mandatory (removing
      '?'), adding an 'UNSET' to the enum, defaulting to it and adjusting the
      `== null` checks to use `UNSET`.
      748e4fc6
  9. Jul 12, 2022
  10. Sep 19, 2021
  11. Sep 05, 2021
  12. Aug 19, 2021
  13. Jul 03, 2021
  14. Feb 03, 2021
  15. Feb 02, 2021
  16. Oct 30, 2020
  17. Sep 20, 2020