- All new development is done on the
next
branch! Don't targetmaster
! - Run the tests with
just
(not viacargo
) - Read the rest of this file!
The following environment variables are available:
DEBUG=1
: increases logs when spawning processes (e.g.,DEBUG=1 cargo test -- --ncapture <test>
)XEPHYR=1
: run X tests withXephyr
rather thanXvfb
It's a cheaper method of keeping immutable data around without having to reallocate the inner data every time. Since mutating the data isn't necessary, this can just point the the existing data and we get cheap clones. See https://www.youtube.com/watch?v=A4cKi7PTJSs for a good explanation.
Nerd Font icons come in two variants. If the font was called "A", the the variants are:
- "A Nerd Font"
- "A Nerd Font Mono"
The one with the "Mono" suffix has all the icons 'squashed' into a single monospace character's width. This is a compatibility for programs that don't support double-width characters, but does make some of the icons appear too small.
Unfortunately, as far as I can tell, i3's statusbar doesn't properly support the double-width character icons. So, if the normal font is used, sometimes the icons appear to overlap neighbouring characters.
All new development is done on the next
branch. When it's time to make a release, a PR is created to master
.
This is mainly here so I remember how to do a release when I haven't done one in a while.
Steps:
- Create GH PR from
next
tomaster
- Push commit with $NEW_VERSION
- Check CI is green
git tag $NEW_VERSION
andgit push --tags
- CI should publish crate, create GH release and update AUR packages
- Merge GH PR