Skip to content

Commit

Permalink
Release 4.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic100 committed Dec 11, 2021
2 parents 03f34a6 + 2bb2239 commit 1a85936
Show file tree
Hide file tree
Showing 56 changed files with 384 additions and 341 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: build
run: |
npm install
npm run compile
npm run test
- uses: actions/checkout@v2
- name: build
run: |
yarn
yarn compile
yarn test
19 changes: 19 additions & 0 deletions .github/workflows/close-milestone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: close-milestone

on:
milestone:
types: [closed]

permissions:
issues: write
pull-requests: write

jobs:
comment:
runs-on: ubuntu-latest

steps:
- uses: bflad/action-milestone-comment@v1
with:
body: |
This feature/bug fix has been released in [version ${{ github.event.milestone.title }}](https://github.com/mistic100/Photo-Sphere-Viewer/releases/tag/${{ github.event.milestone.title }}).
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ package-lock.json
yarn.lock
yarn-error.log
/three-examples
/.netlify
47 changes: 8 additions & 39 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,49 +1,18 @@
{
"extends": [
"stylelint-config-standard"
"stylelint-config-standard-scss"
],
"plugins": [
"stylelint-scss"
],
"rules": {
"number-leading-zero": "never",
"max-empty-lines": 2,
"max-nesting-depth": 4,
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"at-rule-empty-line-before": null,
"at-rule-name-space-after": "always",
"block-closing-brace-newline-after": [
"always",
{
"ignoreAtRules": [
"if",
"else"
]
}
],
"scss/at-else-closing-brace-newline-after": "always-last-in-chain",
"scss/at-else-closing-brace-space-after": "always-intermediate",
"scss/at-else-empty-line-before": "never",
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
"scss/at-if-closing-brace-space-after": "always-intermediate",
"scss/at-function-parentheses-space-before": "never",
"scss/at-import-no-partial-leading-underscore": true,
"scss/at-mixin-argumentless-call-parentheses": "always",
"scss/at-mixin-parentheses-space-before": "never",
"scss/dollar-variable-colon-space-after": "always",
"scss/dollar-variable-colon-space-before": "never",
"scss/dollar-variable-default": [
true,
{
"ignore": "local"
}
],
"scss/media-feature-value-dollar-variable": "always",
"scss/operator-no-newline-after": true,
"scss/operator-no-newline-before": true,
"scss/operator-no-unspaced": true,
"scss/no-duplicate-dollar-variables": true,
"scss/at-extend-no-missing-placeholder": true
"max-line-length": null,
"color-function-notation": "legacy",
"alpha-value-notation": "number",
"number-leading-zero": "never",
"scss/dollar-variable-empty-line-before": null,
"string-quotes": "single",
"selector-class-pattern": null
}
}
6 changes: 3 additions & 3 deletions dist/adapters/cubemap.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions dist/adapters/equirectangular-tiles.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1a85936

Please sign in to comment.