english Sivu saatavilla vain englanninkielisenä.

Blender Git Statistics -> Developers -> jiri

Jiri Hnidek (jiri)

Total Commits : 110
Master Commits : 110
Branch Commits : 0
First Commit : September 5, 2003
Latest Commit : October 26, 2012

Commits by Month

DateNumber of Commits
October, 20122
September, 20120
August, 20120
July, 20120
June, 20120
May, 20120
April, 20120
March, 20120
February, 20120
January, 20120
December, 20110
November, 20110
October, 20110
September, 20110
August, 20111
July, 20111
June, 20110
May, 20110
April, 20110
March, 20110
February, 20110
January, 20110
December, 20100
November, 20100
October, 20100
September, 20100
August, 20100
July, 20100
June, 20100
May, 20100
April, 20100
March, 20100
February, 20100
January, 20100
December, 20090
November, 20090
October, 20090
September, 20090
August, 20091
July, 20092
June, 20090
May, 20090
April, 20090
March, 20090
February, 20090
January, 20090
December, 20080
November, 20080
October, 20080
September, 20080
August, 20080
July, 20080
June, 20081
May, 20084
April, 20080
March, 20080
February, 20080
January, 20080
December, 20070
November, 20070
October, 20070
September, 20070
August, 20070
July, 20072
June, 20073
May, 20070
April, 20073
March, 20070
February, 20070
January, 20073
December, 20060
November, 20061
October, 20068
September, 20061
August, 20067
July, 20061
June, 20063
May, 20065
April, 20060
March, 20060
February, 20060
January, 20060
December, 20050
November, 20055
October, 20053
September, 20056
August, 20050
July, 20050
June, 20050
May, 20054
April, 20052
March, 20051
February, 20052
January, 20054
December, 20042
November, 20043
October, 20040
September, 20047
August, 20040
July, 20040
June, 20044
May, 20041
April, 20045
March, 20040
February, 20040
January, 20042
December, 20033
November, 20030
October, 20035
September, 20032

Favourite Files

FilenameTotal Edits
mball.c20
buttons_editing.c10
obj_import.py7
editmball.c7
drawobject.c6
DNA_meta_types.h6
DerivedMesh.c6
header_view3d.c6
BKE_verse.h5
drawtime.c5

File Changes

ActionTotalPer Commit
Added950.9
Modified3042.8
Deleted10.0

Code Changes

ActionTotalPer Commit
Lines Added6 89464.4
Lines Removed3 11729.1

Latest commits Feed

Revision 2821f82 by Jiri Hnidek (master)
October 26, 2012, 12:58 (GMT)
* New string property subtype: PASSWORD

When this new subtypes is used, then string of property is hidden using
asterisks, e.g.: mysecretpassword -> ****************

This code was reviewed and modified by Brecht. Thanks very much:
- https://codereview.appspot.com/6713044/

This new subtype of string property is intended mostly for Add-on developers
writing Add-on which communicates with some server (http, sql, ftp, verse,
etc.). When this server requires user authentication and user has to type
username and password, then current API didn't allow to type 'hidden' password,
e.g. when you want to demonstrate this script, then everybody can see this
security password. Some examples of Add-on which could use this new subtype:
- On-line database of textures
- Integration of render farm
- Integration of Verse

Security Notes:
- You can copy paste hiddent string of property from text input using (Ctrl-C, Ctrl-V),
but you can do this in other GUI toolkits too (this behavior it is widely used).
- Text of string property is stored in plain text, but it is widely used in other
GUI toolkits (Qt, Gtk, etc.).

Simple examples:
- https://dl.dropbox.com/u/369894/draw_op_passwd.py
- https://dl.dropbox.com/u/369894/blender-password.png
Revision 13d829e by Jiri Hnidek (master)
October 12, 2012, 18:19 (GMT)
* Fix small bug in Python operator example; improved example of modal operator

Revision 2e860a3 by Jiri Hnidek (master)
August 2, 2011, 07:02 (GMT)
- Blender could be build with scons again.

Revision 8c11a26 by Jiri Hnidek (master)
July 17, 2011, 10:28 (GMT)
Fixed compile error on Fedora 15, when FFMPEG was enabled.

Revision e9c1550 by Jiri Hnidek (master)
August 3, 2009, 14:40 (GMT)
2.5 MetaBalls and UI

* Added callback function for some metaball properties:
When some properties (wiresize, threshold, update flags) of metaball are changed, then these properties are copied to all metaballs in the group (all metaballs with same base name). This is important to "share" some properties between metaballs, because polygonisation of metaball is influenced only by properties of base metaball and base metaball can be changed.
* Improved drawing of selected Metaball objects
Revision 9547fc4 by Jiri Hnidek (master)
July 29, 2009, 14:07 (GMT)
- Fix some things I missed in my last commit
- Change name of OBJECT_OT_object_add operator
- Use new OBJECT_OT_object_add operator in space_info.py

Revision f75005c by Jiri Hnidek (master)
July 29, 2009, 12:35 (GMT)
2.5 MetaBalls

- It is possible to work with MetaBalls in edit mode now
- Added basic UI to the button window (feel free to change it :-))
- Header menus should work
- Undo & redo should work
- Removed global variable editelems and lastelem (moved it to the MetaBall struct)
- All tools from old editmball.c was converted to the operators
- Added lastelem to the RNA
- Experimental: mb->editelems is only pointer at mb->elems or NULL (depends on Mode). ListBase of MetaElems is not duplicated in edit mode.

Tested with scons at Linux and mac OS X

TODO:
- Recalc data after Undo or Redo
- Solve issue with basic MetaBall and Python UI script (only base MetaBall object influence Wiresize and Threshold)
- Fix orientation of manipulator in "Normal mode"
Revision 5cd4b6a by Jiri Hnidek (master)
June 18, 2008, 09:52 (GMT)
Small fix to be able to compile Blender.

Revision ba6c685 by Jiri Hnidek (master)
May 15, 2008, 19:30 (GMT)
Last bug fix of #10999. This should finaly work (tested by jesterking).

Revision c471b6d by Jiri Hnidek (master)
May 12, 2008, 16:22 (GMT)
Bug fix of #10999. mbproc->start was useless.


MiikaHweb - Blender Git Statistics v1.06
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021