You can subscribe to this list here.
| 2007 |
Jan
|
Feb
(84) |
Mar
(29) |
Apr
(57) |
May
(78) |
Jun
(26) |
Jul
(11) |
Aug
(39) |
Sep
(51) |
Oct
(131) |
Nov
(51) |
Dec
(18) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(23) |
Feb
(47) |
Mar
(72) |
Apr
(56) |
May
(49) |
Jun
(37) |
Jul
(28) |
Aug
(49) |
Sep
(105) |
Oct
(151) |
Nov
(224) |
Dec
(103) |
| 2009 |
Jan
(13) |
Feb
(16) |
Mar
(31) |
Apr
(4) |
May
(5) |
Jun
(26) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
1
(1) |
2
|
3
(2) |
4
|
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
|
12
|
13
|
14
(1) |
15
|
16
|
17
|
18
|
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
|
26
|
27
|
28
|
29
|
30
|
|
|
|
From: <yo...@us...> - 2009-04-14 15:00:41
|
Revision: 1545
http://ultrastar-ng.svn.sourceforge.net/ultrastar-ng/?rev=1545&view=rev
Author: yoda-jm
Date: 2009-04-14 15:00:28 +0000 (Tue, 14 Apr 2009)
Log Message:
-----------
Fixed video gap problem
Modified Paths:
--------------
trunk/game/screen_sing.cc
Modified: trunk/game/screen_sing.cc
===================================================================
--- trunk/game/screen_sing.cc 2009-04-03 15:37:15 UTC (rev 1544)
+++ trunk/game/screen_sing.cc 2009-04-14 15:00:28 UTC (rev 1545)
@@ -133,7 +133,7 @@
if (ar > arMax || (m_video && ar > arMin)) fillBG(); // Fill white background to avoid black borders
m_background->draw();
} else fillBG();
- if (m_video) { m_video->render(time - song.videoGap); double tmp = m_video->dimensions().ar(); if (tmp > 0.0) ar = tmp; }
+ if (m_video) { m_video->render(time + song.videoGap); double tmp = m_video->dimensions().ar(); if (tmp > 0.0) ar = tmp; }
ar = clamp(ar, arMin, arMax);
double offset = 0.5 / ar + 0.2;
theme->bg_bottom->dimensions.fixedWidth(1.0).bottom(offset);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <yo...@us...> - 2009-04-03 15:37:43
|
Revision: 1544
http://ultrastar-ng.svn.sourceforge.net/ultrastar-ng/?rev=1544&view=rev
Author: yoda-jm
Date: 2009-04-03 15:37:15 +0000 (Fri, 03 Apr 2009)
Log Message:
-----------
Removed unneeded var
Modified Paths:
--------------
trunk/game/main.cc
Modified: trunk/game/main.cc
===================================================================
--- trunk/game/main.cc 2009-04-03 13:38:11 UTC (rev 1543)
+++ trunk/game/main.cc 2009-04-03 15:37:15 UTC (rev 1544)
@@ -20,8 +20,6 @@
namespace fs = boost::filesystem;
-SDL_Surface * screenSDL;
-
volatile bool g_quit = false;
extern "C" void quit(int) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <yo...@us...> - 2009-04-03 13:40:28
|
Revision: 1543
http://ultrastar-ng.svn.sourceforge.net/ultrastar-ng/?rev=1543&view=rev
Author: yoda-jm
Date: 2009-04-03 13:38:11 +0000 (Fri, 03 Apr 2009)
Log Message:
-----------
Removed SDL_opengl dependency in favor of pure OpenGL headers
Modified Paths:
--------------
trunk/game/surface.cc
trunk/game/surface.hh
Modified: trunk/game/surface.cc
===================================================================
--- trunk/game/surface.cc 2009-04-01 08:56:33 UTC (rev 1542)
+++ trunk/game/surface.cc 2009-04-03 13:38:11 UTC (rev 1543)
@@ -1,4 +1,5 @@
#include "surface.hh"
+#include <GL/glu.h>
#include "configuration.hh"
#include "video_driver.hh"
Modified: trunk/game/surface.hh
===================================================================
--- trunk/game/surface.hh 2009-04-01 08:56:33 UTC (rev 1542)
+++ trunk/game/surface.hh 2009-04-03 13:38:11 UTC (rev 1543)
@@ -5,7 +5,7 @@
#include <string>
#include <boost/noncopyable.hpp>
#include <boost/scoped_ptr.hpp>
-#include <SDL/SDL_opengl.h>
+#include <GL/gl.h>
#include <librsvg/rsvg.h>
#include <librsvg/rsvg-cairo.h>
#include <cairo.h>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <yo...@us...> - 2009-04-01 08:56:44
|
Revision: 1542
http://ultrastar-ng.svn.sourceforge.net/ultrastar-ng/?rev=1542&view=rev
Author: yoda-jm
Date: 2009-04-01 08:56:33 +0000 (Wed, 01 Apr 2009)
Log Message:
-----------
Fixed compilation error on gcc-4.4
Modified Paths:
--------------
trunk/tools/pak.h
Modified: trunk/tools/pak.h
===================================================================
--- trunk/tools/pak.h 2009-03-23 11:52:56 UTC (rev 1541)
+++ trunk/tools/pak.h 2009-04-01 08:56:33 UTC (rev 1542)
@@ -1,6 +1,7 @@
#ifndef USNG_PAK_H
#define USNG_PAK_H
+#include <stdint.h>
#include <string>
#include <fstream>
#include <map>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|