and ffp3 flip fluids to lfs

This commit is contained in:
Nathan
2025-12-05 11:05:07 -07:00
parent 95a19dceb3
commit 2b760bd598
5 changed files with 943 additions and 947 deletions

View File

@@ -16,7 +16,6 @@ _**Agent (model default, mode Agent)**_
---
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:
@@ -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">
<details><summary>Tool use: **code_edit** • Edit file: components/gitattributes</summary>
<details><summary>Tool use: **write** • Edit file: components/gitattributes</summary>
**Chunk 1**
Lines added: 63, lines removed: 42
@@ -183,7 +181,6 @@ Lines added: 63, lines removed: 42
---
Checking for linting errors:
@@ -210,7 +207,6 @@ Lint results
---
Reorganized the gitattributes file:
- **Organized into sections** with comments:

File diff suppressed because one or more lines are too long

View File

@@ -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">
<details><summary>Tool use: **code_edit** • Edit file: ConfigLoader.ps1</summary>
<details><summary>Tool use: **search_replace** • Edit file: ConfigLoader.ps1</summary>
**Chunk 1**
Lines added: 24, lines removed: undefined
@@ -117,33 +117,33 @@ Lines added: 24, lines removed: undefined
```diff
@@ -317,4 +317,28 @@
Write-Host &quot;All batch files refreshed successfully.&quot; -ForegroundColor Green
Write-Host "All batch files refreshed successfully." -ForegroundColor Green
+
+ # Deploy ZipSeqArchv.bat and UnzipSeqArchv.bat to \Renders
+ Write-Host &quot;&#96;n=== Deploying ZipSeqArchv.bat and UnzipSeqArchv.bat to \Renders ===&quot; -ForegroundColor Magenta
+ $rendersDir = Join-Path -Path $resolvedProject -ChildPath &#39;Renders&#39;
+ Write-Host "&#96;n=== Deploying ZipSeqArchv.bat and UnzipSeqArchv.bat to \Renders ===" -ForegroundColor Magenta
+ $rendersDir = Join-Path -Path $resolvedProject -ChildPath 'Renders'
+ if (-not (Test-Path -LiteralPath $rendersDir -PathType Container)) {
+ New-Item -Path $rendersDir -ItemType Directory -Force | Out-Null
+ Write-Host &quot;Created Renders directory: $rendersDir&quot; -ForegroundColor Cyan
+ Write-Host "Created Renders directory: $rendersDir" -ForegroundColor Cyan
+ }
+ $zipFiles = @(
+ @{ Name = &#39;ZipSeqArchv.bat&#39;; Source = Join-Path -Path $structDir -ChildPath &#39;ZipSeqArchv.bat&#39; },
+ @{ Name = &#39;UnzipSeqArchv.bat&#39;; Source = Join-Path -Path $structDir -ChildPath &#39;UnzipSeqArchv.bat&#39; }
+ @{ Name = 'ZipSeqArchv.bat'; Source = Join-Path -Path $structDir -ChildPath 'ZipSeqArchv.bat' },
+ @{ Name = 'UnzipSeqArchv.bat'; Source = Join-Path -Path $structDir -ChildPath 'UnzipSeqArchv.bat' }
+ )
+ foreach ($zipFile in $zipFiles) {
+ $targetPath = Join-Path -Path $rendersDir -ChildPath $zipFile.Name
+ try {
+ Copy-Item -Path $zipFile.Source -Destination $targetPath -Force
+ Write-Host &quot;[OK] $targetPath&quot; -ForegroundColor Green
+ Write-Host "[OK] $targetPath" -ForegroundColor Green
+ }
+ catch {
+ Write-Host &quot;[FAIL] $targetPath&quot; -ForegroundColor Red
+ Write-Host &quot; $($_.Exception.Message)&quot; -ForegroundColor DarkRed
+ Write-Host "[FAIL] $targetPath" -ForegroundColor Red
+ Write-Host " $($_.Exception.Message)" -ForegroundColor DarkRed
+ exit 1
+ }
+ }
# Deploy .gitattributes and .gitignore to project root if they don&#39;t exist
# Deploy .gitattributes and .gitignore to project root if they don't exist
```
</details>