Differences From
Artifact [7f970c2f4a]:
4 4
5 5 local terra cs(s: rawstring)
6 6 return pstr { ptr = s, ct = lib.str.sz(s) }
7 7 end
8 8
9 9 local terra
10 10 render_conf_profile(co: &lib.srv.convo, path: lib.mem.ptr(pref)): pstr
11 + var hue: int8[21]
11 12 var c = data.view.conf_profile {
12 13 handle = cs(co.who.handle);
13 14 nym = cs(lib.coalesce(co.who.nym,''));
14 15 bio = cs(lib.coalesce(co.who.bio,''));
16 + hue = lib.math.decstr(co.ui_hue, &hue[20]);
15 17 }
16 18 return c:tostr()
17 19 end
18 20
19 21 return render_conf_profile