Time Nick Message 17:54 rubenwardy merging #9995 in 15 17:54 ShadowBot https://github.com/minetest/minetest/issues/9995 -- ContentDB: Add Update All and download queuing by rubenwardy 18:44 Sokomine how well does mt use multiple cores? some issues indicate that it could do better...but when i watch my cpu-usage both cores are well used. other players with more cores report usage of their other cores as well 18:45 Sokomine for this, i'm regarding the client only 18:49 Sokomine also, regarding blocks, some servers seem to send some (5-6) blocks constantly even if nothing changed, while others send only mapblocks that where changed - or when the player looks into a diffrent direction. wonder why that is so 18:51 Krock needs better server-side debugging tools. A profiler could be added here to figure out which actions caused the mapblock to be re-sent: https://github.com/minetest/minetest/blob/master/src/map.cpp#L1947 18:52 Krock using block->getModified() 18:52 Krock or easier, MapBlock::getModifiedReasonString 18:57 Sokomine so it's not just a setting or caused by 5.2.0 instead of the current version? 18:58 Sokomine i'm currently hoovering in air, sourrounded by nothing, doing nothing, and get the blocks resent all the time 18:59 Sokomine still, my question regarding usage of multiple cores is another one (still planning for a new computer and undecided because mt - as low as its requirements are - is the most demanding software most of the time) 18:59 Sokomine but only on some servers in some situations. most of the time it just works fine. and many players use mobile phones which have even less good hardware 20:14 v-rob Anyone know the difference between GUIEditBoxWithScrollBar and intlGUIEditBox? I want to know if one can be deleted or merged into the other. 20:15 rubenwardy god knows 20:16 v-rob That's encouraging 20:16 v-rob I don't want to add styling code to both in the future 20:18 rubenwardy is one a text area and one a field? 20:18 v-rob Hmm, well there is this: https://github.com/minetest/minetest/blob/master/src/gui/guiFormSpecMenu.cpp#L1515-L1516 20:19 rubenwardy freetype should be required 20:19 v-rob They're both used for textarea. Fields just use IGUIEditBox 20:36 v-rob Holy moly, GUIFormSpecMenu used to be even more of a mess. 20:36 v-rob And I can't even find the first time intlGUIEditBox was used there... 20:53 v-rob Do we even need to support disabled freetype? Minetest seems to crash without it 20:54 sfan5 someone fixes it once in a while 20:55 v-rob intlGUIEditBox seems to be the more essential of the two, as GUIEditBoxWithScrollBar is just a copy of IGUIEditBox with, well, a scrollbar. 20:57 v-rob I suppose there's some reason intlGUIEditBox isn't used when freetype is disabled, but it seems rather moot now anyway 20:58 v-rob I guess I'll use intlGUIEditBox for styling when I get there then