Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
2f0a0fc
Add new utils
javagl May 21, 2026
6445dab
Remove old utils
javagl May 21, 2026
eb453f8
Minor update to model submission info
javagl May 21, 2026
64f7904
Add back dry-run option
javagl May 22, 2026
f810edd
Add 'pbrtest' listing. Minor cleanups and tests.
javagl May 22, 2026
12e97f4
Prepare CI, cleanups
javagl May 22, 2026
898b525
Minor cleanups
javagl May 22, 2026
bbcf897
Prepare CI with package JSON scripts
javagl May 22, 2026
320da35
Update CI for npm
javagl May 22, 2026
d5b7c44
Set working directory for CI
javagl May 22, 2026
6d28fd0
Remove lowercase arguments
javagl May 22, 2026
9e76b79
Variants checking with issue report
javagl May 22, 2026
636c246
Lowercase domain name, omit "V" in version number
javagl May 22, 2026
90f11af
Consistently encode URIs
javagl May 22, 2026
058e841
Consistent layout for used/required extensions
javagl May 22, 2026
22a1733
Use current year for copyright
javagl May 22, 2026
b073849
Omit "V" from version number
javagl May 22, 2026
c0d7f7b
Add and update licenses, remove unused ones
javagl May 22, 2026
675fd9f
Remove deprecated dep5 file.
javagl May 22, 2026
21dfe89
Update to create REUSE.toml file
javagl May 22, 2026
78dfede
Write in UTF8
javagl May 22, 2026
8a83839
Use URL for GLB download
javagl May 22, 2026
82a9a92
Remove obsolete information from REUSE.toml
javagl May 22, 2026
8f1d5a8
Update contribution guidelines
javagl May 23, 2026
e189294
Temporary: Print variants information
javagl May 23, 2026
3c2b590
Fixed what appears to be a typo
javagl May 23, 2026
a61a488
Minor fix to handle missing glTF file
javagl May 24, 2026
b8cb1ce
Deduplicate file name check. Minor formatting.
javagl May 25, 2026
18b01be
Update copyright year
javagl May 25, 2026
6043756
Fix typos in CONTRIBUTING.md
javagl May 25, 2026
b7a00dc
More consistent handling of licenseUrl
javagl May 25, 2026
8743f37
Omit 'createReadme' flag. Update CONTRIBUTING.md.
javagl May 25, 2026
eb8672e
Slightly stricter variants search
javagl May 25, 2026
10c0d43
Fixed typo in comment
javagl May 25, 2026
35af3de
Minor cleanup to use 'Issues' type
javagl May 25, 2026
49de53f
Expect lowercase file extensions
javagl May 25, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/AssetCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ jobs:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: latest
- name: Run npm install
working-directory: ./util
run: |
npm install

- name: Execute PHP script
- name: Run npm check
working-directory: ./util
run: |
php util/model.php --no-warn --check --verbose
npm run check
15 changes: 8 additions & 7 deletions .github/workflows/RebuildAllAssets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,21 @@ jobs:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: latest
- name: Run npm install
working-directory: ./util
run: |
npm install

- name: Execute PHP script to update Repo
- name: Run npm update
working-directory: ./util
run: |
php util/model.php --no-warn --update --process-repo
npm run update

- name: Commit changes to a new branch
uses: EndBug/add-and-commit@v9
with:
# Defaults for most parameters are used
# Action assiged to "github_actor" (used by default with 'default_author')
# Action assigned to "github_actor" (used by default with 'default_author')
# This action merges all changes into 'main'

# The way the action should handle pathspec errors from the add and remove commands. Three options are available:
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@ desktop.ini
gltf_validator.exe
*.csv
metadata.template.json

/util/node_modules
/util/dist
/util/package-lock.json
/util/tsconfig.tsbuildinfo
Loading
Loading