-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/1.2.22' into v1
- Loading branch information
Showing
10 changed files
with
1,679 additions
and
1,429 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
ARG TAG=16-alpine | ||
FROM nystudio107/node-dev-base:$TAG | ||
|
||
USER node | ||
|
||
WORKDIR /app/buildchain/ | ||
|
||
CMD ["run build"] | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,46 @@ | ||
{ | ||
"name": "nystudio107/craft-transcoder", | ||
"description": "Transcode video & audio files to various formats, and provide video thumbnails", | ||
"type": "craft-plugin", | ||
"version": "1.2.21", | ||
"keywords": [ | ||
"craft", | ||
"cms", | ||
"craftcms", | ||
"craft-plugin", | ||
"transcoder", | ||
"transcode", | ||
"video", | ||
"audio", | ||
"gif", | ||
"convert", | ||
"format" | ||
], | ||
"support": { | ||
"docs": "https://nystudio107.com/plugins/transcoder/documentation", | ||
"issues": "https://nystudio107.com/plugins/transcoder/support" | ||
}, | ||
"license": "proprietary", | ||
"authors": [ | ||
{ | ||
"name": "nystudio107", | ||
"homepage": "https://nystudio107.com" | ||
} | ||
], | ||
"require": { | ||
"craftcms/cms": "^3.1.0", | ||
"nystudio107/craft-plugin-vite": "^1.0.4", | ||
"mikehaertl/php-shellcommand": "~1.2" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"nystudio107\\transcoder\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"name": "Transcoder", | ||
"handle": "transcoder", | ||
"changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-transcoder/v1/CHANGELOG.md", | ||
"class": "nystudio107\\transcoder\\Transcoder" | ||
"name": "nystudio107/craft-transcoder", | ||
"description": "Transcode video & audio files to various formats, and provide video thumbnails", | ||
"type": "craft-plugin", | ||
"version": "1.2.22", | ||
"keywords": [ | ||
"craft", | ||
"cms", | ||
"craftcms", | ||
"craft-plugin", | ||
"transcoder", | ||
"transcode", | ||
"video", | ||
"audio", | ||
"gif", | ||
"convert", | ||
"format" | ||
], | ||
"support": { | ||
"docs": "https://nystudio107.com/plugins/transcoder/documentation", | ||
"issues": "https://nystudio107.com/plugins/transcoder/support" | ||
}, | ||
"license": "proprietary", | ||
"authors": [ | ||
{ | ||
"name": "nystudio107", | ||
"homepage": "https://nystudio107.com" | ||
} | ||
], | ||
"require": { | ||
"craftcms/cms": "^3.1.0", | ||
"nystudio107/craft-plugin-vite": "^1.0.4", | ||
"mikehaertl/php-shellcommand": "~1.2" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"nystudio107\\transcoder\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"name": "Transcoder", | ||
"handle": "transcoder", | ||
"changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-transcoder/v1/CHANGELOG.md", | ||
"class": "nystudio107\\transcoder\\Transcoder" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
ARG TAG=14-alpine | ||
FROM node:$TAG | ||
|
||
USER node | ||
|
||
WORKDIR /app/ | ||
|
||
CMD ["run build"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
module.exports = { | ||
title: 'Transcoder Plugin Documentation', | ||
description: 'Documentation for the Transcoder plugin', | ||
base: '/docs/transcoder/', | ||
lang: 'en-US', | ||
head: [ | ||
['meta', { content: 'https://github.com/nystudio107', property: 'og:see_also', }], | ||
['meta', { content: 'https://www.youtube.com/channel/UCOZTZHQdC-unTERO7LRS6FA', property: 'og:see_also', }], | ||
['meta', { content: 'https://www.facebook.com/newyorkstudio107', property: 'og:see_also', }], | ||
], | ||
themeConfig: { | ||
repo: 'nystudio107/craft-transcoder', | ||
docsDir: 'docs/docs', | ||
docsBranch: 'develop', | ||
algolia: { | ||
apiKey: '14f28d1e87ded365acc21d0e921732e6', | ||
indexName: 'transcoder' | ||
}, | ||
editLinks: true, | ||
editLinkText: 'Edit this page on GitHub', | ||
lastUpdated: 'Last Updated', | ||
sidebar: [ | ||
{ text: 'Transcoder Plugin', link: '/' }, | ||
{ text: 'Transcoder Overview', link: '/overview.html' }, | ||
{ text: 'Configuring Transcoder', link: '/configuring.html' }, | ||
{ text: 'Using Transcoder', link: '/using.html' }, | ||
], | ||
title: 'Transcoder Plugin Documentation', | ||
description: 'Documentation for the Transcoder plugin', | ||
base: '/docs/transcoder/', | ||
lang: 'en-US', | ||
head: [ | ||
['meta', {content: 'https://github.com/nystudio107', property: 'og:see_also',}], | ||
['meta', {content: 'https://www.youtube.com/channel/UCOZTZHQdC-unTERO7LRS6FA', property: 'og:see_also',}], | ||
['meta', {content: 'https://www.facebook.com/newyorkstudio107', property: 'og:see_also',}], | ||
], | ||
themeConfig: { | ||
repo: 'nystudio107/craft-transcoder', | ||
docsDir: 'docs/docs', | ||
docsBranch: 'develop', | ||
algolia: { | ||
appId: 'VWUWF9S521', | ||
apiKey: 'db5c03f88e474cbf0356841089be7ffa', | ||
indexName: 'transcoder' | ||
}, | ||
editLinks: true, | ||
editLinkText: 'Edit this page on GitHub', | ||
lastUpdated: 'Last Updated', | ||
sidebar: [ | ||
{text: 'Transcoder Plugin', link: '/'}, | ||
{text: 'Transcoder Overview', link: '/overview.html'}, | ||
{text: 'Configuring Transcoder', link: '/configuring.html'}, | ||
{text: 'Using Transcoder', link: '/using.html'}, | ||
], | ||
}, | ||
}; |
Oops, something went wrong.