ChanServ changed the topic of #wayland to: https://wayland.freedesktop.org | Discussion about the Wayland protocol and its implementations, plus libinput | register your nick to speak
whot1 has quit []
whot has joined #wayland
co1umbarius has joined #wayland
columbarius has quit [Ping timeout: 480 seconds]
rasterman has quit [Quit: Gettin' stinky!]
ybogdano has quit [Ping timeout: 480 seconds]
Company has quit [Quit: Leaving]
nerdopolis has quit [Ping timeout: 480 seconds]
nerdopolis has joined #wayland
nerdopolis has quit [Ping timeout: 480 seconds]
cool110_ has joined #wayland
cool110 has quit [Ping timeout: 480 seconds]
cabal704 has quit [Quit: WeeChat 3.5]
dcz_ has joined #wayland
cool110_ has quit [Remote host closed the connection]
cool110 has joined #wayland
Serus has quit [Ping timeout: 480 seconds]
zebrag has quit [Quit: Konversation terminated!]
Serus has joined #wayland
danvet has joined #wayland
dcz has joined #wayland
dcz_ has quit [Ping timeout: 480 seconds]
remyabel2 has quit [Remote host closed the connection]
rv1sr has joined #wayland
enilflah_ has quit []
tzimmermann has joined #wayland
enilflah has joined #wayland
ybogdano has joined #wayland
ybogdano has quit [Ping timeout: 480 seconds]
Lucretia has quit [Read error: No route to host]
Lucretia has joined #wayland
<pq> rain1, I have used the Weston built-in RDP backend this year, I'd expect it to work. External RDP or VNC servers cannot work with Weston.
eroux_ has quit [Remote host closed the connection]
<pq> emersion, thanks for the Weston RC!
eroux has joined #wayland
ofourdan has quit [Ping timeout: 480 seconds]
pochu has joined #wayland
<rain1> thanks pq
<rain1> > wlroots based compositors and MIR have wayvnc
<rain1> cheers
MrCooper has quit [Read error: Connection reset by peer]
MrCooper has joined #wayland
rain1 has quit [Quit: Lost terminal]
dcz has quit [Ping timeout: 480 seconds]
ofourdan has joined #wayland
<emersion> daniels, pq: i've compiled a changelog for the next weston release, can you have a look? https://paste.sr.ht/~emersion/c2b37d2313f93480a246dfdb168105e6ba0a0771
<emersion> did i miss anything or made a mistake?
<pq> emersion, the LCMS plugin was not added, I am currently working on !906 that adds it.
<pq> emersion, !905 was never merged.
<emersion> ouch
<emersion> i wonder why my script included it
<emersion> hm, maybe some commits from it were merged
<pq> the MR page says it contains 700 commits...
<pq> I think it's just a borked branch
<emersion> alright, fixed the script
<pq> emersion, launcher-logind was not yet superseded by libseat, it still exists.
<emersion> ok, will reword
<pq> yeah, the description says " leaving only
<pq> libseat and logind."
<pq> I'm trying to remember what was already in weston 10 to give a better description of the color management progress...
<pq> emersion, oh, the no-malloc-failures policy probably deserves a mention
<emersion> i've been wondering about that one
<pq> we haven't converted existing code, but it does mean a change in how weston will behave in the future
<emersion> oh, you decided to abort
<pq> yes
<emersion> i missed that, definitely deserves a mention
<pq> IIRC I added a note in the README
<pq> 9358706743c208e2fd0f36bea5a3f45f91fa58c9
<pq> About color management: Weston 10 could already do blending in linear light, if configured that way.
<pq> In Weston 11, if you enable the tentative, experimental and WIP color management option, Weston will not only blend in linear light, but you can also set up a monitor ICC profile and Weston will do some kind of color mapping from sRGB to that profile.
Company has joined #wayland
<pq> Furthermore, you can configure a monitor into HDR mode and deliver HDR characteristics from weston.ini to the monitor, but Weston will *not* produce proper HDR content yet, meaning the display is incorrect.
<pq> emersion, do I remember right that you had opinions about having a NEWS/ChangeLog kind of file checked in?
genpaku has quit [Remote host closed the connection]
<pq> Seems like if we required MRs to add notable changes there in the same go, the release announcement would almost write itself.
genpaku has joined #wayland
<bl4ckb0ne> 3/b 13
rasterman has joined #wayland
<emersion> pq, i don't have strong opinions
<emersion> i don't recall a discussion for weston
<emersion> what we do for wlroots is used an issue for each release
<emersion> and then incrementally add bullet points to it
<emersion> use*
<pq> and all reviewers know to go check/update that issue when they review/marge something?
<pq> *merge
<emersion> the person hitting the merge button is responsible for updating that issue yes
<emersion> but yeah, many projects use a checked-in changelog instead
<emersion> my concern is that this adds yet another thing the contributor must learn about
<emersion> if the changelog only tracks breaking changes and major changes, then maybe it's less of an issue, as new contributors are unlikely to do such changes
<pq> all true
<emersion> reminds me of https://keepachangelog.com/en/1.0.0/
<pq> OTOH, reviewers are few and busy already. Don't you have that problem?
<emersion> (not saying it's all good advice in that link, just more food for thought)
<emersion> yeah, i definitely have the busy reviewer issue
<emersion> the only way to get more reviewers is to bring in existing contributors
<emersion> the only way to get contributors is to make it easy to contribute :P
<romangg> I can recommend conventional-changelog specs and tooling. generates the changelog automatically through commit messages.
<romangg> *conventional-commits specs
<pq> how does that work, when the feature is composed of multiple commits and none of the commits is the feature?
<romangg> At least one of them should have a "feat" tag. Probably I would use that for the last one while the ones prior are "refactor" commits preparing the feat commit.
<pq> You mean, add machine-readable things in commit messages that supposed to be free-form for-humans notes?
<romangg> Basically. It's a specs how to format your commit messages. The "type of commit" comes into the subject line. I liked it because it standardises commit format with tooling instead of policy and the type let you reflect about the purpose of the commit.
<romangg> i.e. if you have a commit that does a refactor and feat addition you should probably split this up instead.
<romangg> I use a linter in ci to ensure proper commit message format pre-merge.
<romangg> The changelog can then be extracted from the commit messages between last and next release categorized by feat, fix, refactor etc.
<pq> That doesn't seem attractive to me. People have to learn to please the machine a bit too much, and it won't catch refac+feat commits, because people would only tag them as either one.
<daniels> yeah, humans writing machine-readable text so the machine can generate human-readable text seems a bit backwards to me tbh
<pq> A checked-in NEWS or emersion's issue workflow seem more flexible. They also allow editing previous additions, so that everything related to the same topic can be grouped and explained fluently.
<romangg> Well, it's used by many projects and it's not hard to learn but you do you.
<romangg> What is true is, you would still need to distill from this changelog some form of release notes if you want to present specific feature additions etc in a nicer format than a long list of changes.
<romangg> That's the difference between a changelog and release notes. An automatically formatted changelog just let you more easily create the later I would say.
<pq> Release notes is the useful one, and manual distilling by the release manager is best not needed.
<daniels> emersion: can you please include 'Significant performance improvements in the DRM/KMS backend'
<emersion> yeah, i agree -- i'd rather not automatically generate release notes from commit messages
<emersion> (also i don't like the prefix -- we already use the prefix for something else)
<emersion> daniels: sure
<romangg> emersion: "scopes" are defined to be prefixed in braces by conventional-commits specs.
<daniels> hm, s/Significant //, I forgot that the bigger part of it actually got merged for 10.0
<pq> heh, if we happened to maintain a NEWS file, we'd easier remember what the previous version already did :-)
<emersion> pq, for color management, "support for monitor ICC profiles and partial HDR support"?
<pq> emersion, does it need to be that short? I think both are kinda overselling it.
<emersion> i'm trying to write something that users can understand
<emersion> it doesn't have to be that short
fmuellner has joined #wayland
<emersion> please send me suggestions :)
<pq> how about what I wrote? :-)
manuel1985 has joined #wayland
<emersion> ah, i didn't understand you wanted that as a release note entry
<pq> They are a suggestion, those two lines.
<pq> "In Weston 11, ..." and "Furthermore, ..."
<daniels> emersion: thanks for that!
<pq> I'm a bit touchy about accidentally overselling anything color related, because I feel there is a community that is just waiting to get to bash our stuff.
<pq> They bashed our stuff before there even was our stuff.
fmuellner has quit [Read error: Connection reset by peer]
fmuellner has joined #wayland
dcz has joined #wayland
nerdopolis has joined #wayland
juergbi has quit []
juergbi has joined #wayland
nerdopolis has quit [Ping timeout: 480 seconds]
repetiti` has joined #wayland
repetitivestrain has quit [Read error: Connection reset by peer]
<wlb> weston Issue #661 opened by Tomasz Kłoczko (kloczek) 10.0.93: documentation build fails with doxygen 1.9.5 https://gitlab.freedesktop.org/wayland/weston/-/issues/661
manuel1985 has quit [Quit: Leaving]
devilhorns has joined #wayland
<wlb> weston Issue #662 opened by Tomasz Kłoczko (kloczek) 10.0.93: test suite is failing https://gitlab.freedesktop.org/wayland/weston/-/issues/662
<wlb> weston Issue #662 closed \o/ (10.0.93: test suite is failing https://gitlab.freedesktop.org/wayland/weston/-/issues/662)
devilhorns_ has joined #wayland
devilhorns_ has quit []
devilhorns has quit [Read error: Connection reset by peer]
<romangg> emersion: for example https://gitlab.freedesktop.org/wayland/weston/-/commit/4cde507b would become something like "fix(backend-drm): sort planes from largest zpos_max to smallest"
<romangg> I like that it pushes engineers to better communicate what they're doing but in a concise single sentence and not like "fix this", "fix that", etc.
<romangg> The biggest hurdle with any technical project is communication anyways. ;)
devilhorns has joined #wayland
tzimmermann has quit [Quit: Leaving]
devilhorns has quit []
<wlb> weston Merge request !995 opened by manuel alfayate (vanfanel) Don't change the max_bpc connector prop if mode=current and no max-bpc... https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/995
ybogdano has joined #wayland
AJC_Z0 has joined #wayland
AJ_Z0 has quit [Read error: Connection reset by peer]
AJC_Z0 is now known as AJ_Z0
AJ_Z0 has quit [Read error: Connection reset by peer]
AJ_Z0 has joined #wayland
AJ_Z0 has quit [Quit: I have to return some videotapes]
zebrag has joined #wayland
AJ_Z0 has joined #wayland
fmuellner has quit [Ping timeout: 480 seconds]
cabal704 has joined #wayland
juergbi has quit [singleton.oftc.net coherence.oftc.net]
rv1sr has quit [singleton.oftc.net coherence.oftc.net]
danvet has quit [singleton.oftc.net coherence.oftc.net]
co1umbarius has quit [singleton.oftc.net coherence.oftc.net]
bodiccea has quit [singleton.oftc.net coherence.oftc.net]
alatiera has quit [singleton.oftc.net coherence.oftc.net]
Hypfer has quit [singleton.oftc.net coherence.oftc.net]
floof58 has quit [singleton.oftc.net coherence.oftc.net]
vyivel has quit [singleton.oftc.net coherence.oftc.net]
bl4ckb0ne has quit [singleton.oftc.net coherence.oftc.net]
abeltramo53 has quit [singleton.oftc.net coherence.oftc.net]
fossdd has quit [singleton.oftc.net coherence.oftc.net]
caveman has quit [singleton.oftc.net coherence.oftc.net]
scriptingdad[m] has quit [singleton.oftc.net coherence.oftc.net]
mooff has quit [singleton.oftc.net coherence.oftc.net]
tanty has quit [singleton.oftc.net coherence.oftc.net]
CME has quit [singleton.oftc.net coherence.oftc.net]
rappet has quit [singleton.oftc.net coherence.oftc.net]
DragoonAethis has quit [singleton.oftc.net coherence.oftc.net]
gusnan has quit [singleton.oftc.net coherence.oftc.net]
d_ed[m] has quit [singleton.oftc.net coherence.oftc.net]
jmariondev[m] has quit [singleton.oftc.net coherence.oftc.net]
yshui` has quit [singleton.oftc.net coherence.oftc.net]
davidre has quit [singleton.oftc.net coherence.oftc.net]
cool110 has quit [singleton.oftc.net coherence.oftc.net]
dcz has quit [singleton.oftc.net coherence.oftc.net]
whot has quit [singleton.oftc.net coherence.oftc.net]
immibis has quit [singleton.oftc.net coherence.oftc.net]
emersion has quit [singleton.oftc.net coherence.oftc.net]
qyliss has quit [singleton.oftc.net coherence.oftc.net]
Emantor has quit [singleton.oftc.net coherence.oftc.net]
dos1 has quit [singleton.oftc.net coherence.oftc.net]
glennk has quit [singleton.oftc.net coherence.oftc.net]
haasn has quit [singleton.oftc.net coherence.oftc.net]
GentooPhysicist39354 has quit [singleton.oftc.net coherence.oftc.net]
JoshuaAshton has quit [singleton.oftc.net coherence.oftc.net]
lanodan has quit [singleton.oftc.net coherence.oftc.net]
DonRichie has quit [singleton.oftc.net coherence.oftc.net]
drakulix[m] has quit [singleton.oftc.net coherence.oftc.net]
ozwald1[m]1 has quit [singleton.oftc.net coherence.oftc.net]
anomalous_creator[m] has quit [singleton.oftc.net coherence.oftc.net]
frytaped[m] has quit [singleton.oftc.net coherence.oftc.net]
ongy[m] has quit [singleton.oftc.net coherence.oftc.net]
emilio[m] has quit [singleton.oftc.net coherence.oftc.net]
pedrocr has quit [singleton.oftc.net coherence.oftc.net]
Shimmy[m] has quit [singleton.oftc.net coherence.oftc.net]
heeen has quit [singleton.oftc.net coherence.oftc.net]
r00tobo has quit [singleton.oftc.net coherence.oftc.net]
peeterm_ has quit [singleton.oftc.net coherence.oftc.net]
adia7 has quit [singleton.oftc.net coherence.oftc.net]
jasyuiop[m] has quit [singleton.oftc.net coherence.oftc.net]
lockywolf_ has quit [singleton.oftc.net coherence.oftc.net]
wb9688 has quit [singleton.oftc.net coherence.oftc.net]
rails[m] has quit [singleton.oftc.net coherence.oftc.net]
pitsch[m] has quit [singleton.oftc.net coherence.oftc.net]
vsyrjala has quit [singleton.oftc.net coherence.oftc.net]
BilalElmoussaoui[m] has quit [singleton.oftc.net coherence.oftc.net]
unix-supremacist[m] has quit [singleton.oftc.net coherence.oftc.net]
ki[m] has quit [singleton.oftc.net coherence.oftc.net]
japchae[m] has quit [singleton.oftc.net coherence.oftc.net]
FbioPacheco[m] has quit [singleton.oftc.net coherence.oftc.net]
JosExpsito[m] has quit [singleton.oftc.net coherence.oftc.net]
edrex[m] has quit [singleton.oftc.net coherence.oftc.net]
jryans has quit [singleton.oftc.net coherence.oftc.net]
tinybronca[m] has quit [singleton.oftc.net coherence.oftc.net]
Sumera[m] has quit [singleton.oftc.net coherence.oftc.net]
niecoinny[m] has quit [singleton.oftc.net coherence.oftc.net]
Nico has quit [singleton.oftc.net coherence.oftc.net]
wrl has quit [singleton.oftc.net coherence.oftc.net]
zubzub has quit [singleton.oftc.net coherence.oftc.net]
jpnurmi has quit [singleton.oftc.net coherence.oftc.net]
spuc950913 has quit [singleton.oftc.net coherence.oftc.net]
trepatud1 has quit [singleton.oftc.net coherence.oftc.net]
mstoeckl has quit [singleton.oftc.net coherence.oftc.net]
romangg has quit [singleton.oftc.net coherence.oftc.net]
al has quit [singleton.oftc.net coherence.oftc.net]
bookworm has quit [singleton.oftc.net coherence.oftc.net]
alarumbe has quit [singleton.oftc.net coherence.oftc.net]
mtretter has quit [singleton.oftc.net coherence.oftc.net]
pw has quit [singleton.oftc.net coherence.oftc.net]
puck_ has quit [singleton.oftc.net coherence.oftc.net]
Prf_Jakob has quit [singleton.oftc.net coherence.oftc.net]
TimWolla has quit [singleton.oftc.net coherence.oftc.net]
Arsen has quit [singleton.oftc.net coherence.oftc.net]
ramcq has quit [singleton.oftc.net coherence.oftc.net]
olebra has quit [singleton.oftc.net coherence.oftc.net]
xantoz has quit [singleton.oftc.net coherence.oftc.net]
macc24 has quit [singleton.oftc.net coherence.oftc.net]
shoragan has quit [singleton.oftc.net coherence.oftc.net]
blathijs has quit [singleton.oftc.net coherence.oftc.net]
Plagman has quit [singleton.oftc.net coherence.oftc.net]
occivink has quit [singleton.oftc.net coherence.oftc.net]
tzafrir has quit [singleton.oftc.net coherence.oftc.net]
rgallaispou has quit [singleton.oftc.net coherence.oftc.net]
andyrtr has quit [singleton.oftc.net coherence.oftc.net]
zamundaaa[m] has quit [singleton.oftc.net coherence.oftc.net]
halfline[m] has quit [singleton.oftc.net coherence.oftc.net]
pq has quit [singleton.oftc.net coherence.oftc.net]
ashketchum[m] has quit [singleton.oftc.net coherence.oftc.net]
ahmadraniri[m] has quit [singleton.oftc.net coherence.oftc.net]
shadowninja55[m] has quit [singleton.oftc.net coherence.oftc.net]
m5zs7k has quit [singleton.oftc.net coherence.oftc.net]
nielsdg has quit [singleton.oftc.net coherence.oftc.net]
AndrewAylett[m] has quit [singleton.oftc.net coherence.oftc.net]
zaibon[m] has quit [singleton.oftc.net coherence.oftc.net]
cb5r[m] has quit [singleton.oftc.net coherence.oftc.net]
gnustomp[m] has quit [singleton.oftc.net coherence.oftc.net]
tagr has quit [singleton.oftc.net coherence.oftc.net]
creich has quit [singleton.oftc.net coherence.oftc.net]
Guest866 has quit [singleton.oftc.net coherence.oftc.net]
swick has quit [singleton.oftc.net coherence.oftc.net]
xaltsc has quit [singleton.oftc.net coherence.oftc.net]
hasebastian[m] has quit [singleton.oftc.net coherence.oftc.net]
benbrown has quit [singleton.oftc.net coherence.oftc.net]
doras has quit [singleton.oftc.net coherence.oftc.net]
bluepenquin has quit [singleton.oftc.net coherence.oftc.net]
teh1[m] has quit [singleton.oftc.net coherence.oftc.net]
feaneron has quit [singleton.oftc.net coherence.oftc.net]
unrelentingtech has quit [singleton.oftc.net coherence.oftc.net]
deknos82[m] has quit [singleton.oftc.net coherence.oftc.net]
enick_58 has quit [singleton.oftc.net coherence.oftc.net]
idkrn[m] has quit [singleton.oftc.net coherence.oftc.net]
botiapa[m] has quit [singleton.oftc.net coherence.oftc.net]
cousinofthor[m] has quit [singleton.oftc.net coherence.oftc.net]
windowsxp[m] has quit [singleton.oftc.net coherence.oftc.net]
DemiMarie has quit [singleton.oftc.net coherence.oftc.net]
ttancos[m] has quit [singleton.oftc.net coherence.oftc.net]
j-james[m] has quit [singleton.oftc.net coherence.oftc.net]
Poly[m] has quit [singleton.oftc.net coherence.oftc.net]
GrahamPerrin[m] has quit [singleton.oftc.net coherence.oftc.net]
pac85[m] has quit [singleton.oftc.net coherence.oftc.net]
smasher_tati[m] has quit [singleton.oftc.net coherence.oftc.net]
rubo_[m] has quit [singleton.oftc.net coherence.oftc.net]
varlad[m] has quit [singleton.oftc.net coherence.oftc.net]
enick_883 has quit [singleton.oftc.net coherence.oftc.net]
MarcusBritanicus[m] has quit [singleton.oftc.net coherence.oftc.net]
zebrag has quit [singleton.oftc.net coherence.oftc.net]
rasterman has quit [singleton.oftc.net coherence.oftc.net]
Company has quit [singleton.oftc.net coherence.oftc.net]
ofourdan has quit [singleton.oftc.net coherence.oftc.net]
Serus has quit [singleton.oftc.net coherence.oftc.net]
thevar1able1 has quit [singleton.oftc.net coherence.oftc.net]
DPA has quit [singleton.oftc.net coherence.oftc.net]
ivyl has quit [singleton.oftc.net coherence.oftc.net]
d42 has quit [singleton.oftc.net coherence.oftc.net]
pounce has quit [singleton.oftc.net coherence.oftc.net]
midgard has quit [singleton.oftc.net coherence.oftc.net]
wolfshappen has quit [singleton.oftc.net coherence.oftc.net]
dblsaiko has quit [singleton.oftc.net coherence.oftc.net]
dreda has quit [singleton.oftc.net coherence.oftc.net]
Consolatis has quit [singleton.oftc.net coherence.oftc.net]
eroux has quit [singleton.oftc.net coherence.oftc.net]
Lucretia has quit [singleton.oftc.net coherence.oftc.net]
MrCooper has quit [singleton.oftc.net coherence.oftc.net]
tleydxdy has quit [singleton.oftc.net coherence.oftc.net]
hex[m]1 has quit [singleton.oftc.net coherence.oftc.net]
inkbottle[m] has quit [singleton.oftc.net coherence.oftc.net]
MatrixTravelerbot[m]12 has quit [singleton.oftc.net coherence.oftc.net]
hch12907 has quit [singleton.oftc.net coherence.oftc.net]
arichardson[m] has quit [singleton.oftc.net coherence.oftc.net]
ammen99[m] has quit [singleton.oftc.net coherence.oftc.net]
i509VCB has quit [singleton.oftc.net coherence.oftc.net]
Levans has quit [singleton.oftc.net coherence.oftc.net]
Lumpio_ has quit [singleton.oftc.net coherence.oftc.net]
FLHerne has quit [singleton.oftc.net coherence.oftc.net]
phryk_ has quit [singleton.oftc.net coherence.oftc.net]
wlb has quit [singleton.oftc.net coherence.oftc.net]
mceier has quit [singleton.oftc.net coherence.oftc.net]
ecloud has quit [singleton.oftc.net coherence.oftc.net]
SardemFF7 has quit [singleton.oftc.net coherence.oftc.net]
diamondburned[m] has quit [singleton.oftc.net coherence.oftc.net]
nazarewk[m] has quit [singleton.oftc.net coherence.oftc.net]
apol[m] has quit [singleton.oftc.net coherence.oftc.net]
unix has quit [singleton.oftc.net coherence.oftc.net]
heftig has quit [singleton.oftc.net coherence.oftc.net]
Mershl[m] has quit [singleton.oftc.net coherence.oftc.net]
Kelseyjgilbert[m] has quit [singleton.oftc.net coherence.oftc.net]
psydroid[m] has quit [singleton.oftc.net coherence.oftc.net]
YaLTeR[m] has quit [singleton.oftc.net coherence.oftc.net]
kinlo has quit [singleton.oftc.net coherence.oftc.net]
| has quit [singleton.oftc.net coherence.oftc.net]
saum0n has quit [singleton.oftc.net coherence.oftc.net]
modin has quit [singleton.oftc.net coherence.oftc.net]
llyyr has quit [singleton.oftc.net coherence.oftc.net]
zamundaaa has quit [singleton.oftc.net coherence.oftc.net]
leandrohrb has quit [singleton.oftc.net coherence.oftc.net]
vchernin[m] has quit [singleton.oftc.net coherence.oftc.net]
yoslin has quit [singleton.oftc.net coherence.oftc.net]
any1 has quit [singleton.oftc.net coherence.oftc.net]
marex has quit [singleton.oftc.net coherence.oftc.net]
LaserEyess has quit [singleton.oftc.net coherence.oftc.net]
dottedmag has quit [singleton.oftc.net coherence.oftc.net]
V has quit [singleton.oftc.net coherence.oftc.net]
rawoul has quit [singleton.oftc.net coherence.oftc.net]
mort_ has quit [singleton.oftc.net coherence.oftc.net]
mupuf has quit [singleton.oftc.net coherence.oftc.net]
pH5 has quit [singleton.oftc.net coherence.oftc.net]
mriesch has quit [singleton.oftc.net coherence.oftc.net]
OMGOMG has quit [singleton.oftc.net coherence.oftc.net]
jadahl has quit [singleton.oftc.net coherence.oftc.net]
DrNick has quit [singleton.oftc.net coherence.oftc.net]
heeen[m][m] has quit [singleton.oftc.net coherence.oftc.net]
leon-p has quit [singleton.oftc.net coherence.oftc.net]
kindablue has quit [singleton.oftc.net coherence.oftc.net]
ghostbuster has quit [singleton.oftc.net coherence.oftc.net]
qa24__ has quit [singleton.oftc.net coherence.oftc.net]
ids1024 has quit [singleton.oftc.net coherence.oftc.net]
c7s has quit [singleton.oftc.net coherence.oftc.net]
sudocurse_ has quit [singleton.oftc.net coherence.oftc.net]
cnsvc has quit [singleton.oftc.net coherence.oftc.net]
jimjams has quit [singleton.oftc.net coherence.oftc.net]
eletrotupi has quit [singleton.oftc.net coherence.oftc.net]
Sachiel has quit [singleton.oftc.net coherence.oftc.net]
lvrp16 has quit [singleton.oftc.net coherence.oftc.net]
^[ has quit [singleton.oftc.net coherence.oftc.net]
zmike has quit [singleton.oftc.net coherence.oftc.net]
AJ_Z0 has quit [singleton.oftc.net coherence.oftc.net]
ybogdano has quit [singleton.oftc.net coherence.oftc.net]
enilflah has quit [singleton.oftc.net coherence.oftc.net]
Seirdy has quit [singleton.oftc.net coherence.oftc.net]
soreau has quit [singleton.oftc.net coherence.oftc.net]
gspbirel56 has quit [singleton.oftc.net coherence.oftc.net]
nurupo has quit [singleton.oftc.net coherence.oftc.net]
anarsoul has quit [singleton.oftc.net coherence.oftc.net]
bim9262 has quit [singleton.oftc.net coherence.oftc.net]
that_guy has quit [singleton.oftc.net coherence.oftc.net]
bindu has quit [singleton.oftc.net coherence.oftc.net]
agd5f has quit [singleton.oftc.net coherence.oftc.net]
jekstrand has quit [singleton.oftc.net coherence.oftc.net]
UndeadLeech has quit [singleton.oftc.net coherence.oftc.net]
bwidawsk has quit [singleton.oftc.net coherence.oftc.net]
ManMower has quit [singleton.oftc.net coherence.oftc.net]
astlep has quit [singleton.oftc.net coherence.oftc.net]
dri-logger has quit [singleton.oftc.net coherence.oftc.net]
bluebugs has quit [singleton.oftc.net coherence.oftc.net]
kenny2 has quit [singleton.oftc.net coherence.oftc.net]
ecocode____ has quit [singleton.oftc.net coherence.oftc.net]
riverdc has quit [singleton.oftc.net coherence.oftc.net]
shankaru has quit [singleton.oftc.net coherence.oftc.net]
reductum has quit [singleton.oftc.net coherence.oftc.net]
ebassi has quit [singleton.oftc.net coherence.oftc.net]
JPEW has quit [singleton.oftc.net coherence.oftc.net]
coleman has quit [singleton.oftc.net coherence.oftc.net]
everfree has quit [singleton.oftc.net coherence.oftc.net]
caseif has quit [singleton.oftc.net coherence.oftc.net]
zzag has quit [singleton.oftc.net coherence.oftc.net]
melissawen has quit [singleton.oftc.net coherence.oftc.net]
cabal704 has quit [singleton.oftc.net coherence.oftc.net]
genpaku has quit [singleton.oftc.net coherence.oftc.net]
pochu has quit [singleton.oftc.net coherence.oftc.net]
cheka has quit [singleton.oftc.net coherence.oftc.net]
cyberpear has quit [singleton.oftc.net coherence.oftc.net]
eroc1990 has quit [singleton.oftc.net coherence.oftc.net]
Ampera has quit [singleton.oftc.net coherence.oftc.net]
danshick_ has quit [singleton.oftc.net coherence.oftc.net]
seanpaul has quit [singleton.oftc.net coherence.oftc.net]
quantum5 has quit [singleton.oftc.net coherence.oftc.net]
danieldg has quit [singleton.oftc.net coherence.oftc.net]
bcheng has quit [singleton.oftc.net coherence.oftc.net]
Lyude has quit [singleton.oftc.net coherence.oftc.net]
rpigott has quit [singleton.oftc.net coherence.oftc.net]
inferiormartin has quit [singleton.oftc.net coherence.oftc.net]
tlwoerner has quit [singleton.oftc.net coherence.oftc.net]
systwi_ has quit [singleton.oftc.net coherence.oftc.net]
doppo has quit [singleton.oftc.net coherence.oftc.net]
smurray has quit [singleton.oftc.net coherence.oftc.net]
mcf has quit [singleton.oftc.net coherence.oftc.net]
hwentlan_ has quit [singleton.oftc.net coherence.oftc.net]
Lightsword has quit [singleton.oftc.net coherence.oftc.net]
yongxiang_____ has quit [singleton.oftc.net coherence.oftc.net]
d10n_ has quit [singleton.oftc.net coherence.oftc.net]
moses_ has quit [singleton.oftc.net coherence.oftc.net]
tsujp_ has quit [singleton.oftc.net coherence.oftc.net]
tommybomb_ has quit [singleton.oftc.net coherence.oftc.net]
kchibisov has quit [singleton.oftc.net coherence.oftc.net]
txtsd has quit [singleton.oftc.net coherence.oftc.net]
milesrout has quit [singleton.oftc.net coherence.oftc.net]
sumoon_ has quit [singleton.oftc.net coherence.oftc.net]
kennylevinsen has quit [singleton.oftc.net coherence.oftc.net]
WhyNotHugo_ has quit [singleton.oftc.net coherence.oftc.net]
WhizzWr has quit [singleton.oftc.net coherence.oftc.net]
novakane has quit [singleton.oftc.net coherence.oftc.net]
zvarde198830 has quit [singleton.oftc.net coherence.oftc.net]
Arnavion has quit [singleton.oftc.net coherence.oftc.net]
glisse has quit [singleton.oftc.net coherence.oftc.net]
aswar002 has quit [singleton.oftc.net coherence.oftc.net]
pieguy128 has quit [singleton.oftc.net coherence.oftc.net]
daniels has quit [singleton.oftc.net coherence.oftc.net]
ifreund has quit [singleton.oftc.net coherence.oftc.net]
panzeroceania___ has quit [singleton.oftc.net coherence.oftc.net]
dnkl_ has quit [singleton.oftc.net coherence.oftc.net]
ecs has quit [singleton.oftc.net coherence.oftc.net]
sniff has quit [singleton.oftc.net coherence.oftc.net]
Ariadne has quit [singleton.oftc.net coherence.oftc.net]
yar has quit [singleton.oftc.net coherence.oftc.net]
fullstop has quit [singleton.oftc.net coherence.oftc.net]
AJ_Z0 has joined #wayland
cabal704 has joined #wayland
zebrag has joined #wayland
ybogdano has joined #wayland
juergbi has joined #wayland
rasterman has joined #wayland
dcz has joined #wayland
genpaku has joined #wayland
Company has joined #wayland
ofourdan has joined #wayland
pochu has joined #wayland
MrCooper has joined #wayland
Lucretia has joined #wayland
eroux has joined #wayland
rv1sr has joined #wayland
enilflah has joined #wayland
danvet has joined #wayland
co1umbarius has joined #wayland
cool110 has joined #wayland
whot has joined #wayland
Serus has joined #wayland
immibis has joined #wayland
bodiccea has joined #wayland
cheka has joined #wayland
alatiera has joined #wayland
Hypfer has joined #wayland
floof58 has joined #wayland
rgallaispou has joined #wayland
midgard has joined #wayland
cyberpear has joined #wayland
vyivel has joined #wayland
emersion has joined #wayland
bl4ckb0ne has joined #wayland
eroc1990 has joined #wayland
andyrtr has joined #wayland
Seirdy has joined #wayland
caveman has joined #wayland
thevar1able1 has joined #wayland
Ampera has joined #wayland
DPA has joined #wayland
ivyl has joined #wayland
abeltramo53 has joined #wayland
fossdd has joined #wayland
olebra has joined #wayland
soreau has joined #wayland
WhizzWr has joined #wayland
gspbirel56 has joined #wayland
quantum5 has joined #wayland
danieldg has joined #wayland
scriptingdad[m] has joined #wayland
qyliss has joined #wayland
bcheng has joined #wayland
d42 has joined #wayland
yshui` has joined #wayland
pounce has joined #wayland
Lyude has joined #wayland
rpigott has joined #wayland
tanty has joined #wayland
mooff has joined #wayland
CME has joined #wayland
Emantor has joined #wayland
wolfshappen has joined #wayland
nurupo has joined #wayland
anarsoul has joined #wayland
dos1 has joined #wayland
m5zs7k has joined #wayland
dreda has joined #wayland
dblsaiko has joined #wayland
inferiormartin has joined #wayland
bim9262 has joined #wayland
tlwoerner has joined #wayland
Consolatis has joined #wayland
that_guy has joined #wayland
doppo has joined #wayland
systwi_ has joined #wayland
glennk has joined #wayland
rappet has joined #wayland
bindu has joined #wayland
haasn has joined #wayland
GentooPhysicist39354 has joined #wayland
JoshuaAshton has joined #wayland
zamundaaa[m] has joined #wayland
DragoonAethis has joined #wayland
DonRichie has joined #wayland
benbrown has joined #wayland
pq has joined #wayland
drakulix[m] has joined #wayland
tleydxdy has joined #wayland
ahmadraniri[m] has joined #wayland
ozwald1[m]1 has joined #wayland
AndrewAylett[m] has joined #wayland
anomalous_creator[m] has joined #wayland
nielsdg has joined #wayland
inkbottle[m] has joined #wayland
frytaped[m] has joined #wayland
davidre has joined #wayland
zaibon[m] has joined #wayland
arichardson[m] has joined #wayland
ammen99[m] has joined #wayland
cb5r[m] has joined #wayland
i509VCB has joined #wayland
gnustomp[m] has joined #wayland
kchibisov has joined #wayland
pedrocr has joined #wayland
Lumpio_ has joined #wayland
Shimmy[m] has joined #wayland
FLHerne has joined #wayland
heeen has joined #wayland
tagr has joined #wayland
r00tobo has joined #wayland
phryk_ has joined #wayland
Lightsword has joined #wayland
Levans has joined #wayland
txtsd has joined #wayland
agd5f has joined #wayland
smurray has joined #wayland
UndeadLeech has joined #wayland
mcf has joined #wayland
kennylevinsen has joined #wayland
hwentlan_ has joined #wayland
jekstrand has joined #wayland
daniels has joined #wayland
yongxiang_____ has joined #wayland
panzeroceania___ has joined #wayland
d10n_ has joined #wayland
ifreund has joined #wayland
dnkl_ has joined #wayland
peeterm_ has joined #wayland
ecocode____ has joined #wayland
moses_ has joined #wayland
tsujp_ has joined #wayland
milesrout has joined #wayland
sumoon_ has joined #wayland
tommybomb_ has joined #wayland
WhyNotHugo_ has joined #wayland
novakane has joined #wayland
zvarde198830 has joined #wayland
ManMower has joined #wayland
Arnavion has joined #wayland
astlep has joined #wayland
glisse has joined #wayland
dri-logger has joined #wayland
aswar002 has joined #wayland
Arsen has joined #wayland
bluebugs has joined #wayland
pieguy128 has joined #wayland
kenny2 has joined #wayland
creich has joined #wayland
Guest866 has joined #wayland
JPEW has joined #wayland
adia7 has joined #wayland
jasyuiop[m] has joined #wayland
riverdc has joined #wayland
ecs has joined #wayland
shankaru has joined #wayland
swick has joined #wayland
Ariadne has joined #wayland
sniff has joined #wayland
xaltsc has joined #wayland
lvrp16 has joined #wayland
wlb has joined #wayland
mceier has joined #wayland
reductum has joined #wayland
ecloud has joined #wayland
SardemFF7 has joined #wayland
wb9688 has joined #wayland
lockywolf_ has joined #wayland
bluepenquin has joined #wayland
rails[m] has joined #wayland
hasebastian[m] has joined #wayland
pitsch[m] has joined #wayland
vsyrjala has joined #wayland
ki[m] has joined #wayland
unix-supremacist[m] has joined #wayland
BilalElmoussaoui[m] has joined #wayland
diamondburned[m] has joined #wayland
doras has joined #wayland
nazarewk[m] has joined #wayland
apol[m] has joined #wayland
deknos82[m] has joined #wayland
unix has joined #wayland
feaneron has joined #wayland
teh1[m] has joined #wayland
enick_58 has joined #wayland
unrelentingtech has joined #wayland
heftig has joined #wayland
Mershl[m] has joined #wayland
japchae[m] has joined #wayland
Kelseyjgilbert[m] has joined #wayland
botiapa[m] has joined #wayland
idkrn[m] has joined #wayland
cousinofthor[m] has joined #wayland
windowsxp[m] has joined #wayland
heeen[m][m] has joined #wayland
FbioPacheco[m] has joined #wayland
DrNick has joined #wayland
JosExpsito[m] has joined #wayland
psydroid[m] has joined #wayland
gusnan has joined #wayland
lanodan has joined #wayland
OMGOMG has joined #wayland
jmariondev[m] has joined #wayland
ashketchum[m] has joined #wayland
hex[m]1 has joined #wayland
shadowninja55[m] has joined #wayland
d_ed[m] has joined #wayland
ongy[m] has joined #wayland
MatrixTravelerbot[m]12 has joined #wayland
niecoinny[m] has joined #wayland
emilio[m] has joined #wayland
hch12907 has joined #wayland
j-james[m] has joined #wayland
Poly[m] has joined #wayland
GrahamPerrin[m] has joined #wayland
pac85[m] has joined #wayland
rubo_[m] has joined #wayland
varlad[m] has joined #wayland
smasher_tati[m] has joined #wayland
enick_883 has joined #wayland
MarcusBritanicus[m] has joined #wayland
V has joined #wayland
jadahl has joined #wayland
vchernin[m] has joined #wayland
mupuf has joined #wayland
kinlo has joined #wayland
modin has joined #wayland
rawoul has joined #wayland
any1 has joined #wayland
saum0n has joined #wayland
pH5 has joined #wayland
marex has joined #wayland
LaserEyess has joined #wayland
llyyr has joined #wayland
| has joined #wayland
zamundaaa has joined #wayland
mriesch has joined #wayland
leandrohrb has joined #wayland
mort_ has joined #wayland
dottedmag has joined #wayland
xantoz has joined #wayland
yoslin has joined #wayland
bookworm has joined #wayland
Plagman has joined #wayland
macc24 has joined #wayland
jpnurmi has joined #wayland
al has joined #wayland
alarumbe has joined #wayland
puck_ has joined #wayland
shoragan has joined #wayland
tzafrir has joined #wayland
pw has joined #wayland
romangg has joined #wayland
spuc950913 has joined #wayland
occivink has joined #wayland
blathijs has joined #wayland
trepatud1 has joined #wayland
mstoeckl has joined #wayland
ramcq has joined #wayland
TimWolla has joined #wayland
zubzub has joined #wayland
mtretter has joined #wayland
Prf_Jakob has joined #wayland
wrl has joined #wayland
leon-p has joined #wayland
kindablue has joined #wayland
c7s has joined #wayland
Sachiel has joined #wayland
ttancos[m] has joined #wayland
Nico has joined #wayland
ghostbuster has joined #wayland
ids1024 has joined #wayland
^[ has joined #wayland
sudocurse_ has joined #wayland
zmike has joined #wayland
qa24__ has joined #wayland
cnsvc has joined #wayland
eletrotupi has joined #wayland
jimjams has joined #wayland
bwidawsk has joined #wayland
yar has joined #wayland
ebassi has joined #wayland
fullstop has joined #wayland
danshick_ has joined #wayland
coleman has joined #wayland
seanpaul has joined #wayland
caseif has joined #wayland
melissawen has joined #wayland
zzag has joined #wayland
everfree has joined #wayland
tinybronca[m] has joined #wayland
jryans has joined #wayland
halfline[m] has joined #wayland
YaLTeR[m] has joined #wayland
edrex[m] has joined #wayland
Sumera[m] has joined #wayland
DemiMarie has joined #wayland
cabal705 has joined #wayland
cabal704 has quit [Ping timeout: 480 seconds]
skipet has joined #wayland
dcz has quit [Ping timeout: 480 seconds]
cabal705 has quit [Read error: Connection reset by peer]
cabal705 has joined #wayland
reductum has quit [Ping timeout: 480 seconds]
buh0 has joined #wayland
bhawan has joined #wayland
fmuellner has joined #wayland
reductum has joined #wayland
buh0 has quit [Ping timeout: 480 seconds]
rv1sr has quit []
wolfshappen has quit []
rasterman has quit [Quit: Gettin' stinky!]
danvet has quit [Ping timeout: 480 seconds]
bhawan has quit [Remote host closed the connection]
wolfshappen has joined #wayland
cabal705 has quit []