commit 7fb4cdaa16
Author: Gorgious <nathan.hild@gmail.com>
Date: Mon Oct 31 09:35:06 2022 +0100
Fix#2546 : Editing a material now automatically ends the edition of its material set item if necessary
commit 427411e758
Author: Dion Moult <dion@thinkmoult.com>
Date: Mon Oct 31 19:04:57 2022 +1100
You can now edit arbitrary profiles in the profile manager
commit cc056d5d53
Author: Gorgious <nathan.hild@gmail.com>
Date: Mon Oct 31 08:52:11 2022 +0100
Fix#2553 : Right click documentation is now only available for Blender 3.3+
Also fix an error in the console when right clicking a button
commit 31600033bf
Author: ArturTomczak <artomczak@gmail.com>
Date: Sun Oct 30 23:16:08 2022 +0100
add BCF reporter to IDS (#2552)
* grammar
* reason not always a list
* extend readme with instruction
* remove microseconds from date
* add BCF reporter
commit 0338825175
Author: Dion Moult <dion@thinkmoult.com>
Date: Sun Oct 30 23:26:59 2022 +1100
You can now add new profile definitions in the profile manager
commit d9f8aa4e7b
Author: Andrej730 <azhilenkov@gmail.com>
Date: Sun Oct 30 11:29:42 2022 +0600
Added ifc types schema for Ifc2x3 and Ifc4
Types schema located in separate json file, it's structure:
{ ifc_type_name: {"description": type_description, "spec_url": type_spec_url} }
I've also added new API function to get type data - `get_type_doc(version, ifc_type)`
commit 6803788676
Author: Dion Moult <dion@thinkmoult.com>
Date: Sun Oct 30 11:02:18 2022 +1100
Load thumbnails in a paginated manner to allow to scale to larger models
commit d421cc0bbb
Author: Massimo Fabbro <79401028+maxfb87@users.noreply.github.com>
Date: Sun Oct 30 00:07:56 2022 +0200
No mapped quantities in qto calculator has None value (#2549)
commit bf57c8b1bf
Author: Dion Moult <dion@thinkmoult.com>
Date: Sat Oct 29 23:45:04 2022 +1100
Refactor profile module to use data class
commit 9a25db6584
Author: Andrej730 <azhilenkov@gmail.com>
Date: Sat Oct 29 18:31:40 2022 +0600
get_attribute_doc get_entity_doc now use recursive method by default
commit 17ccd0adf7
Author: Andrej730 <azhilenkov@gmail.com>
Date: Sat Oct 29 18:27:51 2022 +0600
Simplified getting entity parent information for schema api
Removed unnecssary parent information from json schema - now API is getting it from ifcopenshell schema.
commit 937f39c898
Author: Andrej730 <azhilenkov@gmail.com>
Date: Sat Oct 29 17:35:43 2022 +0600
Added information about parent entity to schema
Added information about parent entity to schema (it's located in "parent_entity" entity parameter inside schema), both for Ifc2x3 and Ifc4.
Modified get_entity_doc and get_attribute_doc - now you can use additional optional parameter `recursive=True` with those functions - then parent entities attributes will be included to the list of entity's attributes. For example IfcWindow will also have attributes from IfcBuildingElement, IfcElement, IfcProduct etc...
commit 0b5ccd88a5
Author: Andrej730 <azhilenkov@gmail.com>
Date: Sat Oct 29 16:31:54 2022 +0600
Added descriptions for psets and qsets to ifc2x3, ifc4 schema
Example of getting pset description: `get_property_set_doc("IFC4", "Pset_ZoneCommon")['description']`
commit ebf3cd8909
Author: Andrej730 <azhilenkov@gmail.com>
Date: Sat Oct 29 10:32:26 2022 +0600
Added IFC libraries for AU and EU profiles
Also added script that was used to generate those libraries (the script is using data from https://github.com/boltsparts/BOLTS).
Types of steel profiles included:
I profiles, Z profiles, C profiles (known as U profiles in IFC), L profiles (both equal and unequal), hollow profiles (circle, square and rectangular).
commit 08afec3461
Author: Dion Moult <dion@thinkmoult.com>
Date: Fri Oct 28 22:32:15 2022 +1100
Support material layer set usage negative direction sense for parametric walls
commit 4408a23873
Author: Dion Moult <dion@thinkmoult.com>
Date: Fri Oct 28 22:30:43 2022 +1100
Merge duplicate types IfcPatch recipe can now merge based on any attribute
Now you can access Doc API functions directly (like `ifcopenshell.util.doc.get_entity_doc(...)`) without setting up DocAPI class.
To make it work I've set up singleton DocDatabase class and made all paths relative to module location.
The schema for IFC4 the same as it was for IFC2x3.
Properties schema for IFC4 includes both quantity and propety sets.
Also cleaned up entities description for IFC2x3 from HTML code and IFC tags.
* IFC v2.3 json schema and parsing tool to regenerate it
Added entities and propeties schema in json format.
ifc2x3_entities.json format:
entity_name -> description, url, attributes;
attributes format: attribute_name -> attribute_descrption
ifc2x3_properties.json format:
property_set_name -> property_name -> description, children
children format: child_property_name -> child_property_description.
Also added doc.py script that can generate the same json schema files but requires docs IFC 2.3 docs in the same folder (https://github.com/buildingSMART/IFC/tree/Ifc2.3.0.1)
* Moved all json schema files to /util/schema
* Moved json files back to /util/, changed doc.py export location
* Added specification urls for entities and properties
Added specification urls for entities and properties.
Also added a function to parse actual property sets domain from the website to generate specification urls (domain on website and on github do not match).
Schema structure was changed:
ifc2x3_entities.json format:
entity_name -> description, spec_url, attributes;
attributes format: attribute_name -> attribute_descrption
ifc2x3_properties.json format:
property_set_name -> properties, spec_url
properties format: property_name -> description, children_properties
children_properties format: child_property_name -> child_property_description.
ifc2x3_property_sets_domains.json format:
property_set_name -> ifc_domain