Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Releases: Qoraiche/laravel-mail-editor

v4.1 pre release

03 Apr 18:30
71b8390
Compare
Choose a tag to compare
v4.1 pre release Pre-release
Pre-release

What's Changed

  • Update composer.json to support Laravel 10 by @ReeceM in #233

Full Changelog: v4.0.5...v4.1.0-beta.0

v4.0.5

03 Apr 13:21
6f65f61
Compare
Choose a tag to compare

Fixes

  • Lines variable needs to be array and not integer for loadNamespaceOverrides method. by @nicoorfi in #231
  • Apply fixes from StyleCI by @Qoraiche in #232

Dependabot

New Contributors

Full Changelog: v4.0.4...v4.0.5

v4.0.4 laravel 9 compat.

21 Nov 14:38
06efbad
Compare
Choose a tag to compare

What's Changed

Full Changelog: v4.0.3...v4.0.4

v4.0.3

15 Feb 19:19
def16b9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v4.0.2...v4.0.3

Thank you to @AliKHODR

v3.5.3

15 Feb 19:24
b886a16
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.5.2...v3.5.3

v4.0.2

11 Feb 18:39
5adce0e
Compare
Choose a tag to compare

With this addition, please make use of the updated config values in config/maileclipse.php. You need to add the following

    /*
    |--------------------------------------------------------------------------
    | Display Mailable Subject
    |--------------------------------------------------------------------------
    |
    | Set to true this will display the subject of the Mailable instead of Class Name.
    | When the config setting is false the namespace/class name is shown
    | options: true / false
    |
    */
    'display_as_subject' => true,

What's Changed

  • Merge Master into v3.x branch in #193
  • [3.x] Feature/change table names issue 79 in #194
  • Merge v3 updates in #198

Full Changelog: v4.0.1...v4.0.2

v3.5.2

11 Feb 18:25
Compare
Choose a tag to compare

Added

  • Adds the subject of the email client to the table instead of the namespace. See Issue #79, PR #194

Please add the following to the config/maileclipse.php file to be able to toggle the settings for this added feature.

    /*
    |--------------------------------------------------------------------------
    | Display Mailable Subject
    |--------------------------------------------------------------------------
    |
    | Set to true this will display the subject of the Mailable instead of Class Name.
    | When the config setting is false the namespace/class name is shown
    | options: true / false
    |
    */
    'display_as_subject' => true,

Fix

  • Correct custom Mailable directory usage from config, see PR #190 @Bhagyrajaj

Full Changelog: v3.5.1...v3.5.2

v4.0.1

11 Feb 18:32
76992f8
Compare
Choose a tag to compare

This adds improved feedback about the usage of factories when the option is enabled in the config file and none are found for a model.

What's Changed (Auto-generated)

  • Refac/improve error handling and feedback by @ReeceM in #196

Full Changelog: v4.0.0...v4.0.1

v4.0.0

08 Feb 22:46
526903f
Compare
Choose a tag to compare

Add Laravel 9 support: See PR #191

v3.5.1

04 Dec 13:51
Compare
Choose a tag to compare

Fixes

  • Fixes an issue where in some cases Faker data would cause a issue for the javascript frontend. See #187 and #188