Skip to content

Commit 960876e

Browse files
committed
Change MonoGameDocs to MonoGameGuide
1 parent 3f9843b commit 960876e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Copy PDF to downloads and clean up
5252
run: |
5353
mkdir -p _site/downloads
54-
cp _site/pdf/MonoGameDocs.pdf _site/downloads/
54+
cp _site/pdf/MonoGameGuide.pdf _site/downloads/
5555
rm -rf _site/pdf
5656
5757
- name: Setup Pages

articles/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This documentation [helps you to get started](getting_started/index.md) by provi
2121
Please use the links at the top and left to navigate the documentation sections.
2222

2323
> [!TIP]
24-
> Looking for an offline version? [Download the PDF documentation](/downloads/MonoGameDocs.pdf).
24+
> Looking for an offline version? [Download the PDF documentation](/downloads/MonoGameGuide.pdf).
2525
2626
> This documentation assumes that the reader has a basic knowledge of the C# programming language.
2727

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dotnet docfx pdf docfx.json
2828
# Copy PDF to downloads folder and clean up
2929
Write-Host "Copying PDF to downloads folder..." -ForegroundColor Green
3030
New-Item -ItemType Directory -Force -Path "_site/downloads" | Out-Null
31-
Copy-Item "_site/pdf/MonoGameDocs.pdf" "_site/downloads/"
31+
Copy-Item "_site/pdf/MonoGameGuide.pdf" "_site/downloads/"
3232
Remove-Item -Path "_site/pdf" -Recurse -Force
3333

3434
Write-Host "Build and documentation generation completed successfully!" -ForegroundColor Green

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dotnet docfx pdf docfx.json
2828
# Copy PDF to downloads folder and clean up
2929
echo "Copying PDF to downloads folder..."
3030
mkdir -p _site/downloads
31-
cp _site/pdf/MonoGameDocs.pdf _site/downloads/
31+
cp _site/pdf/MonoGameGuide.pdf _site/downloads/
3232
rm -rf _site/pdf
3333

3434
echo "Build and documentation generation completed successfully!"

pdf/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pdf: true
2-
pdfFileName: MonoGameDocs.pdf
2+
pdfFileName: MonoGameGuide.pdf
33
pdfTocPage: true
44
pdfCoverPage: pdf/cover.html
55
pdfPrintBackground: true

0 commit comments

Comments
 (0)