Compare commits
81 Commits
v6.0.0-alp
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dfb2dbba7c | ||
|
|
60e16943a7 | ||
|
|
4ddb07ac2d | ||
|
|
6c61b11a6e | ||
|
|
434575f49d | ||
|
|
03ebebf6fb | ||
|
|
b864eff3c9 | ||
|
|
25a91a611c | ||
|
|
46338ad5b4 | ||
|
|
fc2de634ab | ||
|
|
6e52b971cd | ||
|
|
0a5acd99cb | ||
|
|
f7132d98cd | ||
|
|
3de4512681 | ||
|
|
4bf333ed38 | ||
|
|
4f5ef7c2d7 | ||
|
|
5de03beea1 | ||
|
|
42baa422b3 | ||
|
|
6af5d24b3b | ||
|
|
b88ce2d49f | ||
|
|
c216ae1d13 | ||
|
|
319776d241 | ||
|
|
1d0718dc2f | ||
|
|
929694310e | ||
|
|
7379a3a11b | ||
|
|
4db18aafce | ||
|
|
066669cfee | ||
|
|
87177d9d43 | ||
|
|
0c75a154a8 | ||
|
|
0a6f6d2b0e | ||
|
|
6755b03f12 | ||
|
|
e759ddced2 | ||
|
|
1ad28d8515 | ||
|
|
3d36b11c8f | ||
|
|
a15df6d455 | ||
|
|
9f0488dc32 | ||
|
|
f3dba82b04 | ||
|
|
c999ce0787 | ||
|
|
5b76bf9552 | ||
|
|
9cf9b856b0 | ||
|
|
db6c142afd | ||
|
|
79405426fa | ||
|
|
00b09a9a04 | ||
|
|
f5e9b61f73 | ||
|
|
4371081763 | ||
|
|
9530ff68ab | ||
|
|
51dc79dc22 | ||
|
|
b559faec2a | ||
|
|
d7b1456584 | ||
|
|
23894c1a0a | ||
|
|
1e691b2470 | ||
|
|
c5555dd8cc | ||
|
|
32168be6c7 | ||
|
|
78c14f81a8 | ||
|
|
788eba34b6 | ||
|
|
1f31b4b0f6 | ||
|
|
00a8a11904 | ||
|
|
3899d83fb6 | ||
|
|
8f13684a01 | ||
|
|
bdf63f2402 | ||
|
|
9c2ffae2f9 | ||
|
|
7b2807b321 | ||
|
|
e930622548 | ||
|
|
56e2832ebe | ||
|
|
d31d33aeb3 | ||
|
|
e4c69e960e | ||
|
|
a8431f33bd | ||
|
|
4995c967ac | ||
|
|
9a9d3994da | ||
|
|
ff9feb29d3 | ||
|
|
fee7e6e64e | ||
|
|
18d4d38655 | ||
|
|
53e9bc68d2 | ||
|
|
2be50e1b87 | ||
|
|
27a1257b6d | ||
|
|
75658e0566 | ||
|
|
85322d1877 | ||
|
|
6667a42301 | ||
|
|
020dffd504 | ||
|
|
4201fd848f | ||
|
|
9a67c4e24d |
@@ -1,8 +1,11 @@
|
||||
# Run tests against supported Node versions, and (except for pull requests)
|
||||
# against supported browsers.
|
||||
# against supported browsers that are available on Saucelabs.
|
||||
|
||||
version: 2.1
|
||||
|
||||
orbs:
|
||||
win: circleci/windows@5.0.0
|
||||
|
||||
executors:
|
||||
node24:
|
||||
docker:
|
||||
@@ -47,6 +50,31 @@ jobs:
|
||||
steps:
|
||||
- attach_workspace:
|
||||
at: .
|
||||
- run:
|
||||
name: Report Node and NPM versions
|
||||
command: echo "Using Node $(node --version) and NPM $(npm --version)"
|
||||
- run:
|
||||
name: Run tests
|
||||
command: npm test
|
||||
|
||||
test_win:
|
||||
executor:
|
||||
name: win/default
|
||||
shell: bash.exe
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: Install Node.js
|
||||
command: nvm install 20.0.0 && nvm use 20.0.0
|
||||
- run:
|
||||
name: Report Node and NPM versions
|
||||
command: echo "Using Node $(node --version) and NPM $(npm --version)"
|
||||
- run:
|
||||
name: Install dependencies
|
||||
command: npm install
|
||||
- run:
|
||||
name: Build
|
||||
command: npm run build
|
||||
- run:
|
||||
name: Run tests
|
||||
command: npm test
|
||||
@@ -59,6 +87,9 @@ jobs:
|
||||
steps:
|
||||
- attach_workspace:
|
||||
at: .
|
||||
- run:
|
||||
name: Report Node and NPM versions
|
||||
command: echo "Using Node $(node --version) and NPM $(npm --version)"
|
||||
- run:
|
||||
name: Run tests in parallel
|
||||
command: npm run test:parallel
|
||||
@@ -89,7 +120,7 @@ jobs:
|
||||
export SAUCE_TUNNEL_NAME=$CIRCLE_WORKFLOW_JOB_ID
|
||||
scripts/start-sauce-connect
|
||||
set +o errexit
|
||||
scripts/run-all-browsers
|
||||
scripts/run-sauce-browsers
|
||||
exitcode=$?
|
||||
set -o errexit
|
||||
scripts/stop-sauce-connect
|
||||
@@ -101,47 +132,25 @@ workflows:
|
||||
push:
|
||||
jobs:
|
||||
- build:
|
||||
executor: node24
|
||||
name: build_node_24
|
||||
- build:
|
||||
executor: node22
|
||||
name: build_node_22
|
||||
- build:
|
||||
executor: node20
|
||||
name: build_node_20
|
||||
matrix:
|
||||
parameters:
|
||||
executor: [node20, node22, node24]
|
||||
- test_node:
|
||||
executor: node22
|
||||
name: test_node_22
|
||||
matrix:
|
||||
parameters:
|
||||
executor: [node20, node22, node24]
|
||||
requires:
|
||||
- build_node_22
|
||||
- test_node:
|
||||
executor: node20
|
||||
name: test_node_20
|
||||
requires:
|
||||
- build_node_20
|
||||
- build-<< matrix.executor >>
|
||||
- test_parallel:
|
||||
executor: node24
|
||||
name: test_parallel_node_24
|
||||
matrix:
|
||||
parameters:
|
||||
executor: [node20, node22, node24]
|
||||
requires:
|
||||
- build_node_24
|
||||
- test_parallel:
|
||||
executor: node22
|
||||
name: test_parallel_node_22
|
||||
requires:
|
||||
- build_node_22
|
||||
- test_parallel:
|
||||
executor: node20
|
||||
name: test_parallel_node_20
|
||||
requires:
|
||||
- build_node_20
|
||||
- test_parallel:
|
||||
executor: node20
|
||||
name: test_parallel_node_20
|
||||
requires:
|
||||
- build_node_20
|
||||
- build-<< matrix.executor >>
|
||||
- test_browsers:
|
||||
requires:
|
||||
- build_node_20
|
||||
- build-node20
|
||||
filters:
|
||||
branches:
|
||||
ignore: /pull\/.*/ # Don't run on pull requests.
|
||||
- test_win
|
||||
|
||||
7
.gitattributes
vendored
7
.gitattributes
vendored
@@ -1,2 +1,7 @@
|
||||
* text=auto eol=lf
|
||||
*.png -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
||||
*.mov filter=lfs diff=lfs merge=lfs -text
|
||||
*.jpg filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.docx filter=lfs diff=lfs merge=lfs -text
|
||||
|
||||
23
.github/workflows/safari.yml
vendored
Normal file
23
.github/workflows/safari.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: Test in latest available Safari
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
jobs:
|
||||
build:
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- name: Report Safari version
|
||||
run: osascript -e 'get version of application "Safari"'
|
||||
- uses: actions/checkout@v4
|
||||
- name: Use Node.js 22.x
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 22.x
|
||||
- run: npm install
|
||||
- run: npm run build
|
||||
- run: JASMINE_BROWSER=safari npm run ci
|
||||
BIN
2026羅安禾作品整理.docx
LFS
Normal file
BIN
2026羅安禾作品整理.docx
LFS
Normal file
Binary file not shown.
BIN
2026羅安禾作品整理.old.docx
LFS
Executable file
BIN
2026羅安禾作品整理.old.docx
LFS
Executable file
Binary file not shown.
BIN
2026羅安禾作品整理.pdf
LFS
Normal file
BIN
2026羅安禾作品整理.pdf
LFS
Normal file
Binary file not shown.
48
AGENTS.md
Normal file
48
AGENTS.md
Normal file
@@ -0,0 +1,48 @@
|
||||
# Jasmine Core Development Notes
|
||||
|
||||
## Architecture
|
||||
|
||||
- This is the main jasmine-core repository, a JavaScript BDD testing framework
|
||||
- **Directory structure**:
|
||||
- `src/` - source code
|
||||
- `src/core/` - environment-agnostic core functionality
|
||||
- `src/html/` - browser-specific code
|
||||
- `src/boot/` - boot files for browser setup
|
||||
- `spec/` - tests, mirrors the src directory structure
|
||||
- `lib/` - compiled distribution files (built, not checked in modified)
|
||||
|
||||
## Key Development Commands
|
||||
|
||||
- `npm install` - install dependencies
|
||||
- `npm test` - run all tests in Node.js + lint + prettier check
|
||||
- `npm run test:parallel` - run tests in parallel
|
||||
- `npm run build` - build distribution to `/lib`
|
||||
- `npm run cleanup` - auto-fix prettier errors
|
||||
- `npm run serve` - serve tests for browser testing at http://localhost:8888
|
||||
- `JASMINE_BROWSER=<name> npm run ci` - run browser tests via Selenium
|
||||
|
||||
## Before submitting PR
|
||||
|
||||
1. Run tests in Node.js AND browsers: `npm test` and `npm run serve`
|
||||
2. Fix any eslint/prettier errors: `npm run cleanup`
|
||||
3. Build `lib/` with `npm run build` and re-test
|
||||
4. Revert changes to built files in `lib/` - maintainers will rebuild when merging
|
||||
|
||||
## Testing Conventions
|
||||
|
||||
- Jasmine self-tests: `lib/jasmine-core.js` provides `jasmine` (runner), `src/` provides `jasmineUnderTest` (code under test)
|
||||
- Always use `jasmineUnderTest` for objects/functions being tested
|
||||
|
||||
## Coding Conventions
|
||||
|
||||
- Single quotes, semicolons required
|
||||
- Curly braces required for all control statements
|
||||
- ECMA 2022 syntax, commonjs modules
|
||||
- Core code must stay environment-agnostic:
|
||||
- Keep browser-specific code in `src/html/`
|
||||
- Degrade gracefully when environment-specific features aren't available
|
||||
|
||||
## Supported Environments
|
||||
|
||||
- Node: 20, 22, 24
|
||||
- Browsers: Safari 26+, Chrome/Firefox/Edge (evergreen)
|
||||
2
LICENSE
2
LICENSE
@@ -1,5 +1,5 @@
|
||||
Copyright (c) 2008-2019 Pivotal Labs
|
||||
Copyright (c) 2008-2025 The Jasmine developers
|
||||
Copyright (c) 2008-2026 The Jasmine developers
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
|
||||
@@ -30,9 +30,9 @@ Microsoft Edge) as well as Node.
|
||||
| Environment | Supported versions |
|
||||
|-------------------|----------------------------------|
|
||||
| Node | 20, 22, 24 |
|
||||
| Safari | 16*, 17* |
|
||||
| Safari | 26* |
|
||||
| Chrome | Evergreen |
|
||||
| Firefox | Evergreen, 102*, 115*, 128*, 140 |
|
||||
| Firefox | Evergreen, 140 |
|
||||
| Edge | Evergreen |
|
||||
|
||||
For evergreen browsers, each version of Jasmine is tested against the version of the browser that is available to us
|
||||
@@ -60,5 +60,5 @@ To find out what environments work with a particular Jasmine release, see the [r
|
||||
* Sheel Choksi
|
||||
|
||||
Copyright (c) 2008-2019 Pivotal Labs<br>
|
||||
Copyright (c) 2008-2025 The Jasmine developers<br>
|
||||
Copyright (c) 2008-2026 The Jasmine developers<br>
|
||||
This software is licensed under the [MIT License](https://github.com/jasmine/jasmine/blob/main/LICENSE).
|
||||
|
||||
15
RELEASE.md
15
RELEASE.md
@@ -28,9 +28,18 @@ should also rev to that version.
|
||||
|
||||
When ready to release - specs are all green and the stories are done:
|
||||
|
||||
1. Update the release notes in `release_notes` - use the Anchorman gem to generate the markdown file and edit accordingly. Include a list of supported environments.
|
||||
1. Update the version in `package.json`
|
||||
1. Run `npm run build`.
|
||||
1. Update the release notes in `release_notes` - use the Anchorman gem to
|
||||
generate the Markdown file and edit accordingly. Include a list of supported
|
||||
environments. Get that information from these places:
|
||||
* For Node, see .circleci/config.yml or the README.
|
||||
* For Firefox ESR and Safari <=17, see scripts/run-sauce-browsers or the README.
|
||||
* For evergreen browsers, trigger a Circle CI run and check the
|
||||
[Saucelabs dashboard](https://app.saucelabs.com/dashboard/tests?ownerId=90a771d55857492da3bd5251a2d92457&ownerType=user&ownerName=jasmine-js&start=last7days)
|
||||
once it's finished.
|
||||
* For Safari >17, trigger the [Safari action](https://github.com/jasmine/jasmine/actions/workflows/safari.yml)
|
||||
and get the version from the output.
|
||||
2. Update the version in `package.json`
|
||||
3. Run `npm run build`.
|
||||
|
||||
### Commit and push core changes
|
||||
|
||||
|
||||
28
artist-website/.gitignore
vendored
Normal file
28
artist-website/.gitignore
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
node_modules
|
||||
dist
|
||||
dist-ssr
|
||||
*.local
|
||||
|
||||
# tauri
|
||||
/src-tauri/target
|
||||
/src-tauri/Cargo.lock
|
||||
|
||||
# Editor directories and files
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
.idea
|
||||
.DS_Store
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
13
artist-website/index.html
Normal file
13
artist-website/index.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>藝術家作品集</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
</html>
|
||||
20
artist-website/package.json
Normal file
20
artist-website/package.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "artist-website",
|
||||
"version": "1.0.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview",
|
||||
"tauri": "tauri"
|
||||
},
|
||||
"dependencies": {
|
||||
"vue": "^3.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tauri-apps/api": "^1.5.0",
|
||||
"@tauri-apps/cli": "^1.5.0",
|
||||
"@vitejs/plugin-vue": "^5.0.0",
|
||||
"vite": "^5.0.0"
|
||||
}
|
||||
}
|
||||
BIN
artist-website/public/assets/images/Bug.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/Bug.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/S__56745988.jpg
LFS
Normal file
BIN
artist-website/public/assets/images/S__56745988.jpg
LFS
Normal file
Binary file not shown.
BIN
artist-website/public/assets/images/artist-photo.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/artist-photo.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/budgy_1.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/budgy_1.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/budgy_2.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/budgy_2.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/budgy_3.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/budgy_3.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/budgy_4.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/budgy_4.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/budgy_5.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/budgy_5.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/budgy_6.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/budgy_6.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/budgy_7.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/budgy_7.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/bug_1.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/bug_1.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/bug_2.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/bug_2.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/bug_3.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/bug_3.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/bug_4.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/bug_4.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/bug_5.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/bug_5.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/bug_6.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/bug_6.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/bug_7.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/bug_7.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/bug_8.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/bug_8.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_0.mov
LFS
Normal file
BIN
artist-website/public/assets/images/cell_0.mov
LFS
Normal file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_1.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_1.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_10.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_10.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_11.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_11.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_12.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_12.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_13.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_13.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_14.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_14.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_15.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_15.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_16.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_16.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_17.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_17.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_18.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_18.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_19.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_19.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_2.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_2.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_3.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_3.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_4.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_4.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_5.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_5.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_6.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_6.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_7.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_7.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_8.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_8.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cell_9.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cell_9.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cornerstone_1.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cornerstone_1.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cornerstone_2.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cornerstone_2.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cornerstone_3.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cornerstone_3.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cornerstone_4.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cornerstone_4.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cornerstone_5.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cornerstone_5.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cornerstone_6.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cornerstone_6.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cornerstone_7.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cornerstone_7.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/cornerstone_8.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/cornerstone_8.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/falan2_1.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/falan2_1.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/falan2_2.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/falan2_2.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/falan2_3.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/falan2_3.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/falan2_4.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/falan2_4.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/falan2_5.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/falan2_5.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/falan_1.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/falan_1.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/falan_2.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/falan_2.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/falan_3.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/falan_3.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/falan_4.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/falan_4.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/falan_5.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/falan_5.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/seeing_1.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/seeing_1.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/seeing_2.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/seeing_2.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/seeing_3.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/seeing_3.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_1.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_1.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_10.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_10.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_11.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_11.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_12.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_12.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_13.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_13.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_14.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_14.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_15.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_15.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_16.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_16.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_17.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_17.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_18.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_18.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_19.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_19.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_2.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_2.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_20.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_20.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_21.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_21.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_3.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_3.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_4.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_4.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_5.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_5.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_6.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_6.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_7.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_7.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_8.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_8.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_9.jpg
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_9.jpg
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_fb1_1.png
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_fb1_1.png
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_fb1_2.png
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_fb1_2.png
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_fb1_3.png
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_fb1_3.png
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_fb1_4.png
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_fb1_4.png
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_fb1_5.png
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_fb1_5.png
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_fb1_6.png
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_fb1_6.png
LFS
Executable file
Binary file not shown.
BIN
artist-website/public/assets/images/selfport_ig1_10.png
LFS
Executable file
BIN
artist-website/public/assets/images/selfport_ig1_10.png
LFS
Executable file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user