Skip to content

Commit fabe4a7

Browse files
committed
Merge branch 'release/1.1.3' into v1
2 parents 5983a37 + 57b24a2 commit fabe4a7

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Transcoder Changelog
22

3+
## 1.1.3 - 2018.03.02
4+
### Changed
5+
* Fixed deprecation errors from Craft CMS 3 RC13
6+
37
## 1.1.2 - 2018.02.06
48
### Changed
59
* Switched video thumbnail generation to use `EVENT_GET_THUMB_PATH`

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nystudio107/craft-transcoder",
33
"description": "Transcode video & audio files to various formats, and provide video thumbnails",
44
"type": "craft-plugin",
5-
"version": "1.1.2",
5+
"version": "1.1.3",
66
"keywords": [
77
"craft",
88
"cms",

src/Transcoder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ function (Event $event) {
7373
Assets::class,
7474
Assets::EVENT_GET_THUMB_PATH,
7575
function (AssetThumbEvent $event) {
76-
Craft::trace(
76+
Craft::debug(
7777
'Assets::EVENT_GET_THUMB_PATH',
7878
__METHOD__
7979
);
@@ -92,7 +92,7 @@ function (AssetThumbEvent $event) {
9292

9393
// Add the Transcode path to the list of things the Clear Caches tool can delete.
9494
Event::on(
95-
ClearCaches::className(),
95+
ClearCaches::class,
9696
ClearCaches::EVENT_REGISTER_CACHE_OPTIONS,
9797
function (RegisterCacheOptionsEvent $event) {
9898
$event->options[] = [

0 commit comments

Comments
 (0)