Time Nick Message 06:48 fruitsnack hello, does anybody know if FaceDeer visits this room? 11:50 Calinou !seen FaceDeer 11:50 Calinou !help 11:51 Calinou fruitsnack: NickServ tells me "[NickServ] Last seen : Mar 08 07:24:45 2017 (2y 17w 4d ago)", if their NickServ account was FaceDeer 11:51 Calinou (and if they used the NickServ account actively) 12:19 sfan5 !seen FaceDeer 12:19 MinetestBot sfan5: facedeer was last seen at 2017-02-20 06:03:42 UTC on #minetest 12:19 Calinou thanks :) 15:01 Exe_Virus hello can someone point me to how to get started with helping with engine documentation? 15:06 ANAND Exe_Virus: Glad to know you're interested in documenting the engine. :) 15:06 Exe_Virus Glad to get a response :) 15:08 ANAND We have https://doxy.minetest.net/, but it seems to be forsaken by everyone 15:08 ANAND That's probably the only engine documentation we have, at the moment, AFAIK. 15:09 Exe_Virus Yikes. Okay so this is a monumental task, haha. Where is the doxy.minetest.net code stored? 15:10 ANAND A couple of pages in the Dev Wiki (dev.minetest.net) are dedicated to the engine, but the doxy is probably the only serious source of engine documentation. 15:10 Exe_Virus That makes sense, I guess what I' 15:11 Exe_Virus I'm saying is where is the doxygen stuff stored? how do I edit or add to it? 15:12 ANAND One sec 15:13 ANAND Here's the Doxygen config file: https://github.com/minetest/minetest/blob/master/doc/Doxyfile.in 15:14 ANAND Doxygen auto-generates documentation from the source code 15:15 Exe_Virus okay, so do I go into the codebase and start adding doxygen comments and doing PR's to get those changes added? 15:17 ANAND That's what I'd recommend, but you might want to consult the core devs, to see if they have a better suggestion. :) 15:19 Exe_Virus How would I consult them? Do I need to get added to minetest-dev or some other method? 15:20 ANAND You can join #minetest-dev, or you could just hang around here and wait for them to show up. 15:21 ANAND They're present in both the channels 15:22 Exe_Virus I logged in to minetest-dev but have no permission to post there, how do I koin I guess? 15:23 Exe_Virus koin=join* 15:29 pauloue I'm pretty sure everyone is able to post in minetest-dev 15:30 Exe_Virus I keep getting the "#minetest-dev :Cannot send to nick/channel" response 15:31 pauloue oh you need to be registered with freenode 15:31 Exe_Virus okay, I'll go figure that out:) 15:31 LoneWolfHT Nope, you need to be given voice I think 15:32 LoneWolfHT Because I'm registered and I can't speak there either 15:32 Exe_Virus hurm. how would one go about getting "voice" privs? 15:38 pauloue LoneWolfHT: you can't talk because you're using a web client, see https://wiki.minetest.net/IRC 15:39 Exe_Virus LoneWolfHT: registering and logging in fixes the issue 15:42 LoneWolfHT ah, k. I'll try hexchat then... 19:40 MinetestBot 02[git] 04paramat -> 03minetest/minetest: Move more dungeon parameter selection to mapgens (#8653) 130c31946 https://git.io/fjPvy (152019-07-09T19:38:51Z) 20:18 juli hi i want to change the backend of one world to redis using this command: 20:18 juli minetestserver --migrate redis --world . 20:18 juli but it says that the redis_address and redis_hash is missing 20:18 juli how do i get the redis_hash? 20:37 DS-minetest Does someone know why irr::gui::ICursorControl::setActiveIcon is so slow? (#8665) 20:37 ShadowBot https://github.com/minetest/minetest/issues/8665 -- Formspec: change the appeareance of the cursor on fields and co. by DS-Minetest 20:40 Exe_Virus DS: is that within irrlicht? if so, I may be able to look into it for you. my guess is that requires an OS call and maybe Irrlicht bundles those together to happen every so often? 20:40 DS-minetest juli: https://wiki.minetest.net/Database_backends 20:41 DS-minetest Exe_Virus: i found the source code https://github.com/zaki/irrlicht/blob/c7a766c2909f601e81bc44d28ecc12c738d7a0f7/source/Irrlicht/CIrrDeviceLinux.cpp#L2179 20:45 DS-minetest hm, maybe I should try to cast and call update() 20:46 Exe_Virus are you only seeing the problem on Linux? 20:47 DS-minetest I can't test in windoof 20:47 Exe_Virus gotcha, hard to say then because from the looks of it setActive icon always just does an OS call. 20:47 DS-minetest setActiveIcon only sets ActiveIcon, XDefineCursor is called in update 20:48 Exe_Virus right,Xdefine cursor looks like an X11 OS hook 20:48 DS-minetest mhm 20:50 DS-minetest actually, changing the cursor back to normal is fast, but to ECI_IBEAM is slow 20:53 Exe_Virus here's the call in xlib: https://GitHub.com/mirror/libX11/ 20:53 Exe_Virus then go to src/defcursor.c 20:56 DS-minetest nah, I don't want to call that directly 20:57 Exe_Virus not what I'm saying, I'm saying you can read there as to maybe why ECI_IBEAM is slow 20:58 DS-minetest ah 20:58 DS-minetest btw. ECI_WAIT is slow, too 20:58 DS-minetest (ECI_WAIT is animated) 21:07 Exe_Virus both seem like OS calls while the others seem like engine calls. 21:08 Exe_Virus as in I doubt X11 supports a cross hairs that looks the same as windows. but I bet that windows and Linux and Mac all have Ibeams and Wait icons 21:11 Calinou they do, indeed 21:16 DS-minetest uh, maybe it isn't really irrlichts fault but mine 21:18 DS-minetest ahhh, it just because I'm stupid 21:18 DS-minetest I'm sorry for bothering you >_< 21:20 DS-minetest yey, now it's fast