Skip to content

Commit

Permalink
Include version info in "about" page
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsito committed Feb 10, 2015
1 parent fbed0c5 commit 37a8cec
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion agility/client/frm_about.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,14 @@
You should have received a copy of the GNU General Public License along with this program;
if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-->
<div id="dlg_about" class="easyui-window" title="Acerca de" style="width:640px;padding:10px">
<div id="dlg_about" class="easyui-window" style="width:640px;padding:10px">
<img src="/agility/images/AgilityContest.png"
width="150" height="100" alt="AgilityContest Logo"
style="border:1px solid #000000;margin:10px;float:right;padding:5px">
<dl>
<dt>
<strong>Version: </strong><span id="about_version">version</span> - <span id="about_date">date</span>
</dt>
<dt>
<strong>AgilityContest</strong> es Copyright &copy; 2013-2015 de <em>Juan Antonio Martínez &lt;[email protected]&gt;</em>
</dt>
Expand Down Expand Up @@ -58,13 +61,18 @@
</div>
<script type="text/javascript">
$('#dlg_about').window({
title: "Acerca de AgilityContest",
collapsible:false,
minimizable:false,
maximizable:false,
resizable:false,
closable:true,
modal:true,
iconCls: 'icon-dog',
onOpen: function() {
$('#about_version').html(ac_config.version_name);
$('#about_date').html(ac_config.version_date);
},
onClose: function() {loadContents('/agility/client/frm_main.php','');
}
})
Expand Down
4 changes: 2 additions & 2 deletions agility/server/auth/config.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
debug_level = "8"
version_name = "1.0"
version_date = "20130901_0000"
version_name = "1.1"
version_date = "20150210_1418"
lang = "es"
proximity_alert = "5"
database_name = "agility"
Expand Down

0 comments on commit 37a8cec

Please sign in to comment.