aboutsummaryrefslogtreecommitdiff
path: root/src/client/content_cao.cpp
Commit message (Expand)AuthorAge
...
* Fix UpdateBonePosition() breaking animations (#9577)theviper1212020-04-26
* Reuse object_shader for "wielditem" and "item" entity drawtypes (#9537)Danila Shutov2020-04-19
* Use TILE_MATERIAL_ALPHA for use_texture_alpha entity flag (#9639)Alex2020-04-11
* Drop genericobject.{cpp,h} (#9629)Loïc Blot2020-04-10
* Overall improvements to log messages (#9598)sfan52020-04-08
* Fix crash on wielditem/item entitiessfan52020-03-28
* Fix incorrect light updates for wielditem and item visuals (#9540)Danila Shutov2020-03-23
* Fix entity lighting (#9514)Danila Shutov2020-03-16
* Basic model shading (#9374)Danila Shutov2020-02-16
* Renaming the function wasn't enoughSmallJoker2019-12-07
* Attachments: Fix interpolation from (0,0,0) after detachSmallJoker2019-12-07
* Fix LocalPlayer-bound sound playback broken by 81c2370SmallJoker2019-12-05
* Fix upright_sprite lighting when colors are setsfan52019-10-06
* Fix unwanted detaching when damage = 0Jacob Lifshay2019-10-05
* Attachments: Fix attachments to temporary removed objects (#8989)SmallJoker2019-10-02
* Fix rotation of attached particlespawnerPedro Gimeno2019-08-31
* Disable autoforward if player is deadANAND2019-08-20
* Merge pull request #8776 from osjc/FixGetNodeJozef Behran2019-08-10
* ContentCAO: Fix broken attachments on join (#8701)SmallJoker2019-07-29
* Fix persistent ^[brighten after damage again (#5739)SmallJoker2019-05-26
* Optimize string (mis)handling (#8128)Jozef Behran2019-05-18
* Attend to review, re-arrange blank lines, update lua_api.txtparamat2019-04-14
* Fix regression in automatic_face_movement_max_rotation_per_secPedro Gimeno2019-04-14
* Consistent HP and damage types (#8167)SmallJoker2019-02-10
* Use true pitch/yaw/roll rotations without loss of precision by pgimeno (#8019)Paul Ouellette2019-02-07
* Proselytize the network. Use IEEE F32 (#8030)SmallJoker2019-01-03
* Fix more transparency issues with ogles2 driver (#8005)stujones112018-12-20
* Network: Send IEEE floats (#7768)SmallJoker2018-12-13
* Add object visual type 'item' (#7870)Alex2018-12-11
* Move client-specific files to 'src/client' (#7902)Quentin Bazin2018-11-28
gt; [Fixes]", "MirceaKitsune <mirceakitsune@gmail.com> [Audiovisuals]", "Guiseppe Bilotta (Oblomov) <guiseppe.bilotta@gmail.com> [Fixes]", "matttpt <matttpt@gmail.com> [Fixes]", "Nils Dagsson Moskopp (erlehmann) <nils@dieweltistgarnichtso.net> [Minetest Logo]", "Jeija <jeija@mesecons.net> [HTTP, particles]", } local function buildCreditList(source) local ret = {} for i = 1, #source do ret[i] = core.formspec_escape(source[i]) end return table.concat(ret, ",,") end return { name = "credits", caption = fgettext("Credits"), cbf_formspec = function(tabview, name, tabdata) local logofile = defaulttexturedir .. "logo.png" local version = core.get_version() return "image[0.5,1;" .. core.formspec_escape(logofile) .. "]" .. "label[0.5,3.2;" .. version.project .. " " .. version.string .. "]" .. "label[0.5,3.5;http://minetest.net]" .. "tablecolumns[color;text]" .. "tableoptions[background=#00000000;highlight=#00000000;border=false]" .. "table[3.5,-0.25;8.5,6.05;list_credits;" .. "#FFFF00," .. fgettext("Core Developers") .. ",," .. buildCreditList(core_developers) .. ",,," .. "#FFFF00," .. fgettext("Active Contributors") .. ",," .. buildCreditList(active_contributors) .. ",,," .. "#FFFF00," .. fgettext("Previous Core Developers") ..",," .. buildCreditList(previous_core_developers) .. ",,," .. "#FFFF00," .. fgettext("Previous Contributors") .. ",," .. buildCreditList(previous_contributors) .. "," .. ";1]" end }