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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-07-07Cleanup: spelling in commentsCampbell Barton
2021-06-22Cleanup: Spelling MistakesLeon Zandman
This patch fixes many minor spelling mistakes, all in comments or console output. Mostly contractions like can't, won't, don't, its/it's, etc. Differential Revision: https://developer.blender.org/D11663 Reviewed by Harley Acheson
2020-10-02Cleanup: pep8 (indentation, spacing, long lines)Campbell Barton
2020-09-07Cleanup: change Python version checks to include newer versionsCampbell Barton
2018-07-03Cleanup: pep8Campbell Barton
2018-06-29Cleanup: trailing newlinesCampbell Barton
2018-06-09Cleanup: trailing space in RNACampbell Barton
2012-11-26switch verious references from py3.2 -> 3.3 or just 3.Campbell Barton
2012-10-21style cleanup: bge, switch statements mostly.Campbell Barton
also left bmesh decimator on in previous commit.
2012-09-05code cleanup: python - pass multiple args to string startswith() / ↵Campbell Barton
endswith() functions rather than calling multiple times.
2012-05-02replace python3 command with python3.2, python3 isnt available on ubuntu.Campbell Barton
2011-10-20pass -noaudio when running blender for various utilities - doc-gen and tests.Campbell Barton
2011-10-14fix [#28909] OpenCollada export / import sintel lite v2.1 crashes on import.Campbell Barton
2010-08-19rna naming mainly forBoidsCampbell Barton
2010-08-18minor update rna namer and script to automatically apply updates from ↵Campbell Barton
blender to rna_properties.txt
2010-08-17- rna_info.py now outputs array length with types eg. float[16].Campbell Barton
- corrected rna property name Controller.states -> state (pointed out by Dalai). - rna_cleaner_merge script now only merges comment and new name.
2010-08-16merged rna names with newly created dump from rna_info.pyCampbell Barton
2010-08-15change for sorting rna cleaner (was broken), diff's on rna_properties.txt ↵Campbell Barton
will stop being so big now.
2010-08-15more rna naming editsCampbell Barton
2010-08-09restrict prefix checking to booleans for nowCampbell Barton
2010-08-09rna refactor...Campbell Barton
- added a script to merge 2 lists of rna renaming from/to - merged rna_booleans.txt into rna_properties.txt - made rna_cleaner.py sort by class.from by default.
2010-07-17spelling correction: alredy --> alreadyCampbell Barton
2010-07-15== rna cleanup ==Luca Bonavita
- after talking with brecht, changes keys prefixes with "is_pressed_alt" and so on if readonly and "pressed_alt" if not readonly - updated the rna_cleaner.py with real prefixes and keywords so it's clear what it is being used kw_prefixes = [ 'active','apply','bl','exclude','has','invert','is','lock', \ 'pressed','show','show_only','use','use_only','layers','states'] kw = ['active','hide','invert','select','layers','mute','states','use','lock']
2010-07-13- more misc rna rename updatesCampbell Barton
- edited the rna_cleaner.py script to use repr() on descriptions so quotes dont result in invalid generated python scripts.
2010-07-06color balance can now be animated in the sequencer.Campbell Barton
2010-07-06complain if running with py2Campbell Barton
2010-07-06== rna cleanup ==Luca Bonavita
small fixes adnm tentative new keywords those discussed by campbell and brecht are still there, but commented with these keywords I'm happy how booleans went, committing to discuss with cambpell
2010-07-01== rna cleanup ==Luca Bonavita
- fixed a bug: it wasn't updating checks when importing from py file - removed the global input_filename, I didn't like it very much
2010-06-29== rna cleanup ==Luca Bonavita
Re-introducing the modification made by Cambpell yesterday [rev., I copied the file over and forgot to restore this. Sorry for the noise :)
2010-06-29== rna cleanup ==Luca Bonavita
- rna_api.py now doesn't have work parameters anymore (note, changes, keyword-check) - header implementation fixed - removed 3 unuseful/already commented lines - renamed a function
2010-06-28update from discussion with brecht.Campbell Barton
2010-06-28== rna cleanup script ==Luca Bonavita
- new folder rna_cleanup/ - moved na_api_cleanup.txt in rna_cleanup/ - rna_cleaner.py is a script to help cleaning rna names, pasting the help below for those interested Basically after you run this on a original file, the script produces 2 file .txt and .py that you can edit. You can skip to edit things liek "changed" or "same" or check if the "to" field is correct or not. When you re-run this script it will check these thigns and will produce a consistent output file again. Also, you can sort lines at will. $ ./rna_cleaner.py -h HELP: Run this script to re-format the edits you make in the input file. Do quick modification to important fields like 'to' and don't care about fields like 'changed' or 'description' and save. The script outputs 3 files: 1) *_clean.txt: is formatted same as the .txt input, can be edited by user. 2) *_clean.py: is formatted same as the .py input, can be edited by user. 3) rna_api.py is not formatted for readability and go under complete check. Can be used for rna cleanup. USAGE: ./rna_cleaner.py input-file (.txt|.py) order-priority (note|changed|class|from|to|kw). ./rna_cleaner.py -h for help