Projects
Multimedia
gogglesmm
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 3
View file
gogglesmm.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Sat Aug 20 11:48:24 UTC 2011 - pascal.bleser@opensuse.org + +- update to 0.12.3: + * do not pass unsupported GL_LINEAR_MIPMAP_LINEAR to GL_TEXTURE_MAG_FILTER + * enable support for non-power-of-two textures now that Mesa 7.11-rc4 fixes the issue + * fix incorrect usage of FXAutoPtr + * fix parallel build + +------------------------------------------------------------------- Thu Jun 09 20:44:36 UTC 2011 - pascal.bleser@opensuse.org - update to 0.12.2:
View file
gogglesmm.spec
Changed
@@ -7,7 +7,7 @@ Summary: Music Collection Manager and Player Name: gogglesmm -Version: 0.12.2 +Version: 0.12.3 Release: 0.pm.1 License: GNU General Public License version 3 (GPL v3) Group: Productivity/Multimedia/Sound/Utilities
View file
gogglesmm-0.12.2.tar.bz2/ChangeLog -> gogglesmm-0.12.3.tar.bz2/ChangeLog
Changed
@@ -1,3 +1,9 @@ +0.12.3 + - Do not pass unsupported GL_LINEAR_MIPMAP_LINEAR to GL_TEXTURE_MAG_FILTER. + - Enable support for non-power-of-two textures now that Mesa 7.11-rc4 fixes the issue. + - Fix incorrect usage of FXAutoPtr. + - Fix parallel build. + 0.12.2 - Gnome 3 compatibility updates - Fix infinite last.fm warnings when the system time is out of sync with the last.fm server time.
View file
gogglesmm-0.12.2.tar.bz2/Makefile -> gogglesmm-0.12.3.tar.bz2/Makefile
Changed
@@ -126,6 +126,8 @@ endif +$(OBJECTS): src/icons.h src/icons.cpp + src/icons.h: $(ICONS) @echo " Creating Icon Resource Header" @$(RESWRAP_H) -o $@ $(ICONS) @@ -139,7 +141,6 @@ src/GMMediaPlayerService.cpp: src/mpris_xml.h endif -src/GMAbout.cpp: src/icons.h src/icons.cpp TRANSLATIONS:=$(basename $(notdir $(wildcard po/*.mo))) LINGUAS?=$(TRANSLATIONS)
View file
gogglesmm-0.12.2.tar.bz2/build/version -> gogglesmm-0.12.3.tar.bz2/build/version
Changed
@@ -1,5 +1,5 @@ MAJOR=0 MINOR=12 -LEVEL=2 +LEVEL=3 BETA_DB=0 BETA_APP=0
View file
gogglesmm-0.12.2.tar.bz2/src/GMImageView.cpp -> gogglesmm-0.12.3.tar.bz2/src/GMImageView.cpp
Changed
@@ -22,7 +22,8 @@ #include <GL/glu.h> // non power of two textures are currently broken in Mesa 7.10 in combination with mip mapping -#define DISABLE_TEXTURE_NON_POWER_OF_TWO 1 +// fixed in Mesa 7.11-rc4 +//#define DISABLE_TEXTURE_NON_POWER_OF_TWO 1 // Disable MIPMAP if needed //#define DISABLE_MIPMAP 1 @@ -111,7 +112,7 @@ #if defined(GL_VERSION_1_4) && !defined(DISABLE_MIPMAP) glHint(GL_GENERATE_MIPMAP_HINT,GL_NICEST); glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER,GL_LINEAR_MIPMAP_LINEAR); - glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER,GL_LINEAR_MIPMAP_LINEAR); + glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER,GL_LINEAR); glTexParameteri(GL_TEXTURE_2D,GL_GENERATE_MIPMAP,GL_TRUE); #else glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER,GL_LINEAR);
View file
gogglesmm-0.12.2.tar.bz2/src/GMWindow.cpp -> gogglesmm-0.12.3.tar.bz2/src/GMWindow.cpp
Changed
@@ -1327,8 +1327,8 @@ remote->updateCover(NULL); if (cover_small) { - delete cover_small; - cover_small=NULL; + FXImage * img = cover_small.release(); + delete img; } if (coverview_x11) {
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.