@makefinks/daemon 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "module": "src/index.tsx",
30
30
  "type": "module",
31
- "version": "0.6.0",
31
+ "version": "0.6.1",
32
32
  "bin": {
33
33
  "daemon": "dist/cli.js"
34
34
  },
@@ -241,28 +241,6 @@ export class DaemonAvatarRenderable extends FrameBufferRenderable {
241
241
  const w = fb.width;
242
242
  const h = fb.height;
243
243
  fb.clear(RGBA.fromValues(0, 0, 0, 0));
244
-
245
- const glyph = w >= 18 ? "⟡  SUMMONING  ⟡" : "SUMMONING";
246
- const gx = Math.max(0, Math.floor(w / 2) - Math.floor(glyph.length / 2));
247
- const gy = Math.floor(h / 2);
248
- fb.drawText(
249
- glyph,
250
- gx,
251
- Math.max(0, Math.min(h - 1, gy)),
252
- RGBA.fromInts(180, 255, 245, 230),
253
- RGBA.fromInts(0, 0, 0, 0),
254
- TextAttributes.DIM
255
- );
256
- if (h >= 2) {
257
- fb.drawText(
258
- "DAEMON",
259
- Math.max(0, Math.floor(w / 2) - 3),
260
- Math.max(0, Math.min(h - 1, gy + 1)),
261
- RGBA.fromInts(130, 190, 255, 200),
262
- RGBA.fromInts(0, 0, 0, 0),
263
- TextAttributes.BOLD
264
- );
265
- }
266
244
  } else {
267
245
  this.kickRenderFrame();
268
246
  }