00:47:53 -!- amalloy_ is now known as amalloy 01:21:46 Experimental (bcrawl) branch on underhound.eu updated to: 0.23-a0-3545-g7c84a495e7 01:45:38 fr rename Hedge Wizard to Hedge Witch which sounds approx 10000000x cooler 03:10:21 DekuNut (L8 DsMo) Crash caused by signal #6: Aborted (D:6) 03:11:54 Unstable branch on crawl.beRotato.org updated to: 0.26-a0-543-ge420d365 (34) 03:30:51 Fork (bcrawl) on crawl.kelbi.org updated to: 0.23-a0-3545-g7c84a495e7 05:12:04 -!- amalloy is now known as amalloy_ 08:59:16 New branch created: pull/1525 (1 commit) 13https://github.com/crawl/crawl/pull/1525 08:59:16 03amcnicky02 07https://github.com/crawl/crawl/pull/1525 * 0.26-a0-520-g33c97f8: Adds 25 new vaults (primarily arrival, float, altar) 10(8 days ago, 4 files, 619+ 0-) 13https://github.com/crawl/crawl/commit/33c97f8756de 13:06:19 Unstable branch on crawl.akrasiac.org updated to: 0.26-a0-543-ge420d365 (34) 16:02:14 advil: in 71c5d99ebce 16:02:16 %git 71c5d99ebce 16:02:16 07advil02 * 0.24-a0-511-g71c5d99: Handle hidpi screens in webtiles glyph mode 10(1 year, 1 month ago, 3 files, 24+ 8-) 13https://github.com/crawl/crawl/commit/71c5d99ebce4 16:02:41 Why is the font size (in px, which is css definitionally device pixel ratio independent) being scaled by the device pixel ratio? 16:02:57 What am I not undeerstanding 16:22:11 -!- Tiobot is now known as Guest15565 16:39:06 hi 16:40:55 Naruni: the standard mode in this channel is simply to talk if one has something to say 16:41:22 (having missed several of your hi's I don't know if you mean to be friendly or have some specific questions) 16:42:09 no questions now, just being polite. thanks 16:42:19 03wjchen02 {ebering} 07* 0.26-a0-544-g9bfc6bc: Adjust the display of the monster list in webtiles glyphs mode 10(2 weeks ago, 2 files, 10+ 3-) 13https://github.com/crawl/crawl/commit/9bfc6bcd2ef4 16:42:19 03wjchen02 {ebering} 07* 0.26-a0-545-g4531bab: Add glyph mode customization options for webtiles 10(13 days ago, 6 files, 108+ 24-) 13https://github.com/crawl/crawl/commit/4531babe9817 16:42:45 the flip side of this is that you might finnd your questions unanswered for 12 hours :P 16:52:00 ebering: the canvas is scaled by devicePixelRatio, so glyphs have to go with that 16:52:02 iirc 16:53:00 %git 4706f7efea59 16:53:00 07advil02 * 0.20-a0-1025-g4706f7e: Scale cell widths/heights by devicePixelRatio (wheals) 10(3 years, 4 months ago, 1 file, 6+ 2-) 13https://github.com/crawl/crawl/commit/4706f7efea59 16:53:05 may give some helpful info 16:56:06 I would guess that commit just broke a bunch of stuff tbh 17:04:51 the one I just made or the one you referenced 17:05:58 Unstable branch on crawl.kelbi.org updated to: 0.26-a0-545-g4531babe98 (34) 17:11:08 hm, is there a default value that is not set? 17:11:19 if I just set tile_display_mode=glyphs I don't get a map at all 17:12:25 a default is set in initfile.cc 17:13:48 https://www.dropbox.com/s/gia1xv7bba8yyjf/Screen%20Shot%202020-08-18%20at%205.13.32%20PM.png?dl=0 17:13:53 lots of errors 17:14:11 when I do git grep dmy_glyph I see only one line using it 17:14:20 because I botched renaming the variable in the rebaase 17:14:41 also maybe check `ctx` 17:17:18 ctx is defined and used all over 17:18:37 03ebering02 07* 0.26-a0-546-g3c21275: Unbutcher wjchen's patch 10(44 seconds ago, 1 file, 1+ 2-) 13https://github.com/crawl/crawl/commit/3c2127501aae 17:19:01 well, here's the error: https://www.dropbox.com/s/1n3sngho91w3raq/Screen%20Shot%202020-08-18%20at%205.18.32%20PM.png?dl=0 17:24:33 yeah, retina in glyph mode is back to half size 17:25:07 presumably you can manually get around this by changing the font size 17:26:17 yes, but that's also bizzare, because I didn't touch the device ratio line and neither did wjchen 17:26:51 the code in DungeonCellRenderer that uses it got reverted 17:27:31 hm, maybe it got moved into an init mode? 17:27:52 it did 17:27:54 oh 17:27:58 I think I see the issue 17:28:23 I'm honestly guessing, but the font metrics are computed by attaching a secret div to the body 17:28:30 but the canvas is what's getting scaled 17:28:41 so it's computing the unscaled thing and then putting it into a scaled context 17:28:48 ok, I think what's in the init mode is fine 17:28:54 *init function 17:29:14 but it doesn't handle moving a window from hidpi to non-hidpi 17:29:18 which is how I was testing 17:29:30 oh 17:29:33 when I start crawl with my window on a retina screen it is fine 17:30:05 and now I have learned my lesson to never touch non console ui ever again 17:30:05 just doubles when I drag it off that screen 17:30:05 :) 17:30:14 well, dragging like this is a bit niche 17:30:15 is there a rc option to shut off server redrawing during throwing? i don`t want to see the missile trails 17:32:11 Unstable branch on crawl.kelbi.org updated to: 0.26-a0-546-g3c2127501a (34) 17:41:57 twelwe the option is use_animations, I don't really remember how it works though 17:42:50 ebering: one way to approach this is that this init call should be retriggered if devicePixelRatio changes (that is exactly how local tiles handles it) 17:45:05 advil use_animations = false worked for me, i`ll see if there are any interesting side effects 17:45:17 yeah I think that works for disabling everything 17:45:30 if you just want to disable firing you can do something with `beam` 17:45:31 working on wands and spells, this is cool 17:47:20 frozen ramparts generates insane usk piety 17:48:21 ebering I think it might be that your assumption that px is going to scale with device density isn't right 17:48:59 devicePixelRatio is often described as the ratio between px and device pixels in fact 17:51:12 I'm not even 100% sure that this is the same across browsers, but see https://developer.mozilla.org/en-US/docs/Web/API/Window/devicePixelRatio 18:00:49 I thought somewhere in ##crawl-dev there was me ranting about this stuff but I can't find it right now 18:24:07 Unstable branch on underhound.eu updated to: 0.26-a0-546-g3c2127501a (34) 20:55:43 -!- amalloy_ is now known as amalloy 21:19:11 advil: I'm not sure how to do that and javascript terrifies me 21:19:17 I'll see if wjchen can look at it 21:19:25 s/terrifies/deeply upsets/ 22:31:12 03PleasingFungus02 07* 0.26-a0-547-g695e311: Give Palentonga +1 HP (apt) 10(8 minutes ago, 1 file, 1+ 1-) 13https://github.com/crawl/crawl/commit/695e311587e8 22:47:08 Unstable branch on crawl.kelbi.org updated to: 0.26-a0-547-g695e311587 (34)