Page 1 of 9

OpenMW 0.35.0

Posted: 27 Dec 2014, 12:32
by Zini
And once more:

Development on OpenMW is at a good speed again. We have lost a little momentum on the OpenCS side, but I assume that is only a temporary effect (Christmas and stuff). Also, it seems we finally have an active developer for the launcher again (which will also benefit OpenCS).

Again, all is looking well.

We already have plenty of stuff for 0.35.0. RC phase in about a month or so.


We will need to take another look at the OGRE situation relatively soon, because OpenMW 1.0 is really close (2015 release for sure). But for now we can continue as usual.

Re: OpenMW 0.35.0

Posted: 27 Dec 2014, 23:19
by raevol
\o/

Re: OpenMW 0.35.0

Posted: 26 Jan 2015, 19:56
by scrawl
We've already exceeded the size of the previous release. However, the ess-importer is not quite ready yet. Do we start the RC phase now, or wait another 1 or 2 weeks to get the importer in a usable state?

Re: OpenMW 0.35.0

Posted: 27 Jan 2015, 20:47
by Zini
Now-ish. Meant to do that this week, but stuff got in the way again. Let's say beginning of the RC phase early next week.

btw. we should also look into integrating the importer into the launcher (or rather the wizard).

Re: OpenMW 0.35.0

Posted: 28 Jan 2015, 01:59
by raevol
Checking in. o/

Re: OpenMW 0.35.0

Posted: 02 Feb 2015, 15:40
by psi29a
Before we release, we should take care of a clang 3.7 warning... :)

Code: Select all

/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp: In member function ‘void Video::PacketQueue::put(AVPacket*)’:
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp:98:49: warning: ‘AVPacket::destruct’ is deprecated (declared at /usr/include/libavcodec/avcodec.h:994) [-Wdeprecated-declarations]
     if(pkt->data != flush_pkt.data && pkt1->pkt.destruct == NULL)
                                                 ^
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp:98:49: warning: ‘AVPacket::destruct’ is deprecated (declared at /usr/include/libavcodec/avcodec.h:994) [-Wdeprecated-declarations]
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp: In function ‘int Video::our_get_buffer(AVCodecContext*, AVFrame*)’:
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp:366:15: warning: ‘int avcodec_default_get_buffer(AVCodecContext*, AVFrame*)’ is deprecated (declared at /usr/include/libavcodec/avcodec.h:3493) [-Wdeprecated-declarations]
     int ret = avcodec_default_get_buffer(c, pic);
               ^
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp:366:48: warning: ‘int avcodec_default_get_buffer(AVCodecContext*, AVFrame*)’ is deprecated (declared at /usr/include/libavcodec/avcodec.h:3493) [-Wdeprecated-declarations]
     int ret = avcodec_default_get_buffer(c, pic);
                                                ^
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp: In function ‘void Video::our_release_buffer(AVCodecContext*, AVFrame*)’:
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp:375:5: warning: ‘void avcodec_default_release_buffer(AVCodecContext*, AVFrame*)’ is deprecated (declared at /usr/include/libavcodec/avcodec.h:3494) [-Wdeprecated-declarations]
     avcodec_default_release_buffer(c, pic);
     ^
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp:375:42: warning: ‘void avcodec_default_release_buffer(AVCodecContext*, AVFrame*)’ is deprecated (declared at /usr/include/libavcodec/avcodec.h:3494) [-Wdeprecated-declarations]
     avcodec_default_release_buffer(c, pic);
                                          ^
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp: In static member function ‘static void Video::VideoState::video_thread_loop(Video::VideoState*)’:
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp:414:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         if(packet->dts != AV_NOPTS_VALUE)
                        ^
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp:416:61: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         else if(pFrame->opaque && *(int64_t*)pFrame->opaque != AV_NOPTS_VALUE)
                                                             ^
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp: In member function ‘int Video::VideoState::stream_open(int, AVFormatContext*)’:
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp:596:19: warning: ‘AVCodecContext::get_buffer’ is deprecated (declared at /usr/include/libavcodec/avcodec.h:1939) [-Wdeprecated-declarations]
         codecCtx->get_buffer = our_get_buffer;
                   ^
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp:596:19: warning: ‘AVCodecContext::get_buffer’ is deprecated (declared at /usr/include/libavcodec/avcodec.h:1939) [-Wdeprecated-declarations]
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp:597:19: warning: ‘AVCodecContext::release_buffer’ is deprecated (declared at /usr/include/libavcodec/avcodec.h:1953) [-Wdeprecated-declarations]
         codecCtx->release_buffer = our_release_buffer;
                   ^
/home/bcurtis/workspace/OpenMW/openmw/extern/ogre-ffmpeg-videoplayer/videostate.cpp:597:19: warning: ‘AVCodecContext::release_buffer’ is deprecated (declared at /usr/include/libavcodec/avcodec.h:1953) [-Wdeprecated-declarations]

Re: OpenMW 0.35.0

Posted: 03 Feb 2015, 13:44
by Zini
The openmw-35 branch is up. The changelog update will follow soon-ish. Please start building the RC packages.

Re: OpenMW 0.35.0

Posted: 03 Feb 2015, 13:49
by psi29a
It won't build on osx after the opencs renaming:
https://travis-ci.org/OpenMW/openmw/jobs/49307924

I guess the OSX side of cmake needs to take that into account.

Please fix. :)

Re: OpenMW 0.35.0

Posted: 03 Feb 2015, 14:13
by Zini
Scrawl's mac fix is in the release branch now. And the changelog has been updated too.

Re: OpenMW 0.35.0

Posted: 03 Feb 2015, 14:16
by psi29a
Does this release depend on mygui 3.2.2? ugh...