mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
* Optimized project integration templates to address the issue of long paths on Windows // Resolve #4652
This commit is contained in:
@ -19,6 +19,7 @@ PlatformIO Core 6
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
||||
* Enhanced the parsing of the |PIOCONF| to provide comprehensive diagnostic information
|
||||
* Optimized project integration templates to address the issue of long paths on Windows (`issue #4652 <https://github.com/platformio/platformio-core/issues/4652>`_)
|
||||
|
||||
6.1.7 (2023-05-08)
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
@ -52,7 +52,7 @@ class ProjectGenerator:
|
||||
|
||||
@staticmethod
|
||||
def get_ide_tpls_dir():
|
||||
return os.path.join(fs.get_assets_dir(), "templates", "ide-projects")
|
||||
return os.path.join(os.path.dirname(__file__), "tpls")
|
||||
|
||||
@classmethod
|
||||
def get_supported_ides(cls):
|
||||
|
10
setup.py
10
setup.py
@ -65,11 +65,11 @@ setup(
|
||||
package_data={
|
||||
"platformio": [
|
||||
"assets/system/99-platformio-udev.rules",
|
||||
"assets/templates/ide-projects/*/*.tpl",
|
||||
"assets/templates/ide-projects/*/.*.tpl", # include hidden files
|
||||
"assets/templates/ide-projects/*/.*/*.tpl", # include hidden folders
|
||||
"assets/templates/ide-projects/*/*/*.tpl", # NetBeans
|
||||
"assets/templates/ide-projects/*/*/*/*.tpl", # NetBeans
|
||||
"project/integration/tpls/*/*.tpl",
|
||||
"project/integration/tpls/*/.*.tpl", # include hidden files
|
||||
"project/integration/tpls/*/.*/*.tpl", # include hidden folders
|
||||
"project/integration/tpls/*/*/*.tpl", # NetBeans
|
||||
"project/integration/tpls/*/*/*/*.tpl", # NetBeans
|
||||
]
|
||||
},
|
||||
entry_points={
|
||||
|
Reference in New Issue
Block a user