Differences From Artifact [864a63a85e]:
- File render/conf/profile.t — part of check-in [24ec409083] at 2021-01-01 04:33:10 on branch trunk — add live updates, system to only update when necessary almost works (user: lexi, size: 507) [annotate] [blame] [check-ins using]
To Artifact [5b3736f2f4]:
- File render/conf/profile.t — part of check-in [7c8769bf96] at 2021-01-10 08:19:56 on branch trunk — begin replacing inefficient memory management with a pool-based solution; fix memory leaks (user: lexi, size: 521) [annotate] [blame] [check-ins using]
11 12 13 14 15 16 17 18 19 20 21 |
var hue: int8[21]
var c = data.view.conf_profile {
handle = cs(co.who.handle);
nym = cs(lib.coalesce(co.who.nym,''));
bio = cs(lib.coalesce(co.who.bio,''));
hue = lib.math.decstr(co.ui_hue, &hue[20]);
}
return c:tostr()
end
return render_conf_profile
|
| |
11 12 13 14 15 16 17 18 19 20 21 |
var hue: int8[21]
var c = data.view.conf_profile {
handle = cs(co.who.handle);
nym = cs(lib.coalesce(co.who.nym,''));
bio = cs(lib.coalesce(co.who.bio,''));
hue = lib.math.decstr(co.ui_hue, &hue[20]);
}
return c:poolstr(&co.srv.pool)
end
return render_conf_profile
|