IncludeCPP 3.3.17__tar.gz → 3.4.1__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.
Files changed (40) hide show
  1. {includecpp-3.3.17 → includecpp-3.4.1/IncludeCPP.egg-info}/PKG-INFO +71 -3
  2. includecpp-3.3.17/README.md → includecpp-3.4.1/PKG-INFO +799 -697
  3. includecpp-3.3.17/IncludeCPP.egg-info/PKG-INFO → includecpp-3.4.1/README.md +765 -731
  4. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/__init__.py +1 -1
  5. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/cli/commands.py +25 -22
  6. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/core/cppy_converter.py +143 -18
  7. includecpp-3.4.1/includecpp/core/project_ui.py +3370 -0
  8. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/core/settings_ui.py +5 -5
  9. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/generator/parser.cpp +81 -0
  10. {includecpp-3.3.17 → includecpp-3.4.1}/pyproject.toml +1 -1
  11. {includecpp-3.3.17 → includecpp-3.4.1}/setup.py +1 -1
  12. includecpp-3.3.17/includecpp/core/project_ui.py +0 -1767
  13. {includecpp-3.3.17 → includecpp-3.4.1}/IncludeCPP.egg-info/SOURCES.txt +0 -0
  14. {includecpp-3.3.17 → includecpp-3.4.1}/IncludeCPP.egg-info/dependency_links.txt +0 -0
  15. {includecpp-3.3.17 → includecpp-3.4.1}/IncludeCPP.egg-info/entry_points.txt +0 -0
  16. {includecpp-3.3.17 → includecpp-3.4.1}/IncludeCPP.egg-info/requires.txt +0 -0
  17. {includecpp-3.3.17 → includecpp-3.4.1}/IncludeCPP.egg-info/top_level.txt +0 -0
  18. {includecpp-3.3.17 → includecpp-3.4.1}/LICENSE +0 -0
  19. {includecpp-3.3.17 → includecpp-3.4.1}/MANIFEST.in +0 -0
  20. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/__init__.pyi +0 -0
  21. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/__main__.py +0 -0
  22. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/cli/__init__.py +0 -0
  23. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/cli/config_parser.py +0 -0
  24. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/core/__init__.py +0 -0
  25. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/core/ai_integration.py +0 -0
  26. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/core/build_manager.py +0 -0
  27. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/core/cpp_api.py +0 -0
  28. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/core/cpp_api.pyi +0 -0
  29. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/core/error_catalog.py +0 -0
  30. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/core/error_formatter.py +0 -0
  31. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/core/exceptions.py +0 -0
  32. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/core/path_discovery.py +0 -0
  33. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/generator/__init__.py +0 -0
  34. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/generator/parser.h +0 -0
  35. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/generator/type_resolver.cpp +0 -0
  36. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/generator/type_resolver.h +0 -0
  37. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/py.typed +0 -0
  38. {includecpp-3.3.17 → includecpp-3.4.1}/includecpp/templates/cpp.proj.template +0 -0
  39. {includecpp-3.3.17 → includecpp-3.4.1}/requirements.txt +0 -0
  40. {includecpp-3.3.17 → includecpp-3.4.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: IncludeCPP
3
- Version: 3.3.17
3
+ Version: 3.4.1
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,74 @@ Use at your own discretion. Report issues at: https://github.com/hatte/IncludeCP
625
625
 
626
626
  # Changelog
627
627
 
628
+ ## v3.4.1
629
+ - **Bug Fixes:**
630
+ - fix command: Fixed false positives for unused variables (sum, memory_) using word-boundary matching
631
+ - CPPY: C++ reserved words (double, int, void, etc.) now properly escaped as Python identifiers
632
+ - CPPY: C++ STL functions (accumulate, find, sort, reverse) properly converted to Python equivalents
633
+ - CPPY: Member variables with trailing underscore (memory_) now get self. prefix
634
+ - CPPY: Private class members now detected for self. prefix conversion
635
+ - Plugin: Auto-detect header files from #include directives in source files
636
+
637
+ ## v3.4.0
638
+ - **CodeMaker Major Update:**
639
+ - New Source node type with 8 connection ports for code generation
640
+ - Smart code generation: Source nodes generate Python/Plugin files with all connected nodes included
641
+ - Right-click on Source node: "Create Python" creates .py in project root
642
+ - Right-click on Source node: "Create Plugin" creates .cp, .h, .cpp in plugins/ and include/
643
+ - Code options hidden after file generation (prevents duplicates)
644
+ - Enhanced description display with background rect in node body
645
+ - Arrow key navigation to pan the canvas
646
+ - New toolbar buttons: Align H, Align V, Auto-Arrange
647
+ - Quick-add buttons: +Source, +Class, +Function
648
+ - Properties Panel on the right side for editing selected nodes
649
+ - Auto-arrange algorithm for grid layout
650
+ - Align horizontal/vertical for selected nodes
651
+ - **Bug Fixes:**
652
+ - Changelog encoding fixes for Windows console
653
+ - CPPY C++ keyword escaping (double, int, etc.)
654
+ - CPPY C++ to Python syntax conversion improvements
655
+ - CPPY self. prefix for member variables
656
+ - Plugin auto-header detection from #include
657
+
658
+ ## v3.3.21
659
+ - **Encoding Fixes:**
660
+ - Replaced Unicode arrow characters with ASCII in changelog (Windows console compatibility)
661
+
662
+ ## v3.3.20
663
+ - **Bug Fixes:**
664
+ - Fixed `QPoint.toPoint()` AttributeError in rubber band selection
665
+ - Added UTF-8 encoding to all file read/write operations for cross-platform compatibility
666
+ - Fixed bare `except:` clauses to proper `except Exception:` in settings_ui.py
667
+
668
+ ## v3.3.19
669
+ - **PyQt6 Import Fix:**
670
+ - Fixed silent import failure that caused "PyQt6 not installed" error even when installed
671
+ - Moved `QUndoStack`, `QUndoCommand`, `QShortcut` from QtWidgets to QtGui (correct location in PyQt6)
672
+
673
+ ## v3.3.18
674
+ - **CodeMaker Visual Editor (Experimental):**
675
+ - Complete rewrite of `project` command with professional-grade UI
676
+ - 24 node types across 5 categories (Code Structures, Functions, Data, Organization, Flow)
677
+ - Undo/redo system with full command history
678
+ - Multi-selection with rubber band and Ctrl+Click
679
+ - Copy/paste/duplicate with Ctrl+C/V/D shortcuts
680
+ - Node grouping with Ctrl+G
681
+ - Code generation for C++ (header/source) and Python
682
+ - Search and filter nodes by name and type
683
+ - Export to PNG/SVG with transparency support
684
+ - Categorized right-click context menus
685
+ - Toolbar with common actions
686
+ - Cross-platform font detection (Windows/macOS/Linux)
687
+ - DPI-aware scaling for high-resolution displays
688
+ - **Experimental Feature Gating:**
689
+ - `project` command now requires "Enable Experimental Features" in settings
690
+ - Consistent gating with `ai` and `cppy` commands
691
+
692
+ ## v3.3.16-3.3.17
693
+ - **QPen Bug Fixes:**
694
+ - Fixed 3 instances of `setPen(Qt.PenStyle.NoPen)` to `setPen(QPen(Qt.PenStyle.NoPen))`
695
+ - Proper QPen construction for PyQt6 compatibility
628
696
 
629
697
  ## v3.3.15
630
698
  - **CPPY Converter Major Fixes:**
@@ -663,7 +731,7 @@ Use at your own discretion. Report issues at: https://github.com/hatte/IncludeCP
663
731
 
664
732
  ## v3.3.12
665
733
  - **Smart Type Inference:**
666
- - Parameter types now inferred from common naming patterns (start/end int, name/path string, etc.)
734
+ - Parameter types now inferred from common naming patterns (start/end -> int, name/path -> string, etc.)
667
735
  - Variable type tracking throughout conversion for accurate string detection
668
736
  - Loop variable types inferred from iterables (enumerate, for loops)
669
737
  - **String Conversion Fix:**
@@ -728,4 +796,4 @@ Use at your own discretion. Report issues at: https://github.com/hatte/IncludeCP
728
796
 
729
797
  ---
730
798
 
731
- MIT License | v3.3.13 | [GitHub](https://github.com/liliassg/IncludeCPP)
799
+ MIT License | v3.4.1 | [GitHub](https://github.com/liliassg/IncludeCPP)