Changeset 3158768
- Timestamp:
- 09/27/2024 12:32:19 PM (18 months ago)
- Location:
- hagakure
- Files:
-
- 6 edited
- 1 copied
-
tags/1.3.1 (copied) (copied from hagakure/trunk)
-
tags/1.3.1/hagakure.php (modified) (1 diff)
-
tags/1.3.1/readme.txt (modified) (5 diffs)
-
tags/1.3.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/hagakure.php (modified) (1 diff)
-
trunk/readme.txt (modified) (5 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hagakure/tags/1.3.1/hagakure.php
r3158762 r3158768 2 2 /** 3 3 * Plugin Name: Hagakure - Yet Another Error Reporter 4 * Version: 1.3. 04 * Version: 1.3.1 5 5 * Description: A WordPress plugin to clarify meaningless errors like "Allowed memory size of xxxxxxxx bytes exhausted". 6 * Author: Kunoichi7 * Author URI: https:// kunoichiwp.com6 * Author: Tarosky 7 * Author URI: https://tarosky.co.jp 8 8 * Text Domain: hagakure 9 9 * Domain Path: /languages -
hagakure/tags/1.3.1/readme.txt
r3158762 r3158768 1 1 === Hagakure - Yet Another Error Reporter === 2 2 3 Contributors: kuno1, Takahashi_Fumiki3 Contributors: tarosky, Takahashi_Fumiki, kuno1 4 4 Tags: php, error, recovery 5 Requires at least: 5. 86 Requires PHP: 7. 07 Tested up to: 6. 18 Stable Tag: 1.3. 05 Requires at least: 5.9 6 Requires PHP: 7.4 7 Tested up to: 6.6 8 Stable Tag: 1.3.1 9 9 License: GPLv3 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 41 41 #12 do_action /app/public/wp-includes/template-loader.php Line 13 42 42 #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> 44 45 45 46 This log will always follow the memory limit Fatal Error by `wp-db.php`. Now you can find `#8` calls `get_posts` repeatedly. … … 49 50 We 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! 50 51 51 This plugin also adds debug backtrace to error logs. To modify the error level to a detailed backtrace, define the constant :52 This 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: 52 53 53 54 <pre>define( 'HAGAKURE_ERROR_LEVEL', E_NOTICE | E_USER_WARNING | E_WARNING | E_USER_ERROR );</pre> … … 69 70 = How can I contribute? = 70 71 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).72 We 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). 72 73 73 74 == Screenshots == … … 76 77 77 78 == 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 ☺️ 78 85 79 86 = 1.2.0 = -
hagakure/tags/1.3.1/vendor/composer/installed.php
r3158762 r3158768 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
hagakure/trunk/hagakure.php
r3158762 r3158768 2 2 /** 3 3 * Plugin Name: Hagakure - Yet Another Error Reporter 4 * Version: 1.3. 04 * Version: 1.3.1 5 5 * Description: A WordPress plugin to clarify meaningless errors like "Allowed memory size of xxxxxxxx bytes exhausted". 6 * Author: Kunoichi7 * Author URI: https:// kunoichiwp.com6 * Author: Tarosky 7 * Author URI: https://tarosky.co.jp 8 8 * Text Domain: hagakure 9 9 * Domain Path: /languages -
hagakure/trunk/readme.txt
r3158762 r3158768 1 1 === Hagakure - Yet Another Error Reporter === 2 2 3 Contributors: kuno1, Takahashi_Fumiki3 Contributors: tarosky, Takahashi_Fumiki, kuno1 4 4 Tags: php, error, recovery 5 Requires at least: 5. 86 Requires PHP: 7. 07 Tested up to: 6. 18 Stable Tag: 1.3. 05 Requires at least: 5.9 6 Requires PHP: 7.4 7 Tested up to: 6.6 8 Stable Tag: 1.3.1 9 9 License: GPLv3 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 41 41 #12 do_action /app/public/wp-includes/template-loader.php Line 13 42 42 #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> 44 45 45 46 This log will always follow the memory limit Fatal Error by `wp-db.php`. Now you can find `#8` calls `get_posts` repeatedly. … … 49 50 We 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! 50 51 51 This plugin also adds debug backtrace to error logs. To modify the error level to a detailed backtrace, define the constant :52 This 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: 52 53 53 54 <pre>define( 'HAGAKURE_ERROR_LEVEL', E_NOTICE | E_USER_WARNING | E_WARNING | E_USER_ERROR );</pre> … … 69 70 = How can I contribute? = 70 71 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).72 We 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). 72 73 73 74 == Screenshots == … … 76 77 77 78 == 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 ☺️ 78 85 79 86 = 1.2.0 = -
hagakure/trunk/vendor/composer/installed.php
r3158762 r3158768 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.