Skip to content

Commit

Permalink
Changed: Versions and updated README/CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
bymayo committed Jun 17, 2022
1 parent 1614ca4 commit b0a66ed
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# PDF Transform Changelog

## 2.0.0 - 2022-06-17
### Changed
- Now requires PHP ^8.0.0.
- Now requires Craft CMS ^4.0.0

## 1.0.6 - 2022-04-13
### Fixed
- Updated Composer dependencies
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img src="https://github.com/bymayo/craft-pdf-transform/blob/master/resources/icon.jpg" width="60">

# PDF Transform for Craft CMS 3.x
# PDF Transform for Craft CMS 4

PDF Transform is a Craft CMS plugin that transforms a PDF stored in Assets, to an image. This can then be output via Twig in to a template.

Expand All @@ -22,7 +22,7 @@ You can also install the plugin via the Plugin Store in the Craft Admin CP by se

## Requirements

- Craft CMS 3.x
- Craft CMS 4.x
- Imagick / Ghostscript
- MySQL (No PostgreSQL support)

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bymayo/pdf-transform",
"description": "Transform a PDF page to an image (JPEG, PNG)",
"type": "craft-plugin",
"version": "1.0.6",
"version": "2.0.0",
"keywords": [
"craft",
"cms",
Expand Down
2 changes: 1 addition & 1 deletion src/PdfTransform.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* PDF Transform plugin for Craft CMS 3.x
* PDF Transform plugin for Craft CMS
*
* @link http://bymayo.co.uk
* @copyright Copyright (c) 2018 ByMayo
Expand Down
2 changes: 1 addition & 1 deletion src/assetbundles/PdfTransform/PdfTransformAsset.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* PDF Transform plugin for Craft CMS 3.x
* PDF Transform plugin for Craft CMS
*
* @link http://bymayo.co.uk
* @copyright Copyright (c) 2018 ByMayo
Expand Down
2 changes: 1 addition & 1 deletion src/models/Settings.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* PDF Transform plugin for Craft CMS 3.x
* PDF Transform plugin for Craft CMS
*
* @link http://bymayo.co.uk
* @copyright Copyright (c) 2018 ByMayo
Expand Down
2 changes: 1 addition & 1 deletion src/services/PdfTransformService.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* PDF Transform plugin for Craft CMS 3.x
* PDF Transform plugin for Craft CMS
*
* @link http://bymayo.co.uk
* @copyright Copyright (c) 2018 ByMayo
Expand Down
2 changes: 1 addition & 1 deletion src/translations/en/pdf-transform.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* PDF Transform plugin for Craft CMS 3.x
* PDF Transform plugin for Craft CMS
*
* @link http://bymayo.co.uk
* @copyright Copyright (c) 2018 ByMayo
Expand Down
2 changes: 1 addition & 1 deletion src/variables/PdfTransformVariable.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* PDF Transform plugin for Craft CMS 3.x
* PDF Transform plugin for Craft CMS
*
* @link http://bymayo.co.uk
* @copyright Copyright (c) 2018 ByMayo
Expand Down

0 comments on commit b0a66ed

Please sign in to comment.