Time Nick Message 06:40 Guest33333 sfan5: i did the latest changes i talked yesterday about inlining and passed clang-format on the cpp file since your changes 06:41 Guest33333 i also added a tiny doc because we missed that part :D 06:45 nerzhul_ i hope this day we can merge it ! 12:56 ANAND Changed up a bunch of stuff in #9705, fixed some stuff, and cleared up some messy code here and there. PR is ready for review again. 12:56 ShadowBot https://github.com/minetest/minetest/issues/9705 -- set_fov: Add support for time-based transitions by ClobberXD 13:23 attilax Hi all ! I'm looking for some help on a very special projet : we're a small team trying to make a new tool named 'astroport', the goal is to implement scuttlebutt, IPFS, libre currency and use minetest as a 3D client to communicate and exchange through IPFS. See the project here (in french) : https://astroport.frama.site here's the main dev SSB key to join us through scuttlebutt : @9BbJwPDjcyIqrOUPNn0nJZBduWdIrpMk3Cjz5MP361s=.e 13:23 attilax d25519 14:31 nerzhul_ attliax, i don't see the interest into MT here (note: i'm fr) 14:32 nerzhul_ sfan5 can i merge the prometheus PR ? <3 :D 14:32 sfan5 I'll look at it again this evening 14:34 nerzhul_ cool 14:34 nerzhul_ merging #9750 14:34 ShadowBot https://github.com/minetest/minetest/issues/9750 -- cmake: Silence find_package_handle_standard_args warnings by orbea 15:15 attilax Hi Nerzul, interest is to provide a 3D interface to our multi-tool, where it'd be possible to exchange. Exemple : you can create your shop there and show what you got to sell... It's also a good place where to meet and talk, different from classical visioconf tools. It's also a good place to show how Libre currency is working, through demos and little games... It can replace social networks, web storage (ipfs), online shops 15:15 attilax and visioconf. I find it interesting... 15:33 pmp-p attilax: would be great if the botnet part or it could live in the browser (note: i'm fr too) 15:41 attilax @pmp-p yep, would be handy... If you want to communicate with main dev working on it, you can join him on scuttlebutt (with the key I gave earlier) or through our gitlab : https://git.p2p.legal/axiom-team/astroport or even by mail : support@qo-op.com 17:21 Krock merging #8271 in 10 minutes 17:21 ShadowBot https://github.com/minetest/minetest/issues/8271 -- Fix breath statbar scaling; defer breath_bar hiding by one second by ClobberXD 17:30 Krock merging 19:27 sfan5 god I hate std::unique_ptr everytime I read it somewhere 19:27 sfan5 what even is the point 19:28 sfan5 just so you don't have to call delete in the class desctructor? 19:30 Krock probably? never used it so *shrug* 19:30 rubenwardy it's safer for memory manage 19:31 rubenwardy it makes the lifetime/owner more explicit, and avoids memory leaks 19:44 sfan5 hm 19:47 nerzhul sfan5 i'm using it for a single reason: defining clear ownership 19:47 nerzhul unique_ptr for the owner, a standard pointer for other 19:47 sfan5 yes I can see how it's useful for that 19:48 sfan5 i'm kind of annoyed at the .get() calls