1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

- Update to 0.143

Feature safe:	yes
This commit is contained in:
Dmitry Marakasov 2012-03-10 03:23:35 +00:00
parent de4af32152
commit 0bf0248260
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=293034
3 changed files with 14 additions and 3 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= springlobby
PORTVERSION= 0.130
PORTVERSION= 0.143
CATEGORIES= games net
MASTER_SITES= http://www.springlobby.info/tarballs/ \
http://mirror.amdmi3.ru/distfiles/

View File

@ -1,2 +1,2 @@
SHA256 (springlobby-0.130.tar.bz2) = 5641185829d41f2506a8790f8f89fb10c83f2cba65ee905b907ac895d9abf3e1
SIZE (springlobby-0.130.tar.bz2) = 1788541
SHA256 (springlobby-0.143.tar.bz2) = 4694a0d88c7409a42cc83cd10b80226aa2cc5b2f0f83fa95351638fee3e77b61
SIZE (springlobby-0.143.tar.bz2) = 1797369

View File

@ -0,0 +1,11 @@
--- src/battlelistctrl.cpp.orig 2012-03-09 20:01:28.000000000 +0400
+++ src/battlelistctrl.cpp 2012-03-10 07:08:45.273705553 +0400
@@ -103,7 +103,7 @@
case 7: return wxFormat(_T("%d") ) % int(battle.GetSpectators());
case 8: return wxFormat(_T("%d") ) % (int(battle.GetNumUsers()) - int(battle.GetSpectators()));
case 9: return wxFormat(_T("%d") ) % int(battle.GetMaxPlayers());
- case 10: return ( wxDateTime(battle.GetBattleRunningTime()).FormatISOTime() );
+ case 10: return ( wxDateTime((time_t)battle.GetBattleRunningTime()).FormatISOTime() );
}
}