Re: [Bf-committers] Are our git tags out of date?

2013-11-24 Thread Sergey Sharybin
git describe master gives latest tag which is reachable from the HEAD of master branch. And the thing is: in svn we've created a tag from trunk and backported several commits there before actual release. What happened during svn-git converts is that every release have own branch created at the

Re: [Bf-committers] [Bf-blender-cvs] [f842ce8] master: UI List: ctrl click on names in list can be used for renaming.

2013-11-24 Thread Sergey Sharybin
`arc land` does push indeed. To skip push use `git lang --hold`. On Sat, Nov 23, 2013 at 11:53 PM, Bastien Montagne montagn...@wanadoo.fr wrote: Eeeek… Didn’t thought arc land would even push the changes onto origin/master! Next time will land it myself with git commands… :/ So, additional

Re: [Bf-committers] Are our git tags out of date?

2013-11-24 Thread Trouble Daemon
Hey, I see. Well, from local tests here, the problem will go away the next time a `git tag -a` is run: dan@wks:~/blender-build/testgit$ git describe master v2.70-1-g4eac1c8 dan@wks:~/blender-build/testgit$ vim GNUmakefile dan@wks:~/blender-build/testgit$ git commit -a [master fcafbfd]

[Bf-committers] Blender developer meeting minutes - Nov 24, 2013

2013-11-24 Thread Ton Roosendaal
Hi all, Here are the notes from today's meeting in irc.freenode.net #blendercoders 1) Migration to git phabricator - Everything is smooth and working! Last remaining issues are here: http://developer.blender.org/project/view/31/ - We need a good doc for Windows git tortoise users. Especially

[Bf-committers] Windows: Switch to vc2012 status?

2013-11-24 Thread Thomas Dinges
Hi everyone, What is the current status of our vc2012 support? I was working on updating our OSL libraries and discovered reasons again why we should abandon vc2008 finally... (see http://developer.blender.org/T37527) The question now is, what is missing or blocking us from doing the change?

Re: [Bf-committers] Windows: Switch to vc2012 status?

2013-11-24 Thread Alexandr Kuznetsov
Hi Thomas, * Afaik all libraries should work fine. I remember there were some instability issues (due to small differences in OCIO), but I think they were resolved. (I mostly used linux for few month) Anyway, all libs can be easily rebuild with vc2012. * VS 2013. Sigh. If we should update, we

Re: [Bf-committers] Blender developer meeting minutes - Nov 24, 2013

2013-11-24 Thread Keith Boshoff
On 24 Nov 2013 8:02 PM, Ton Roosendaal t...@blender.org wrote: - We need a good doc for Windows git tortoise users. Especially how ssh keys work. Thomas Dinges volunteers to write it here: http://wiki.blender.org/index.php/Dev:Doc/Building_Blender/Windows As a Windows based git user I'd

Re: [Bf-committers] [Bf-blender-cvs] [1e09685] master: Commit D31 : Check if the user count needs to be decreased after adding a new BI image texture.

2013-11-24 Thread Campbell Barton
Comments like this are obvious/redundant IMHO, Decrease the previous image users count by 1, Assign the new image - its very obvious whats being done without any comments. On Mon, Nov 25, 2013 at 12:07 AM, Thomas Beck nore...@git.blender.org wrote: Commit:

[Bf-committers] Updated Default Preferences - Need Testing

2013-11-24 Thread Jonathan Williamson
Hi all, Several changes to the user preferences defaults have just been committed as part of the UI project. The changes are listed here: http://developer.blender.org/T37518 If people could please test these and ensure there's no bad corner cases that we've missed (such as ones that break

Re: [Bf-committers] Windows: Switch to vc2012 status?

2013-11-24 Thread Thomas Dinges
Hi Alex, Libs are still in SVN and will stay there as well: https://svn.blender.org/svnroot/bf-blender/trunk/lib/ If we can update to VS 2013 that would be even better. Thanks for building the libs for that. Will the builds still run on Windows XP then? I remember some problems with the VS

Re: [Bf-committers] Windows: Switch to vc2012 status?

2013-11-24 Thread Alexandr Kuznetsov
Hi Thomas, On 11/24/2013 11:33 PM, Thomas Dinges wrote: Libs are still in SVN and will stay there as well: https://svn.blender.org/svnroot/bf-blender/trunk/lib/ Thanks for info. Will the builds still run on Windows XP then? I remember some problems with the VS 2012 builds afaik? Not that we

Re: [Bf-committers] Windows: Switch to vc2012 status?

2013-11-24 Thread Jeffrey H
Thomas, If we are to implement these new libs, buildbot will need to be rebuilt on the slave machine. Would I be able to use the Express version (assuming there is/will be one)? My primary concern is being able to build with OpenMP and x64 architectures. As far as I know, 2010+ compiles x64 in

Re: [Bf-committers] Windows: Switch to vc2012 status?

2013-11-24 Thread Alexandr Kuznetsov
Hi Jeffrey, Afaik, express versions of 2010+ have x64 support. But no OpenMP. Best, Alex On 11/25/2013 1:00 AM, Jeffrey H wrote: Thomas, If we are to implement these new libs, buildbot will need to be rebuilt on the slave machine. Would I be able to use the Express version (assuming there

Re: [Bf-committers] Windows: Switch to vc2012 status?

2013-11-24 Thread Thomas Dinges
Hi, afaik since VS 2012, OpenMP is also supported in the Express version. So there should be no problem. We don’t have a real schedule for this yet, but I agree that 2.70 would be a good target. Thomas P.S: Alex, I am pretty sure XP gets already destroyed, there are a lot of open holes. :D

Re: [Bf-committers] [Bf-blender-cvs] [1e09685] master: Commit D31 : Check if the user count needs to be decreased after adding a new BI image texture.

2013-11-24 Thread Sergey Sharybin
Some comments as well. 1. Why not use post-push code audit tool at developer.b.o? 2. Would rather use id_us_min() instead of manual id user decrement. Additional checks there helps tracking what's going on when we've got user counter errors. On Mon, Nov 25, 2013 at 5:43 AM, Campbell Barton