Time Nick Message 10:12 sfan5 merging #10472 in 5m 10:12 ShadowBot https://github.com/minetest/minetest/issues/10472 -- Chatcommands: Show the execution time if the command takes a long time by HybridDog 12:17 Krock that's not related to TOSERVER_PLAYERPOS #11057 or is it ? 12:17 ShadowBot https://github.com/minetest/minetest/issues/11057 -- Player position not updating on the server 12:17 sfan5 what do you mean 12:18 Krock maybe I missed a discussion, but this is about TOSERVER_PLAYERPOS, and not about damage/immortal groups 12:19 sfan5 nah, it is related https://github.com/minetest/minetest/commit/fd1c1a755eaa2251c99680df3c72ca8886ca0a4e 12:19 sfan5 since the immortal group controls this optimization (not sending TOSERVER_PLAYERPOS) 12:19 Krock oh right 12:20 Krock this must be at least the third time for me to forget about the PLAYERPOS <---> HP correlation. feels so intuitive but yet correct 12:32 Krock Irrlicht 1.9.0mt also slowed down the scrolling speed in textareas a lot 12:32 Krock regular lists are fine, but not textlists 12:32 Krock s/textlists/textareas/ 12:33 sfan5 is the credits tab a textlist? 12:33 Krock nope 12:33 Krock err yes. text list 12:33 Krock list items, no selectable text. 12:34 Krock textlist[] and scroll_container[] are good, textarea[] is not 12:35 Krock it's approx 1/20 of the previous scrolling speed 15:16 Pexin is there interest in a pull request for clickable chat weblinks, and does anyone feel like testing https://github.com/pecksin/minetest (to ensure it works on mac keyboards for example) before considering said PR? 15:19 sfan5 would be useful I think 15:19 Pexin effective instructions are in minetest.conf.example 17:39 MTDiscord The website link from the mainmemu formspecs works as expected on M1 17:39 MTDiscord So it should work without issues 18:09 MTDiscord Yay 18:18 MTDiscord As does the open folder option 18:18 MTDiscord Well open user data folder 20:41 Sokomine ooh. building the client with upstream irrlicht is no longer possible? intresting! nice to see that there's progress 20:58 rubenwardy Is there a guide anywhere? There's lots of users having issues with this 20:59 rubenwardy perhaps renaming libIrrlicht to libMtIrrlicht would help 21:00 sfan5 how would that change anything? the current message nicely explains the situation 21:04 rubenwardy it allows them to be installed systemwide at the same time, and found 21:10 Sokomine it might be a good idea to describe what was changed and what needs to be done to compile it now in a more prominent way. had to search for the right option 21:11 Sokomine rubenwardy: yes, that might be nice 21:25 Sokomine (.text+0x64c): undefined reference to `BZ2_bzDecompressInit' missing a new dependency, or is a newer version required? 21:26 Sokomine ah. forgot a parameter. seems to require two to use the local irrlicht install 21:31 sfan5 yes setting both -DIRRLICHT_LIBRARY and -DIRRLICHT_INCLUDE_DIR is required 21:54 Sokomine doesn't seem to work. irrlicht sources compiled & make install. cmake . -DIRRLICHT_LIBRARY=/usr/local/lib -DIRRLICHT_INCLUDE_DIR=/usr/local/include/irrlicht 21:55 sfan5 IRRLICHT_LIBRARY should point to libIrrlicht.so.1.9.0 21:55 Sokomine get a lot of undefined reference to `irr::video::MATERIAL_MAX_TEXTURES_USED' 22:00 Sokomine only got a libIrrlicht.a - and an old /usr/lib/x86_64-linux-gnu/libIrrlicht.so.1.8.4 from the system-wide installed lib 22:01 sfan5 you should pick the .a then 22:04 Sokomine took the -DBUILD_SHARED_LIBS=OFF too literal. apparently a -DBUILD_SHARED_LIBS=ON is a better choice 22:05 sfan5 not really static is fine 22:06 Sokomine at least this time libIrrlicht.so.1.9.0 was created and installed 22:38 Sokomine ld still complains about undefined references. it seems it's still using an old version of irrlicht. might be related: WARNING: Target "minetest" requests linking to directory "/usr/local/lib". Targets may link only to libraries. CMake is dropping the item. 22:39 sfan5 IRRLICHT_LIBRARY needs to point to a file, not the directory 22:46 Sokomine aaah 22:47 Sokomine compiled nicely now 23:01 Sokomine thanks :-) perhaps a small example line could not hurt so that others won't run into the same problem