[Pkg-javascript-commits] [jarisplayer] 29/80: Fixed timeFormat function
Jonas Smedegaard
dr at jones.dk
Tue May 10 08:45:33 UTC 2016
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository jarisplayer.
commit 9ff335e1eea40a493d50335a205216d85286918c
Author: jgmylm <jgmylm at edf201c3-a14d-0410-a11e-aa85364efa9f>
Date: Sat May 15 00:34:53 2010 +0000
Fixed timeFormat function
git-svn-id: https://jaris.svn.sourceforge.net/svnroot/jaris/trunk@29 edf201c3-a14d-0410-a11e-aa85364efa9f
---
bin/JarisFLVPlayer.swf | Bin 20679 -> 20681 bytes
changes.txt | 6 +++++-
src/jaris/Version.hx | 6 +++---
src/jaris/utils/Utils.hx | 4 ++--
4 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/bin/JarisFLVPlayer.swf b/bin/JarisFLVPlayer.swf
index 6e8a219..b84809a 100644
Binary files a/bin/JarisFLVPlayer.swf and b/bin/JarisFLVPlayer.swf differ
diff --git a/changes.txt b/changes.txt
index e5d1628..76a3e7d 100644
--- a/changes.txt
+++ b/changes.txt
@@ -1,4 +1,8 @@
-Jaris FLV Player v2.0.7 beta - 03/19/2010
+Jaris FLV Player v2.0.8 beta - 14/05/2010
+
+ * Fixed bug on formatTime function calculating hours as minutes
+
+Jaris FLV Player v2.0.7 beta - 03/19/2010
* Fixed youtube security bug
diff --git a/src/jaris/Version.hx b/src/jaris/Version.hx
index 47e0b67..01a76fb 100644
--- a/src/jaris/Version.hx
+++ b/src/jaris/Version.hx
@@ -27,9 +27,9 @@ package jaris;
*/
class Version
{
- public static var NUMBER:String = "2.0.7";
+ public static var NUMBER:String = "2.0.8";
public static var STATUS:String = "beta";
- public static var DATE:String = "19";
- public static var MONTH:String = "03";
+ public static var DATE:String = "14";
+ public static var MONTH:String = "05";
public static var YEAR:String = "2010";
}
\ No newline at end of file
diff --git a/src/jaris/utils/Utils.hx b/src/jaris/utils/Utils.hx
index e283f76..be27930 100644
--- a/src/jaris/utils/Utils.hx
+++ b/src/jaris/utils/Utils.hx
@@ -54,11 +54,11 @@ class Utils
{
if (Math.floor((time / 60)) / 60 < 10)
{
- hours = "0" + Math.floor(time / 60) + ":";
+ hours = "0" + Math.floor((time / 60) / 60) + ":";
}
else
{
- hours = Math.floor(time / 60) + ":";
+ hours = Math.floor((time / 60) / 60) + ":";
}
if (Math.floor((time / 60) % 60) < 10)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/jarisplayer.git
More information about the Pkg-javascript-commits
mailing list