and ffp3 flip fluids to lfs
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -16,7 +16,6 @@ _**Agent (model default, mode Agent)**_
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
Organizing the gitattributes file into sections with comments and removing duplicates. Checking for duplicates first:
|
Organizing the gitattributes file into sections with comments and removing duplicates. Checking for duplicates first:
|
||||||
|
|
||||||
|
|
||||||
@@ -34,7 +33,6 @@ Organizing the gitattributes file into sections with comments and removing dupli
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
Organizing into sections with comments, removing duplicates, and sorting each section alphabetically:
|
Organizing into sections with comments, removing duplicates, and sorting each section alphabetically:
|
||||||
|
|
||||||
|
|
||||||
@@ -42,7 +40,7 @@ Organizing into sections with comments, removing duplicates, and sorting each se
|
|||||||
|
|
||||||
<tool-use data-tool-type="write" data-tool-name="write">
|
<tool-use data-tool-type="write" data-tool-name="write">
|
||||||
|
|
||||||
<details><summary>Tool use: **code_edit** • Edit file: components/gitattributes</summary>
|
<details><summary>Tool use: **write** • Edit file: components/gitattributes</summary>
|
||||||
|
|
||||||
**Chunk 1**
|
**Chunk 1**
|
||||||
Lines added: 63, lines removed: 42
|
Lines added: 63, lines removed: 42
|
||||||
@@ -183,7 +181,6 @@ Lines added: 63, lines removed: 42
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
Checking for linting errors:
|
Checking for linting errors:
|
||||||
|
|
||||||
|
|
||||||
@@ -210,7 +207,6 @@ Lint results
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
Reorganized the gitattributes file:
|
Reorganized the gitattributes file:
|
||||||
|
|
||||||
- **Organized into sections** with comments:
|
- **Organized into sections** with comments:
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -109,7 +109,7 @@ Adding logic to deploy `ZipSeqArchv.bat` and `UnzipSeqArchv.bat` to the project
|
|||||||
|
|
||||||
<tool-use data-tool-type="write" data-tool-name="search_replace">
|
<tool-use data-tool-type="write" data-tool-name="search_replace">
|
||||||
|
|
||||||
<details><summary>Tool use: **code_edit** • Edit file: ConfigLoader.ps1</summary>
|
<details><summary>Tool use: **search_replace** • Edit file: ConfigLoader.ps1</summary>
|
||||||
|
|
||||||
**Chunk 1**
|
**Chunk 1**
|
||||||
Lines added: 24, lines removed: undefined
|
Lines added: 24, lines removed: undefined
|
||||||
@@ -117,33 +117,33 @@ Lines added: 24, lines removed: undefined
|
|||||||
```diff
|
```diff
|
||||||
@@ -317,4 +317,28 @@
|
@@ -317,4 +317,28 @@
|
||||||
|
|
||||||
Write-Host "All batch files refreshed successfully." -ForegroundColor Green
|
Write-Host "All batch files refreshed successfully." -ForegroundColor Green
|
||||||
+
|
+
|
||||||
+ # Deploy ZipSeqArchv.bat and UnzipSeqArchv.bat to \Renders
|
+ # Deploy ZipSeqArchv.bat and UnzipSeqArchv.bat to \Renders
|
||||||
+ Write-Host "`n=== Deploying ZipSeqArchv.bat and UnzipSeqArchv.bat to \Renders ===" -ForegroundColor Magenta
|
+ Write-Host "`n=== Deploying ZipSeqArchv.bat and UnzipSeqArchv.bat to \Renders ===" -ForegroundColor Magenta
|
||||||
+ $rendersDir = Join-Path -Path $resolvedProject -ChildPath 'Renders'
|
+ $rendersDir = Join-Path -Path $resolvedProject -ChildPath 'Renders'
|
||||||
+ if (-not (Test-Path -LiteralPath $rendersDir -PathType Container)) {
|
+ if (-not (Test-Path -LiteralPath $rendersDir -PathType Container)) {
|
||||||
+ New-Item -Path $rendersDir -ItemType Directory -Force | Out-Null
|
+ New-Item -Path $rendersDir -ItemType Directory -Force | Out-Null
|
||||||
+ Write-Host "Created Renders directory: $rendersDir" -ForegroundColor Cyan
|
+ Write-Host "Created Renders directory: $rendersDir" -ForegroundColor Cyan
|
||||||
+ }
|
+ }
|
||||||
+ $zipFiles = @(
|
+ $zipFiles = @(
|
||||||
+ @{ Name = 'ZipSeqArchv.bat'; Source = Join-Path -Path $structDir -ChildPath 'ZipSeqArchv.bat' },
|
+ @{ Name = 'ZipSeqArchv.bat'; Source = Join-Path -Path $structDir -ChildPath 'ZipSeqArchv.bat' },
|
||||||
+ @{ Name = 'UnzipSeqArchv.bat'; Source = Join-Path -Path $structDir -ChildPath 'UnzipSeqArchv.bat' }
|
+ @{ Name = 'UnzipSeqArchv.bat'; Source = Join-Path -Path $structDir -ChildPath 'UnzipSeqArchv.bat' }
|
||||||
+ )
|
+ )
|
||||||
+ foreach ($zipFile in $zipFiles) {
|
+ foreach ($zipFile in $zipFiles) {
|
||||||
+ $targetPath = Join-Path -Path $rendersDir -ChildPath $zipFile.Name
|
+ $targetPath = Join-Path -Path $rendersDir -ChildPath $zipFile.Name
|
||||||
+ try {
|
+ try {
|
||||||
+ Copy-Item -Path $zipFile.Source -Destination $targetPath -Force
|
+ Copy-Item -Path $zipFile.Source -Destination $targetPath -Force
|
||||||
+ Write-Host "[OK] $targetPath" -ForegroundColor Green
|
+ Write-Host "[OK] $targetPath" -ForegroundColor Green
|
||||||
+ }
|
+ }
|
||||||
+ catch {
|
+ catch {
|
||||||
+ Write-Host "[FAIL] $targetPath" -ForegroundColor Red
|
+ Write-Host "[FAIL] $targetPath" -ForegroundColor Red
|
||||||
+ Write-Host " $($_.Exception.Message)" -ForegroundColor DarkRed
|
+ Write-Host " $($_.Exception.Message)" -ForegroundColor DarkRed
|
||||||
+ exit 1
|
+ exit 1
|
||||||
+ }
|
+ }
|
||||||
+ }
|
+ }
|
||||||
|
|
||||||
# Deploy .gitattributes and .gitignore to project root if they don't exist
|
# Deploy .gitattributes and .gitignore to project root if they don't exist
|
||||||
```
|
```
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
# Flip Fluids cache files
|
# Flip Fluids cache files
|
||||||
*.data filter=lfs diff=lfs merge=lfs -text
|
*.data filter=lfs diff=lfs merge=lfs -text
|
||||||
*.sqlite3 filter=lfs diff=lfs merge=lfs -text
|
*.sqlite3 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ffp3 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
|
||||||
# Substance files
|
# Substance files
|
||||||
*.sbs filter=lfs diff=lfs merge=lfs -text
|
*.sbs filter=lfs diff=lfs merge=lfs -text
|
||||||
|
|||||||
Reference in New Issue
Block a user