Compare commits

...

28 Commits

Author SHA1 Message Date
Simon Pistache
5ab2f16b86 Merge branch 'BL3_Athenas_Tree' into 'main'
Projet Borderlands 3: Athenas Tree

See merge request Simandre/Wallset!21
2025-05-26 02:28:18 +02:00
Simon Pistache
804f70f517 Projet Borderlands 3: Athenas Tree 2025-05-26 02:28:18 +02:00
8a72046a65 refactor: Update Gitignore to ignore build folder 2025-05-26 02:16:22 +02:00
Simon
0a9afe5e1d Merge branch 'logo' into 'main'
feat(#2): Design d'un logo pour le projet

See merge request Thoscellen/Wallset!18
2023-07-15 23:55:57 +00:00
Simon
01a65c005c feat(#2): Design d'un logo pour le projet 2023-07-15 23:55:57 +00:00
Simon
8087160da4 Merge branch 'BL3_Sanctuary_Bay' into 'main'
BL3: Corrige un spot, Actualise les métadonnées

See merge request Thoscellen/Wallset!15
2023-07-15 20:23:41 +00:00
Simon
3bfb59f5dd BL3: Corrige un spot, Actualise les métadonnées 2023-07-15 20:23:41 +00:00
Simon
9e1aa198da Merge branch 'BL3_Lunch_in_Trashlantis' into 'main'
Publie le set "Lunch in Trashlantis - Borderlands 3"

See merge request Thoscellen/Wallset!16
2023-07-15 20:21:00 +00:00
Simon
7d76ed6af0 Publie le set "Lunch in Trashlantis - Borderlands 3" 2023-07-15 20:21:00 +00:00
Simon
66ecacee93 Merge branch 'BL2_frozen_wastelands' into 'main'
BL2 Actualise les métadonnées liés au Copyright

See merge request Thoscellen/Wallset!14
2023-07-15 20:16:10 +00:00
Simon
cfbd52a5fe BL2 Actualise les métadonnées liés au Copyright 2023-07-15 20:16:10 +00:00
Simon
ec5443b9f6 Merge branch 'HFW_Weat_Tuft' into 'main'
Weat Tuft - Horizon Forbidden West

See merge request Thoscellen/Wallset!13
2023-07-15 19:59:28 +00:00
Simon
f3f61781e0 Weat Tuft - Horizon Forbidden West 2023-07-15 19:59:28 +00:00
Simon
8df11cd258 Merge branch 'HFW_Three_Spires_Mountain' into 'main'
Three Spires Mountain - Horizon Forbidden West

See merge request Thoscellen/Wallset!12
2023-07-15 19:49:44 +00:00
Simon
519b4a11e1 Three Spires Mountain - Horizon Forbidden West 2023-07-15 19:49:44 +00:00
2aa87bae00 Corrige l'assignation spot jour et nuit 2023-05-19 20:36:04 +02:00
Simon
4599ca2ccd Publie le set "Sanctuary Bay - Borderlands 3"
Fusionne la branche 'BL3_Sanctuary_Bay' dans 'main'
Voir la demande de fusion Thoscellen/Wallset!11
2023-05-18 22:43:44 +00:00
125cb732ee Publie le set "Sanctuary Bay - Borderlands 3" 2023-05-19 00:35:20 +02:00
Simon
aae97ec78a Merge branch 'BL2_frozen_wastelands' into 'main'
feat(#5): Publie le set "Frozen Wastelands"

See merge request Thoscellen/Wallset!10
2023-05-18 22:09:47 +00:00
Simon
f1845c7101 feat(#5): Publie le set "Frozen Wastelands" 2023-05-18 22:09:46 +00:00
Simon
f56b7877dc Merge branch 'BL2_frozen_wasteland' into 'main'
See merge request Thoscellen/Wallset!8
2023-05-18 21:40:52 +00:00
Simon
181caf6092 Publie le set "Frozen Wastelands" 2023-05-18 21:40:52 +00:00
Simon
e31f02cd38 Merge branch 'cicd' into 'main'
Tente un fixe pour la pipeline.

See merge request Thoscellen/Wallset!9
2023-05-18 21:17:34 +00:00
Simon
123733def0 Tente un fixe pour la pipeline. 2023-05-18 21:17:34 +00:00
Simon
226a3a3856 Merge branch 'cicd' into 'main'
Règle la CI pour se déclencher après une demande de fusion

See merge request Thoscellen/Wallset!7
2023-05-18 13:15:09 +00:00
Simon
6ec4d836cc Règle la CI pour se déclencher après une demande de fusion 2023-05-18 13:15:09 +00:00
Simon
4d394dc080 Merge branch 'cicd' into 'main'
Détecte si un thème est déjà présent

See merge request Thoscellen/Wallset!6
2023-05-18 12:30:10 +00:00
Simon
d541628920 Détecte si un thème est déjà présent 2023-05-18 12:30:10 +00:00
148 changed files with 348 additions and 90 deletions

7
.gitignore vendored
View File

@ -1,7 +1,12 @@
# Ignore les résultats de compilations locales
**/builds/
# Ignore node_module # Ignore node_module
**/node_modules/ **/node_modules/
# Ignore python stuff # Ignore python stuff
**/__pycache__ **/__pycache__
**/.pytest_cache **/.pytest_cache
# Ignore les fichiers système de MacOS
**/.DS_Store

View File

@ -1,6 +1,5 @@
include: include:
- .gitlab/valid_set.yml - .gitlab/*.yml
- .gitlab/missing_tag_set.yml
stages: stages:
- Manifest - Manifest
@ -10,8 +9,8 @@ stages:
- Release - Release
variables: variables:
ENTRY_FOLDER: $CI_PROJECT_DIR/test # test directory for testing CI/CD, or assets directory for normal operations ENTRY_FOLDER: assets
RELEASE_VERSION: v0.$CI_PIPELINE_IID RELEASE_VERSION: v$CI_PIPELINE_IID
PACKAGE_REGISTRY_URL: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/${PACKAGE_NAME}/${RELEASE_VERSION}" PACKAGE_REGISTRY_URL: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/${PACKAGE_NAME}/${RELEASE_VERSION}"
# Jobs from here run on Merge Requests as prerequisite for merging. # Jobs from here run on Merge Requests as prerequisite for merging.
@ -21,14 +20,13 @@ variables:
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
when: never when: never
- if: $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == "cicd"
- changes: - changes:
- ${ENTRY_FOLDER}/${PACKAGE_NAME}/* - ${ENTRY_FOLDER}/${PACKAGE_NAME}/*
script: script:
- cd src/ - cd src/
- npm install - npm install
- npm run start - npm run start
- cat ${ENTRY_FOLDER}/${PACKAGE_NAME}/theme.json - cat ../${ENTRY_FOLDER}/${PACKAGE_NAME}/theme.json
- npm run test - npm run test
artifacts: artifacts:
paths: paths:
@ -40,7 +38,6 @@ variables:
stage: Test stage: Test
image: python:latest image: python:latest
rules: rules:
- if: $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == "cicd"
- if: $CI_PIPELINE_SOURCE == "merge_request_event" - if: $CI_PIPELINE_SOURCE == "merge_request_event"
changes: changes:
- ${ENTRY_FOLDER}/${PACKAGE_NAME}/* - ${ENTRY_FOLDER}/${PACKAGE_NAME}/*
@ -56,7 +53,6 @@ variables:
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
when: never when: never
- if: $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == "cicd"
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
changes: changes:
- ${ENTRY_FOLDER}/${PACKAGE_NAME}/* - ${ENTRY_FOLDER}/${PACKAGE_NAME}/*

View File

@ -0,0 +1,32 @@
manifest-job/BL2_frozen_wastelands:
variables:
PACKAGE_NAME: "BL2_frozen_wastelands"
extends: .manifest-job
test-images-job/BL2_frozen_wastelands:
needs:
- manifest-job/BL2_frozen_wastelands
variables:
PACKAGE_NAME: "BL2_frozen_wastelands"
extends: .test-job
bundle-job/BL2_frozen_wastelands:
needs:
- manifest-job/BL2_frozen_wastelands
variables:
PACKAGE_NAME: "BL2_frozen_wastelands"
extends: .bundle-job
upload-job/BL2_frozen_wastelands:
needs:
- bundle-job/BL2_frozen_wastelands
variables:
PACKAGE_NAME: "BL2_frozen_wastelands"
extends: .upload-job
release-job/BL2_frozen_wastelands:
needs:
- upload-job/BL2_frozen_wastelands
variables:
PACKAGE_NAME: "BL2_frozen_wastelands"
extends: .release-job

View File

@ -0,0 +1,32 @@
manifest-job/BL3_Athenas_Tree:
variables:
PACKAGE_NAME: "BL3_Athenas_Tree"
extends: .manifest-job
test-images-job/BL3_Athenas_Tree:
needs:
- manifest-job/BL3_Athenas_Tree
variables:
PACKAGE_NAME: "BL3_Athenas_Tree"
extends: .test-job
bundle-job/BL3_Athenas_Tree:
needs:
- manifest-job/BL3_Athenas_Tree
variables:
PACKAGE_NAME: "BL3_Athenas_Tree"
extends: .bundle-job
upload-job/BL3_Athenas_Tree:
needs:
- bundle-job/BL3_Athenas_Tree
variables:
PACKAGE_NAME: "BL3_Athenas_Tree"
extends: .upload-job
release-job/BL3_Athenas_Tree:
needs:
- upload-job/BL3_Athenas_Tree
variables:
PACKAGE_NAME: "BL3_Athenas_Tree"
extends: .release-job

View File

@ -0,0 +1,32 @@
manifest-job/BL3_Lunch_in_Trashlantis:
variables:
PACKAGE_NAME: "BL3_Lunch_in_Trashlantis"
extends: .manifest-job
test-images-job/BL3_Lunch_in_Trashlantis:
needs:
- manifest-job/BL3_Lunch_in_Trashlantis
variables:
PACKAGE_NAME: "BL3_Lunch_in_Trashlantis"
extends: .test-job
bundle-job/BL3_Lunch_in_Trashlantis:
needs:
- manifest-job/BL3_Lunch_in_Trashlantis
variables:
PACKAGE_NAME: "BL3_Lunch_in_Trashlantis"
extends: .bundle-job
upload-job/BL3_Lunch_in_Trashlantis:
needs:
- bundle-job/BL3_Lunch_in_Trashlantis
variables:
PACKAGE_NAME: "BL3_Lunch_in_Trashlantis"
extends: .upload-job
release-job/BL3_Lunch_in_Trashlantis:
needs:
- upload-job/BL3_Lunch_in_Trashlantis
variables:
PACKAGE_NAME: "BL3_Lunch_in_Trashlantis"
extends: .release-job

View File

@ -0,0 +1,32 @@
manifest-job/BL3_Sanctuary_Bay:
variables:
PACKAGE_NAME: "BL3_Sanctuary_Bay"
extends: .manifest-job
test-images-job/BL3_Sanctuary_Bay:
needs:
- manifest-job/BL3_Sanctuary_Bay
variables:
PACKAGE_NAME: "BL3_Sanctuary_Bay"
extends: .test-job
bundle-job/BL3_Sanctuary_Bay:
needs:
- manifest-job/BL3_Sanctuary_Bay
variables:
PACKAGE_NAME: "BL3_Sanctuary_Bay"
extends: .bundle-job
upload-job/BL3_Sanctuary_Bay:
needs:
- bundle-job/BL3_Sanctuary_Bay
variables:
PACKAGE_NAME: "BL3_Sanctuary_Bay"
extends: .upload-job
release-job/BL3_Sanctuary_Bay:
needs:
- upload-job/BL3_Sanctuary_Bay
variables:
PACKAGE_NAME: "BL3_Sanctuary_Bay"
extends: .release-job

View File

@ -0,0 +1,32 @@
manifest-job/HFW_Three_Spires_Mountain:
variables:
PACKAGE_NAME: "HFW_Three_Spires_Mountain"
extends: .manifest-job
test-images-job/HFW_Three_Spires_Mountain:
needs:
- manifest-job/HFW_Three_Spires_Mountain
variables:
PACKAGE_NAME: "HFW_Three_Spires_Mountain"
extends: .test-job
bundle-job/HFW_Three_Spires_Mountain:
needs:
- manifest-job/HFW_Three_Spires_Mountain
variables:
PACKAGE_NAME: "HFW_Three_Spires_Mountain"
extends: .bundle-job
upload-job/HFW_Three_Spires_Mountain:
needs:
- bundle-job/HFW_Three_Spires_Mountain
variables:
PACKAGE_NAME: "HFW_Three_Spires_Mountain"
extends: .upload-job
release-job/HFW_Three_Spires_Mountain:
needs:
- upload-job/HFW_Three_Spires_Mountain
variables:
PACKAGE_NAME: "HFW_Three_Spires_Mountain"
extends: .release-job

32
.gitlab/HFW_Weat_Tuft.yml Normal file
View File

@ -0,0 +1,32 @@
manifest-job/HFW_Weat_Tuft:
variables:
PACKAGE_NAME: "HFW_Weat_Tuft"
extends: .manifest-job
test-images-job/HFW_Weat_Tuft:
needs:
- manifest-job/HFW_Weat_Tuft
variables:
PACKAGE_NAME: "HFW_Weat_Tuft"
extends: .test-job
bundle-job/HFW_Weat_Tuft:
needs:
- manifest-job/HFW_Weat_Tuft
variables:
PACKAGE_NAME: "HFW_Weat_Tuft"
extends: .bundle-job
upload-job/HFW_Weat_Tuft:
needs:
- bundle-job/HFW_Weat_Tuft
variables:
PACKAGE_NAME: "HFW_Weat_Tuft"
extends: .upload-job
release-job/HFW_Weat_Tuft:
needs:
- upload-job/HFW_Weat_Tuft
variables:
PACKAGE_NAME: "HFW_Weat_Tuft"
extends: .release-job

View File

@ -1,32 +0,0 @@
manifest-job/missing_tag_set:
variables:
PACKAGE_NAME: "missing_tag_set"
extends: .manifest-job
test-images-job/missing_tag_set:
needs:
- manifest-job/missing_tag_set
variables:
PACKAGE_NAME: "missing_tag_set"
extends: .test-job
bundle-job/missing_tag_set:
needs:
- manifest-job/missing_tag_set
variables:
PACKAGE_NAME: "missing_tag_set"
extends: .bundle-job
upload-job/missing_tag_set:
needs:
- bundle-job/missing_tag_set
variables:
PACKAGE_NAME: "missing_tag_set"
extends: .upload-job
release-job/missing_tag_set:
needs:
- upload-job/missing_tag_set
variables:
PACKAGE_NAME: "missing_tag_set"
extends: .release-job

View File

@ -1,32 +0,0 @@
manifest-job/valid_set:
variables:
PACKAGE_NAME: "valid_set"
extends: .manifest-job
test-images-job/valid_set:
needs:
- manifest-job/valid_set
variables:
PACKAGE_NAME: "valid_set"
extends: .test-job
bundle-job/valid_set:
needs:
- manifest-job/valid_set
variables:
PACKAGE_NAME: "valid_set"
extends: .bundle-job
upload-job/valid_set:
needs:
- bundle-job/valid_set
variables:
PACKAGE_NAME: "valid_set"
extends: .upload-job
release-job/valid_set:
needs:
- upload-job/valid_set
variables:
PACKAGE_NAME: "valid_set"
extends: .release-job

67
.vscode/launch.json vendored
View File

@ -12,7 +12,8 @@
"start" "start"
], ],
"env": { "env": {
"ENTRY_FOLDER": "${workspaceFolder}/test", "CI_PROJECT_DIR": "${workspaceFolder}",
"ENTRY_FOLDER": "test",
"PACKAGE_NAME": "valid_set" "PACKAGE_NAME": "valid_set"
}, },
"skipFiles": [ "skipFiles": [
@ -30,7 +31,8 @@
"test" "test"
], ],
"env": { "env": {
"ENTRY_FOLDER": "${workspaceFolder}/test", "CI_PROJECT_DIR": "${workspaceFolder}",
"ENTRY_FOLDER": "test",
"PACKAGE_NAME": "valid_set" "PACKAGE_NAME": "valid_set"
}, },
"skipFiles": [ "skipFiles": [
@ -51,10 +53,69 @@
"--color=yes" "--color=yes"
], ],
"env": { "env": {
"ENTRY_FOLDER": "${workspaceFolder}/test", "CI_PROJECT_DIR": "${workspaceFolder}",
"ENTRY_FOLDER": "test",
"PACKAGE_NAME": "valid_set" "PACKAGE_NAME": "valid_set"
}, },
"justMyCode": true "justMyCode": true
}, },
{
"name": "Gen-Manifest existing_valid_theme_set",
"cwd": "${workspaceFolder}/src",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"start"
],
"env": {
"CI_PROJECT_DIR": "${workspaceFolder}",
"ENTRY_FOLDER": "test",
"PACKAGE_NAME": "existing_valid_theme_set"
},
"skipFiles": [
"<node_internals>/**"
],
},
{
"name": "Test-Manifest existing_valid_theme_set",
"cwd": "${workspaceFolder}/src",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"test"
],
"env": {
"CI_PROJECT_DIR": "${workspaceFolder}",
"ENTRY_FOLDER": "test",
"PACKAGE_NAME": "existing_valid_theme_set"
},
"skipFiles": [
"<node_internals>/**"
],
},
{
"name": "Test-Images existing_valid_theme_set",
"cwd": "${workspaceFolder}/src",
"console": "internalConsole",
"type": "python",
"request": "launch",
"module": "pytest",
"args": [
"test_images.py",
"-rA",
"--tb=line",
"--color=yes"
],
"env": {
"CI_PROJECT_DIR": "${workspaceFolder}",
"ENTRY_FOLDER": "test",
"PACKAGE_NAME": "existing_valid_theme_set"
},
"justMyCode": true
},
] ]
} }

View File

@ -1,5 +1,12 @@
{ {
"conventionalCommits.scopes": [ "conventionalCommits.scopes": [
"cicd" "cicd",
"#5",
"#9",
"#13",
"#14",
"#15",
"#2",
"#24"
] ]
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 909 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 977 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 968 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 929 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 944 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 952 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1002 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 892 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 876 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 935 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 942 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 996 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 877 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 947 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 980 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 954 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1009 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 706 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 688 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 672 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 685 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 718 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 698 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 730 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 740 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 689 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 702 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 664 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 645 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 624 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 676 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 794 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 741 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 748 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 741 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 737 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 734 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 KiB

View File

@ -0,0 +1,38 @@
{
"displayName": "Borderlands 3: Athenas Tree",
"imageFilename": "BL3_Athenas_Tree*.jpg",
"imageCredits": "Gearbox",
"sunriseImageList": [
18,
19,
20,
21,
22,
23,
24
],
"dayImageList": [
25,
1,
2,
3,
4,
5,
6,
7
],
"sunsetImageList": [
8,
9,
10,
11,
12
],
"nightImageList": [
13,
14,
15,
16,
17
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 990 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 929 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Some files were not shown because too many files have changed in this diff Show More