IncludeCPP 3.3.15__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.15 → includecpp-3.4.0/IncludeCPP.egg-info}/PKG-INFO +69 -12
- {includecpp-3.3.15 → includecpp-3.4.0}/IncludeCPP.egg-info/SOURCES.txt +2 -0
- includecpp-3.3.15/README.md → includecpp-3.4.0/PKG-INFO +790 -696
- includecpp-3.3.15/IncludeCPP.egg-info/PKG-INFO → includecpp-3.4.0/README.md +756 -733
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/__init__.py +1 -1
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/cli/commands.py +76 -28
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/core/cppy_converter.py +107 -19
- includecpp-3.4.0/includecpp/core/project_ui.py +3370 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/core/settings_ui.py +5 -5
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/generator/parser.cpp +40 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/pyproject.toml +6 -9
- {includecpp-3.3.15 → includecpp-3.4.0}/setup.py +3 -3
- {includecpp-3.3.15 → includecpp-3.4.0}/IncludeCPP.egg-info/dependency_links.txt +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/IncludeCPP.egg-info/entry_points.txt +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/IncludeCPP.egg-info/requires.txt +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/IncludeCPP.egg-info/top_level.txt +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/LICENSE +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/MANIFEST.in +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/__init__.pyi +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/__main__.py +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/cli/__init__.py +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/cli/config_parser.py +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/core/__init__.py +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/core/ai_integration.py +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/core/build_manager.py +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/core/cpp_api.py +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/core/cpp_api.pyi +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/core/error_catalog.py +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/core/error_formatter.py +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/core/exceptions.py +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/core/path_discovery.py +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/generator/__init__.py +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/generator/parser.h +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/generator/type_resolver.cpp +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/generator/type_resolver.h +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/py.typed +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/includecpp/templates/cpp.proj.template +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/requirements.txt +0 -0
- {includecpp-3.3.15 → includecpp-3.4.0}/setup.cfg +0 -0
|
@@ -1,25 +1,22 @@
|
|
|
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
|
-
Author:
|
|
7
|
-
Author-email:
|
|
6
|
+
Author: Lilias Hatterscheidt
|
|
7
|
+
Author-email: lilias@includecpp.dev
|
|
8
8
|
License: MIT
|
|
9
|
-
Project-URL:
|
|
10
|
-
Project-URL:
|
|
11
|
-
Project-URL: Repository, https://github.com/includecpp/includecpp
|
|
12
|
-
Project-URL: Bug Tracker, https://github.com/includecpp/includecpp/issues
|
|
9
|
+
Project-URL: Repository, https://github.com/liliassg/IncludeCPP
|
|
10
|
+
Project-URL: Bug Tracker, https://github.com/liliasg/IncludeCPP/issues
|
|
13
11
|
Keywords: c++,python,bindings,pybind11,template,performance,threading
|
|
14
12
|
Classifier: Development Status :: 4 - Beta
|
|
15
13
|
Classifier: Intended Audience :: Developers
|
|
16
14
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
17
|
-
Classifier: Programming Language :: Python :: 3
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
19
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
20
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
21
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
22
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
20
|
Classifier: Programming Language :: C++
|
|
24
21
|
Classifier: License :: OSI Approved :: MIT License
|
|
25
22
|
Classifier: Operating System :: OS Independent
|
|
@@ -30,7 +27,7 @@ Requires-Dist: pybind11>=2.11.0
|
|
|
30
27
|
Requires-Dist: click>=8.0.0
|
|
31
28
|
Requires-Dist: typing-extensions>=4.0.0
|
|
32
29
|
Requires-Dist: requests>=2.28.0
|
|
33
|
-
Dynamic: author
|
|
30
|
+
Dynamic: author-email
|
|
34
31
|
Dynamic: home-page
|
|
35
32
|
Dynamic: license-file
|
|
36
33
|
Dynamic: requires-python
|
|
@@ -628,6 +625,66 @@ Use at your own discretion. Report issues at: https://github.com/hatte/IncludeCP
|
|
|
628
625
|
|
|
629
626
|
# Changelog
|
|
630
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
|
|
687
|
+
|
|
631
688
|
## v3.3.15
|
|
632
689
|
- **CPPY Converter Major Fixes:**
|
|
633
690
|
- Functions returning container now get `std::vector<T>` return type (e.g., shuffle_list)
|
|
@@ -665,7 +722,7 @@ Use at your own discretion. Report issues at: https://github.com/hatte/IncludeCP
|
|
|
665
722
|
|
|
666
723
|
## v3.3.12
|
|
667
724
|
- **Smart Type Inference:**
|
|
668
|
-
- 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.)
|
|
669
726
|
- Variable type tracking throughout conversion for accurate string detection
|
|
670
727
|
- Loop variable types inferred from iterables (enumerate, for loops)
|
|
671
728
|
- **String Conversion Fix:**
|
|
@@ -730,4 +787,4 @@ Use at your own discretion. Report issues at: https://github.com/hatte/IncludeCP
|
|
|
730
787
|
|
|
731
788
|
---
|
|
732
789
|
|
|
733
|
-
MIT License | v3.
|
|
790
|
+
MIT License | v3.4.0 | [GitHub](https://github.com/liliassg/IncludeCPP)
|
|
@@ -21,6 +21,7 @@ setup.py
|
|
|
21
21
|
./includecpp/core/error_formatter.py
|
|
22
22
|
./includecpp/core/exceptions.py
|
|
23
23
|
./includecpp/core/path_discovery.py
|
|
24
|
+
./includecpp/core/project_ui.py
|
|
24
25
|
./includecpp/core/settings_ui.py
|
|
25
26
|
./includecpp/generator/__init__.py
|
|
26
27
|
./includecpp/generator/parser.cpp
|
|
@@ -51,6 +52,7 @@ includecpp/core/error_catalog.py
|
|
|
51
52
|
includecpp/core/error_formatter.py
|
|
52
53
|
includecpp/core/exceptions.py
|
|
53
54
|
includecpp/core/path_discovery.py
|
|
55
|
+
includecpp/core/project_ui.py
|
|
54
56
|
includecpp/core/settings_ui.py
|
|
55
57
|
includecpp/generator/__init__.py
|
|
56
58
|
includecpp/generator/parser.cpp
|