Plugin Directory

Changeset 3158768


Ignore:
Timestamp:
09/27/2024 12:32:19 PM (18 months ago)
Author:
Tarosky
Message:

Update to version 1.3.1 from GitHub

Location:
hagakure
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • hagakure/tags/1.3.1/hagakure.php

    r3158762 r3158768  
    22/**
    33 * Plugin Name: Hagakure - Yet Another Error Reporter
    4  * Version: 1.3.0
     4 * Version: 1.3.1
    55 * Description: A WordPress plugin to clarify meaningless errors like "Allowed memory size of xxxxxxxx bytes exhausted".
    6  * Author: Kunoichi
    7  * Author URI: https://kunoichiwp.com
     6 * Author: Tarosky
     7 * Author URI: https://tarosky.co.jp
    88 * Text Domain: hagakure
    99 * Domain Path: /languages
  • hagakure/tags/1.3.1/readme.txt

    r3158762 r3158768  
    11=== Hagakure - Yet Another Error Reporter ===
    22
    3 Contributors: kuno1, Takahashi_Fumiki 
     3Contributors: tarosky, Takahashi_Fumiki, kuno1 
    44Tags: php, error, recovery 
    5 Requires at least: 5.8 
    6 Requires PHP: 7.0 
    7 Tested up to: 6.1 
    8 Stable Tag: 1.3.0
     5Requires at least: 5.9 
     6Requires PHP: 7.4 
     7Tested up to: 6.6 
     8Stable Tag: 1.3.1
    99License: GPLv3 or later 
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    4141#12     do_action       /app/public/wp-includes/template-loader.php     Line 13
    4242#13     require_once    /app/public/wp-blog-header.php  Line 19
    43 #14     require /app/public/index.php   Line 17</pre>
     43#14     require /app/public/index.php   Line 17
     44#15     URI: /?p=1</pre>
    4445
    4546This log will always follow the memory limit Fatal Error by `wp-db.php`. Now you can find `#8` calls `get_posts` repeatedly.
     
    4950We use Hagakure with our [hosting service](https://hosting.kunoichiwp.com/), please look forward to seeing [our blog published](https://kunoichiwp.com/blog) and describing the integration!
    5051
    51 This plugin also adds debug backtrace to error logs. To modify the error level to a detailed backtrace, define the constant:
     52This plugin also adds debug backtrace to error logs. To modify the error level to a detailed backtrace, define the constant in <code>wp-config.php</code> or somewhere else:
    5253
    5354<pre>define( 'HAGAKURE_ERROR_LEVEL', E_NOTICE | E_USER_WARNING | E_WARNING | E_USER_ERROR );</pre>
     
    6970= How can I contribute? =
    7071
    71 We host this plugin on GitHub [kuno1/hagakure](https://github.com/kuno1/hagakure). Please feel free to send [PRs](https://github.com/kuno1/hagakure/pulls) or to make [issues](https://github.com/kuno1/hagakure/issues).
     72We host this plugin on GitHub [tarosky/hagakure](https://github.com/tarosky/hagakure). Please feel free to send [PRs](https://github.com/tarosky/hagakure/pulls) or to make [issues](https://github.com/tarosky/hagakure/issues).
    7273
    7374== Screenshots ==
     
    7677
    7778== Changelog ==
     79
     80= 1.3.1 =
     81
     82* Bump required PHP and WP version.
     83* Fix memory limit error log logic.
     84* Move the ownership to TAROSKY Inc from Kunoichi Inc. Tarosky is a parent company of Kunoichi Inc.  Developers are the same ☺️
    7885
    7986= 1.2.0 =
  • hagakure/tags/1.3.1/vendor/composer/installed.php

    r3158762 r3158768  
    22    'root' => array(
    33        'name' => 'kuno1/hagakure',
    4         'pretty_version' => '1.3.0',
    5         'version' => '1.3.0.0',
    6         'reference' => '6edb4b1c84ec7d2f20eacabaf5c73b48023881bb',
     4        'pretty_version' => '1.3.1',
     5        'version' => '1.3.1.0',
     6        'reference' => 'f65cc724a5a8f5ab8bc9117033a81f645262f192',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'kuno1/hagakure' => array(
    14             'pretty_version' => '1.3.0',
    15             'version' => '1.3.0.0',
    16             'reference' => '6edb4b1c84ec7d2f20eacabaf5c73b48023881bb',
     14            'pretty_version' => '1.3.1',
     15            'version' => '1.3.1.0',
     16            'reference' => 'f65cc724a5a8f5ab8bc9117033a81f645262f192',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • hagakure/trunk/hagakure.php

    r3158762 r3158768  
    22/**
    33 * Plugin Name: Hagakure - Yet Another Error Reporter
    4  * Version: 1.3.0
     4 * Version: 1.3.1
    55 * Description: A WordPress plugin to clarify meaningless errors like "Allowed memory size of xxxxxxxx bytes exhausted".
    6  * Author: Kunoichi
    7  * Author URI: https://kunoichiwp.com
     6 * Author: Tarosky
     7 * Author URI: https://tarosky.co.jp
    88 * Text Domain: hagakure
    99 * Domain Path: /languages
  • hagakure/trunk/readme.txt

    r3158762 r3158768  
    11=== Hagakure - Yet Another Error Reporter ===
    22
    3 Contributors: kuno1, Takahashi_Fumiki 
     3Contributors: tarosky, Takahashi_Fumiki, kuno1 
    44Tags: php, error, recovery 
    5 Requires at least: 5.8 
    6 Requires PHP: 7.0 
    7 Tested up to: 6.1 
    8 Stable Tag: 1.3.0
     5Requires at least: 5.9 
     6Requires PHP: 7.4 
     7Tested up to: 6.6 
     8Stable Tag: 1.3.1
    99License: GPLv3 or later 
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    4141#12     do_action       /app/public/wp-includes/template-loader.php     Line 13
    4242#13     require_once    /app/public/wp-blog-header.php  Line 19
    43 #14     require /app/public/index.php   Line 17</pre>
     43#14     require /app/public/index.php   Line 17
     44#15     URI: /?p=1</pre>
    4445
    4546This log will always follow the memory limit Fatal Error by `wp-db.php`. Now you can find `#8` calls `get_posts` repeatedly.
     
    4950We use Hagakure with our [hosting service](https://hosting.kunoichiwp.com/), please look forward to seeing [our blog published](https://kunoichiwp.com/blog) and describing the integration!
    5051
    51 This plugin also adds debug backtrace to error logs. To modify the error level to a detailed backtrace, define the constant:
     52This plugin also adds debug backtrace to error logs. To modify the error level to a detailed backtrace, define the constant in <code>wp-config.php</code> or somewhere else:
    5253
    5354<pre>define( 'HAGAKURE_ERROR_LEVEL', E_NOTICE | E_USER_WARNING | E_WARNING | E_USER_ERROR );</pre>
     
    6970= How can I contribute? =
    7071
    71 We host this plugin on GitHub [kuno1/hagakure](https://github.com/kuno1/hagakure). Please feel free to send [PRs](https://github.com/kuno1/hagakure/pulls) or to make [issues](https://github.com/kuno1/hagakure/issues).
     72We host this plugin on GitHub [tarosky/hagakure](https://github.com/tarosky/hagakure). Please feel free to send [PRs](https://github.com/tarosky/hagakure/pulls) or to make [issues](https://github.com/tarosky/hagakure/issues).
    7273
    7374== Screenshots ==
     
    7677
    7778== Changelog ==
     79
     80= 1.3.1 =
     81
     82* Bump required PHP and WP version.
     83* Fix memory limit error log logic.
     84* Move the ownership to TAROSKY Inc from Kunoichi Inc. Tarosky is a parent company of Kunoichi Inc.  Developers are the same ☺️
    7885
    7986= 1.2.0 =
  • hagakure/trunk/vendor/composer/installed.php

    r3158762 r3158768  
    22    'root' => array(
    33        'name' => 'kuno1/hagakure',
    4         'pretty_version' => '1.3.0',
    5         'version' => '1.3.0.0',
    6         'reference' => '6edb4b1c84ec7d2f20eacabaf5c73b48023881bb',
     4        'pretty_version' => '1.3.1',
     5        'version' => '1.3.1.0',
     6        'reference' => 'f65cc724a5a8f5ab8bc9117033a81f645262f192',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'kuno1/hagakure' => array(
    14             'pretty_version' => '1.3.0',
    15             'version' => '1.3.0.0',
    16             'reference' => '6edb4b1c84ec7d2f20eacabaf5c73b48023881bb',
     14            'pretty_version' => '1.3.1',
     15            'version' => '1.3.1.0',
     16            'reference' => 'f65cc724a5a8f5ab8bc9117033a81f645262f192',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.