From 4b38a306cf95d23f260fc7528a8d63c332b4b681 Mon Sep 17 00:00:00 2001
From: DarkGod <darkgod@net-core.org>
Date: Tue, 17 Sep 2013 21:14:25 +0200
Subject: [PATCH] Added addons url to the addons menu

---
 game/engines/default/modules/boot/dialogs/Addons.lua | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/game/engines/default/modules/boot/dialogs/Addons.lua b/game/engines/default/modules/boot/dialogs/Addons.lua
index 23af8badee..a37405cd01 100644
--- a/game/engines/default/modules/boot/dialogs/Addons.lua
+++ b/game/engines/default/modules/boot/dialogs/Addons.lua
@@ -31,6 +31,8 @@ module(..., package.seeall, class.inherit(Dialog))
 function _M:init()
 	Dialog.init(self, "Configure Addons", game.w * 0.8, game.h * 0.8)
 
+	local url = Textzone.new{text="You can get new addons at #LIGHT_BLUE##{underline}#http://te4.org/addons/tome", auto_height=true, auto_width=true, fct=function() util.browserOpenUrl("http://te4.org/addons/tome") end}
+
 	self.c_compat = Checkbox.new{default=false, width=math.floor(self.iw / 3 - 40), title="Show incompatible", on_change=function() self:switch() end}
 
 	self:generateList()
@@ -55,10 +57,11 @@ function _M:init()
 	}, list={}, fct=function(item) self:switchAddon(item) end, select=function(item, sel) self:select(item) end}
 
 	self:loadUI{
-		{left=0, top=0, ui=self.c_list},
-		{right=0, top=0, ui=self.c_adds},
+		{left=0, top=0, ui=url},
+		{left=0, top=url.h, ui=self.c_list},
+		{right=0, top=url.h, ui=self.c_adds},
 		{left=0, bottom=0, ui=self.c_compat},
-		{left=self.c_list.w + 5, top=5, ui=Separator.new{dir="horizontal", size=self.ih - 10}},
+		{left=self.c_list.w + 5, top=5+url.h, ui=Separator.new{dir="horizontal", size=self.ih - 10}},
 	}
 	self:setFocus(self.c_list)
 	self:setupUI()
-- 
GitLab