Skip to content

Commit 8625b57

Browse files
Initial 1.0.0 release
- Did the work to clean up the C++ and Python. - Set up Github Actions so that the Docs exist on Github Pages now - Docs still need work, but somewhat usable.
1 parent d58cc2f commit 8625b57

31 files changed

Lines changed: 829 additions & 167 deletions

.github/workflows/docs.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Deploy Documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
release:
8+
types: [published]
9+
10+
permissions:
11+
contents: write
12+
pages: write
13+
id-token: write
14+
15+
jobs:
16+
deploy:
17+
environment:
18+
name: github-pages
19+
url: ${{ steps.deployment.outputs.page_url }}
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v3
23+
- uses: actions/setup-python@v4
24+
with:
25+
python-version: 3.x
26+
- name: Install dependencies
27+
run: pip install ".[docs]"
28+
- name: Build docs
29+
run: mkdocs build
30+
- name: Setup Pages
31+
uses: actions/configure-pages@v4
32+
- name: Upload artifact
33+
uses: actions/upload-pages-artifact@v2
34+
with:
35+
path: 'site'
36+
- name: Deploy to GitHub Pages
37+
id: deployment
38+
uses: actions/deploy-pages@v3

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@
2323
ehthumbs.db
2424
Thumbs.db
2525

26-
# Keep Builds directory
27-
!Builds/**/
28-
2926
# Temp files
3027
*.tmp
3128
*.bak
@@ -104,4 +101,7 @@ Intermediate/*
104101
Plugins/*/Intermediate/*
105102

106103
# Cache files for the editor to use
107-
DerivedDataCache/*
104+
DerivedDataCache/*
105+
106+
# Source Files
107+
_sourceFiles/

AdvancedMaterialEditingLibrary.uplugin

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"FileVersion": 3,
33
"Version": 1,
44
"VersionName": "1.0",
5-
"FriendlyName": "AdvancedMaterialEditingLibrary",
6-
"Description": "",
7-
"Category": "Other",
5+
"FriendlyName": "Advanced Material Editing Library",
6+
"Description": "A plugin that provides functionality to edit material layer and material blend layer parameters through both Python and Blueprints.",
7+
"Category": "Materials",
88
"CreatedBy": "Njibhu, Extended by Edward Jaworenko",
9-
"CreatedByURL": "",
10-
"DocsURL": "",
9+
"CreatedByURL": "https://jaworenko.design",
10+
"DocsURL": "https://ejaworenko.github.io/UEAdvancedMaterialEditingLibrary",
1111
"MarketplaceURL": "",
12-
"SupportURL": "",
12+
"SupportURL": "https://github.com/EJaworenko/UEAdvancedMaterialEditingLibrary/issues",
1313
"EngineVersion": "5.5.0",
1414
"CanContainContent": true,
1515
"Installed": true,

Builds/UE5.5/UEAdvancedMaterialEditingLibrary/AdvancedMaterialEditingLibrary.uplugin

Lines changed: 0 additions & 23 deletions
This file was deleted.
Binary file not shown.

0 commit comments

Comments
 (0)