Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-05-21Maintenance to bl_info, remove redundant tracker URL'sCampbell Barton
2014-02-04Clean-up: Updated bl_info['tracker_url'] to developer.blender.org, some ↵CoDEmanX
minor other edits
2013-10-16Fix to get game_engine_save_as_runtime working again provided by SolarLune.Mitchell Stokes
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-06-23update wiki version ro 2.6Brendon Murphy
finished
2012-01-14remove api field, was never used.Campbell Barton
2011-12-12make sure all filepath props have FILE_PATH subtypeCampbell Barton
2011-11-24Fixing the lib/lib issue.Mitchell Stokes
2011-10-15fix for error exporting game runtime to non utf8 path.Campbell Barton
2011-09-19/trunk: Removed final points in UI strings and messages.Bastien Montagne
Plus a few styling enhancements. [[Split portion of a mixed commit.]]
2011-09-15Fix #28555: Save as Runtime addon not working in 2.59Sergey Sharybin
Temporary mainfile used to be saved to current working directory which isn't always available for writting. Save temporary mainfile to temporary directory.
2011-09-08Fix for "save as runtime" plugin on linux.Sergey Sharybin
It was broken since 2.58a and problem was caused by sysconfig module which tried to parse python configuration header (pyconfig.h). Use dirname(platform.__file__) to determine libpath for python.
2011-08-19fix [#28291] AddOn "Save As Game Engine Runtime" doesn't allow relative ↵Campbell Barton
library paths?
2011-07-28fix [#27995] phyton32.dll caused "Appcrash" => Runtime crashes Campbell Barton
2011-07-05Save as Runtime: We don't need to copy Python for OS X since on OS X the ↵Mitchell Stokes
blenderplayer is built with Python already bundled in the .app folder.
2011-06-29fixes for same runtimeCampbell Barton
- for windows use case insensitive checks for DLL and EXE extensions. - copying python libs now works if python is installed onto the system. - renamed 'Save As Runtime' --> 'Save As Game Engine Runtime', since 'Runtime' is too much a generic term.
2011-06-27fix for copying python files when python is not found (prints a warning).Campbell Barton
initialize the filepath in the invoke function rather then the menu.
2011-06-27another small fix for people that use blend in their path nameCampbell Barton
2011-06-27get the version string a slightly better wayCampbell Barton
2011-06-27Save as Runtime: Some minor changes to bundling Python:Mitchell Stokes
* Now __pycache__ folders are ignored instead of *.pyc files (the only pyc files are in the __pycachce__ folders) * Now 2.58/python/lib is copied over instead of just lib. This allows the runtime to take advantage of Blender's "bundled Python" features. Having the 2.58 folder also allows for other potential files that BGE users might eventually want (e.g., components).
2011-06-21correct FSF address as pointed out by Dave PlaterCampbell Barton
2011-04-09Game Engine Save as Runtime:Mitchell Stokes
* On OSX, copy the Python lib folder to sit alongside the .app instead of the Unix executable.
2011-03-19Updated Blender Version to 2.57 and api versionJonathan Smith
2011-02-11add in module register calls (first pass, batch replace, will test each ↵Campbell Barton
addon next).
2011-01-14bl_addon_info -> bl_infoCampbell Barton
2011-01-08== Tracker urls formatting ==Luca Bonavita
READ THIS TO AVOID A LOT OF WORK! New way of linking to tracker pages: just use the parameter "aid" (artifact ID), to avoid a lot of manual updates later in wiki and svn. Example: ========= OLD WAY TO LINK TO TRACKER ----------------------------- Complete url of a script in Upload http://projects.blender.org/tracker/index.php?func=detail&aid=25349&group_id=153&atid=467 If we move this in contrib this url will become http://projects.blender.org/tracker/index.php?func=detail&aid=25349&group_id=153&atid=468 467 becomes 468, so we have to update this in wiki page. Later on, when this moves into Trunk, the url will become http://projects.blender.org/tracker/index.php?func=detail&aid=25349&group_id=153&atid=469 468 becomes 469, so we have to update the url in wiki page and svn. Annoying! NEW WAY TO LINK TO TRACKER ----------------------------- Best way to link to tracker page is using: http://projects.blender.org/tracker/index.php?func=detail&aid=25349 Use "func=detail" Use "aid" (which is the "artifact ID") DON'T use "group_id" (which is the project ID, bf-extensions is project 153) DON'T use "atid" (which is the "artifacts tracker ID") Like this, the url is unique, and we will avoid to update wiki pages and svn after moving pages [[Split portion of a mixed commit.]]
2011-01-04== Save Game As Runtime ==Mitchell Stokes
* Fixed OS X support (finds a good default path for the player and can make runtimes) * Enforce extensions on OS X (.app) and Windows (.exe) * Added Copy Python option to copy the bundled Python to the runtime directory * Added Overwrite 'lib' option to choose whether Copy Python will overwrite a pre-existing 'lib' directory in the runtime directory * Added Copy DLLs option (Win32 only) to copy DLL files from the Blender binary directory to the runtime directory * Cleaned up the code to handle compressed blend files.
2010-12-08updates for changes in blenders apiCampbell Barton
2010-11-24minor editsCampbell Barton
2010-11-24== game engine: save as runtime ==Luca Bonavita
- solved the problem I had with this addon, finally the addon was saving the blend as it is and in my case a compressed blend file was giving problem when played in the runtime - hence added a bit to manage compressed blends to embedd them uncompressed NOTE: this should be fixed in the player itself I think, same says campbell, but worth checking - now moved to trunk :) [[Split portion of a mixed commit.]]