7 Commits

Author SHA1 Message Date
1d6848bc9c Merge remote-tracking branch 'upstream/master' into nalc-1.2-dev 2020-06-16 21:46:20 +02:00
Hugo Locurcio
9b47fc7b4b Declare the minimum supported Minetest version to 0.4.17
This information can be used by ContentDB.
2020-06-03 18:56:14 +02:00
Hugo Locurcio
0439216cab Fix the Unreleased comparison link in the changelog 2020-02-15 16:24:29 +01:00
5e76ccfa78 Merge remote-tracking branch 'upstream/master' into nalc-1.2-dev 2020-01-06 22:24:13 +01:00
e1cae85e42 Merge branch 'master' of yunohost.local:minetest-mods/gauges into nalc-1.2-dev 2019-12-22 13:11:58 +01:00
e1534c2139 Corrige emplacement de la barre gauges
- Place à nouveau la barre au dessus de la tête du joueur.
2019-05-01 18:46:26 +02:00
d5f2404ddd Ajoute message de chargement du mod dans le journal action 2019-05-01 18:37:42 +02:00
3 changed files with 6 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Initial versioned release.
[Unreleased]: https://github.com/minetest-mods/gauges/compare/v1.0.1...HEAD
[1.0.1]: https://github.com/minetest-mods/gauges/compare/v1.0.0...v1.0.1
[1.0.2]: https://github.com/minetest-mods/gauges/compare/v1.0.1...v1.0.2
[Unreleased]: https://github.com/minetest-mods/gauges/compare/v1.0.3...HEAD
[1.0.3]: https://github.com/minetest-mods/gauges/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/minetest-mods/gauges/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/minetest-mods/gauges/compare/v1.0.0...v1.0.1

View File

@@ -67,3 +67,5 @@ minetest.register_entity("gauges:hp_bar", {
minetest.register_on_joinplayer(function(player)
minetest.after(1, add_gauge, player)
end)
minetest.log("action", "[gauges] loaded.")

View File

@@ -1,2 +1,3 @@
name = gauges
description = Adds health and breath gauges above players.
min_minetest_version = 0.4.17