News: Add author tag (#70)

This commit is contained in:
VDawg 2024-10-08 19:00:21 +03:00 committed by GitHub
parent 48aa4aedab
commit 9f8e87bf1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 69 additions and 40 deletions

View file

@ -1,6 +1,8 @@
---
title: Hyprland 0.37.0 + 2 year anniversary!
date: 1710548497
author: Vaxry
authorLink: https://github.com/vaxerski/
---
It's march 16th, and as such we're celebrating the 2 year anniversary of Hyprland!

View file

@ -1,6 +1,8 @@
---
title: Wallpaper contest winners
date: 1706570428
author: Vaxry
authorLink: https://github.com/vaxerski/
---
The competition has ended, we got some great submissions, and have finally managed to narrow down 3 winners.
@ -54,4 +56,3 @@ srev:
VDawg:
![](https://hyprland.org/imgs/blog/contestWinners/VDawg.png)

View file

@ -1,6 +1,8 @@
---
title: Hyprland is now fully independent!
date: 1721559307
author: Vaxry
authorLink: https://github.com/vaxerski/
---
With great pleasure may I announce that our move off of wlroots is now complete and [MR 6608](https://github.com/hyprwm/Hyprland/pull/6608) is
@ -48,6 +50,7 @@ The changes are staged for 0.42.0. If you want to test them right away, check ou
Massive thanks to all the people who helped in the long process (what was it, like 3 months?) of rewriting the wlroots stack to a nicer language.
Special thanks to:
- Agent00Ming (testing and patience)
- Ikalco (tons of patches)
- gulafaran (patches and testing)
@ -56,6 +59,5 @@ Special thanks to:
- fufexan (nix and meson)
- And everyone who helped test here and there! There's been 38 participants in the aquamarine MR alone!
Cheers and ad meliora,
vaxry.

View file

@ -1,6 +1,8 @@
---
title: A Hyprland mega-release 0.40.0
date: 1714838440
author: Vaxry
authorLink: https://github.com/vaxerski/
---
Changing over 15,000 lines of code, the Hyprland 0.40.0 update has finally dropped. This
@ -16,6 +18,7 @@ A few bugs and quirks have been ironed out during the development phase, and man
have been fixed with these rewrites.
0.40.0 also brings a few community-requested QoL features, like:
- Better monitor auto-positioning
- Initial workspace tracking
- More workspace selectors

View file

@ -1,6 +1,8 @@
---
title: A huge Hyprland release 0.41.0
date: 1718030074
author: Vaxry
authorLink: https://github.com/vaxerski/
---
Just as we thought 0.40.0 was a mega-release, we now proudly present 0.41.0, which is almost twice as sizeable.

View file

@ -1,6 +1,8 @@
---
title: Hyprland 0.43.0 released!
date: 1725814920
author: Vaxry
authorLink: https://github.com/vaxerski/
---
Quite a while after 0.42.0, 0.43.0 has finally been released.
@ -12,6 +14,7 @@ Most (like 95%) of the "monitor not on" issues have now been fixed with 0.43, th
some fixes were done in aquamarine itself.
Additionally to all the bugfixes, some new features have been added, for example:
- New windowrule to keep windows rendered when invisible ([#7582](https://github.com/hyprwm/Hyprland/pull/7582))
- `exec-shutdown` added to the config to execute something on hyprland exit
- Animations got `workspacein` and `workspaceout` configs

View file

@ -1,6 +1,8 @@
---
title: Hyprland 0.44.0 is out!
date: 1728213146
author: Vaxry
authorLink: https://github.com/vaxerski/
---
0.44.0 is finally upon us!
@ -9,6 +11,7 @@ This update mostly focuses on further bugfixes over actually implementing new st
but we have quite a bunch of both!
When it comes to new stuff, we have, amongst others:
- A new argument `--version` for checking the Hyprland binary's version instead of `hyprctl version`
- Same spirit as above, `--systeminfo`.
- A new layerrule `order` for ordering layers on the same plane
@ -20,6 +23,7 @@ When it comes to new stuff, we have, amongst others:
- Implemented the single-pixel-buffer protocol
For fixes, notable ones include:
- Various fixes to surface UV and positioning calculations: chromium windows no longer go crazy when resizing, and resizing other apps should generally feel much smoother
- Various text-input fixes for IME users
- XWayland handling fixes for monitors being misplaced and input not translating correctly after monitors were unplugged / replugged.

View file

@ -1,6 +1,8 @@
---
title: We're hosting a Hyprland wallpaper contest!
date: 1702852617
author: Vaxry
authorLink: https://github.com/vaxerski/
---
To all artists, designers and enjoyers of graphics: this is a piece of news for you!

View file

@ -18,11 +18,21 @@
>
<hgroup class="flex flex-col gap-5 duration-1000 animate-in fade-in-0 slide-in-from-bottom-4">
<h1 class="text-4xl font-bold lg:text-6xl">{data.meta.title}</h1>
<time
class="font-medium text-slate-300"
datetime={new Date(data.meta.date * 1000).toISOString()}
<div class="font-medium text-slate-300">
<time datetime={new Date(data.meta.date * 1000).toISOString()}
>Published on {formatDate(data.meta.date * 1000)}</time
>
{#if data.meta.author}
by
{#if data.meta.authorLink}
<a href={data.meta.authorLink} rel="authro" target="_blank" class="hover:underline"
>{data.meta.author}</a
>
{:else}
{data.meta.author}
{/if}
{/if}
</div>
</hgroup>
<!-- Post -->