IncludeCPP 3.3.17__tar.gz → 3.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {includecpp-3.3.17 → includecpp-3.4.0/IncludeCPP.egg-info}/PKG-INFO +62 -3
- includecpp-3.3.17/README.md → includecpp-3.4.0/PKG-INFO +790 -697
- includecpp-3.3.17/IncludeCPP.egg-info/PKG-INFO → includecpp-3.4.0/README.md +756 -731
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/__init__.py +1 -1
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/cli/commands.py +22 -21
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/core/cppy_converter.py +58 -16
- includecpp-3.4.0/includecpp/core/project_ui.py +3370 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/core/settings_ui.py +5 -5
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/generator/parser.cpp +40 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/pyproject.toml +1 -1
- {includecpp-3.3.17 → includecpp-3.4.0}/setup.py +1 -1
- includecpp-3.3.17/includecpp/core/project_ui.py +0 -1767
- {includecpp-3.3.17 → includecpp-3.4.0}/IncludeCPP.egg-info/SOURCES.txt +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/IncludeCPP.egg-info/dependency_links.txt +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/IncludeCPP.egg-info/entry_points.txt +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/IncludeCPP.egg-info/requires.txt +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/IncludeCPP.egg-info/top_level.txt +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/LICENSE +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/MANIFEST.in +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/__init__.pyi +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/__main__.py +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/cli/__init__.py +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/cli/config_parser.py +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/core/__init__.py +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/core/ai_integration.py +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/core/build_manager.py +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/core/cpp_api.py +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/core/cpp_api.pyi +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/core/error_catalog.py +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/core/error_formatter.py +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/core/exceptions.py +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/core/path_discovery.py +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/generator/__init__.py +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/generator/parser.h +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/generator/type_resolver.cpp +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/generator/type_resolver.h +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/py.typed +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/includecpp/templates/cpp.proj.template +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/requirements.txt +0 -0
- {includecpp-3.3.17 → includecpp-3.4.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: IncludeCPP
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.4.0
|
|
4
4
|
Summary: Professional C++ Python bindings with type-generic templates, pystubs and native threading
|
|
5
5
|
Home-page: https://github.com/liliassg/IncludeCPP
|
|
6
6
|
Author: Lilias Hatterscheidt
|
|
@@ -625,6 +625,65 @@ Use at your own discretion. Report issues at: https://github.com/hatte/IncludeCP
|
|
|
625
625
|
|
|
626
626
|
# Changelog
|
|
627
627
|
|
|
628
|
+
## v3.4.0
|
|
629
|
+
- **CodeMaker Major Update:**
|
|
630
|
+
- New Source node type with 8 connection ports for code generation
|
|
631
|
+
- Smart code generation: Source nodes generate Python/Plugin files with all connected nodes included
|
|
632
|
+
- Right-click on Source node: "Create Python" creates .py in project root
|
|
633
|
+
- Right-click on Source node: "Create Plugin" creates .cp, .h, .cpp in plugins/ and include/
|
|
634
|
+
- Code options hidden after file generation (prevents duplicates)
|
|
635
|
+
- Enhanced description display with background rect in node body
|
|
636
|
+
- Arrow key navigation to pan the canvas
|
|
637
|
+
- New toolbar buttons: Align H, Align V, Auto-Arrange
|
|
638
|
+
- Quick-add buttons: +Source, +Class, +Function
|
|
639
|
+
- Properties Panel on the right side for editing selected nodes
|
|
640
|
+
- Auto-arrange algorithm for grid layout
|
|
641
|
+
- Align horizontal/vertical for selected nodes
|
|
642
|
+
- **Bug Fixes:**
|
|
643
|
+
- Changelog encoding fixes for Windows console
|
|
644
|
+
- CPPY C++ keyword escaping (double, int, etc.)
|
|
645
|
+
- CPPY C++ to Python syntax conversion improvements
|
|
646
|
+
- CPPY self. prefix for member variables
|
|
647
|
+
- Plugin auto-header detection from #include
|
|
648
|
+
|
|
649
|
+
## v3.3.21
|
|
650
|
+
- **Encoding Fixes:**
|
|
651
|
+
- Replaced Unicode arrow characters with ASCII in changelog (Windows console compatibility)
|
|
652
|
+
|
|
653
|
+
## v3.3.20
|
|
654
|
+
- **Bug Fixes:**
|
|
655
|
+
- Fixed `QPoint.toPoint()` AttributeError in rubber band selection
|
|
656
|
+
- Added UTF-8 encoding to all file read/write operations for cross-platform compatibility
|
|
657
|
+
- Fixed bare `except:` clauses to proper `except Exception:` in settings_ui.py
|
|
658
|
+
|
|
659
|
+
## v3.3.19
|
|
660
|
+
- **PyQt6 Import Fix:**
|
|
661
|
+
- Fixed silent import failure that caused "PyQt6 not installed" error even when installed
|
|
662
|
+
- Moved `QUndoStack`, `QUndoCommand`, `QShortcut` from QtWidgets to QtGui (correct location in PyQt6)
|
|
663
|
+
|
|
664
|
+
## v3.3.18
|
|
665
|
+
- **CodeMaker Visual Editor (Experimental):**
|
|
666
|
+
- Complete rewrite of `project` command with professional-grade UI
|
|
667
|
+
- 24 node types across 5 categories (Code Structures, Functions, Data, Organization, Flow)
|
|
668
|
+
- Undo/redo system with full command history
|
|
669
|
+
- Multi-selection with rubber band and Ctrl+Click
|
|
670
|
+
- Copy/paste/duplicate with Ctrl+C/V/D shortcuts
|
|
671
|
+
- Node grouping with Ctrl+G
|
|
672
|
+
- Code generation for C++ (header/source) and Python
|
|
673
|
+
- Search and filter nodes by name and type
|
|
674
|
+
- Export to PNG/SVG with transparency support
|
|
675
|
+
- Categorized right-click context menus
|
|
676
|
+
- Toolbar with common actions
|
|
677
|
+
- Cross-platform font detection (Windows/macOS/Linux)
|
|
678
|
+
- DPI-aware scaling for high-resolution displays
|
|
679
|
+
- **Experimental Feature Gating:**
|
|
680
|
+
- `project` command now requires "Enable Experimental Features" in settings
|
|
681
|
+
- Consistent gating with `ai` and `cppy` commands
|
|
682
|
+
|
|
683
|
+
## v3.3.16-3.3.17
|
|
684
|
+
- **QPen Bug Fixes:**
|
|
685
|
+
- Fixed 3 instances of `setPen(Qt.PenStyle.NoPen)` to `setPen(QPen(Qt.PenStyle.NoPen))`
|
|
686
|
+
- Proper QPen construction for PyQt6 compatibility
|
|
628
687
|
|
|
629
688
|
## v3.3.15
|
|
630
689
|
- **CPPY Converter Major Fixes:**
|
|
@@ -663,7 +722,7 @@ Use at your own discretion. Report issues at: https://github.com/hatte/IncludeCP
|
|
|
663
722
|
|
|
664
723
|
## v3.3.12
|
|
665
724
|
- **Smart Type Inference:**
|
|
666
|
-
- Parameter types now inferred from common naming patterns (start/end
|
|
725
|
+
- Parameter types now inferred from common naming patterns (start/end -> int, name/path -> string, etc.)
|
|
667
726
|
- Variable type tracking throughout conversion for accurate string detection
|
|
668
727
|
- Loop variable types inferred from iterables (enumerate, for loops)
|
|
669
728
|
- **String Conversion Fix:**
|
|
@@ -728,4 +787,4 @@ Use at your own discretion. Report issues at: https://github.com/hatte/IncludeCP
|
|
|
728
787
|
|
|
729
788
|
---
|
|
730
789
|
|
|
731
|
-
MIT License | v3.
|
|
790
|
+
MIT License | v3.4.0 | [GitHub](https://github.com/liliassg/IncludeCPP)
|