Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
kevindees committed Jun 6, 2023
1 parent 2a18608 commit db97826
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 21 deletions.
4 changes: 2 additions & 2 deletions typerocket-v6.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: TypeRocket - Antennae
Plugin URI: https://typerocket.com/
Description: TypeRocket is a framework that joins refined UI elements and modern programming architecture together.
Version: 6.0.1
Version: 6.0.2
Requires at least: 6.1
Requires PHP: 8.0.2
Author: TypeRocket
Expand Down Expand Up @@ -41,7 +41,7 @@ public function plugins_loaded()
return;
}

define('TYPEROCKET_PLUGIN_VERSION', '6.0.1');
define('TYPEROCKET_PLUGIN_VERSION', '6.0.2');
define('TYPEROCKET_PLUGIN_INSTALL', __DIR__);
define('TYPEROCKET_PLUGIN_PRO', false);

Expand Down
12 changes: 6 additions & 6 deletions typerocket/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions typerocket/vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -2486,17 +2486,17 @@
},
{
"name": "typerocket/core",
"version": "v6.0.3",
"version_normalized": "6.0.3.0",
"version": "v6.0.4",
"version_normalized": "6.0.4.0",
"source": {
"type": "git",
"url": "https://github.com/TypeRocket/core.git",
"reference": "30d5088511aec1733a97c9299b3a1ecc049ffc41"
"reference": "f66a4401591c02d4553969a82d858773ea5419b6"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/TypeRocket/core/zipball/30d5088511aec1733a97c9299b3a1ecc049ffc41",
"reference": "30d5088511aec1733a97c9299b3a1ecc049ffc41",
"url": "https://api.github.com/repos/TypeRocket/core/zipball/f66a4401591c02d4553969a82d858773ea5419b6",
"reference": "f66a4401591c02d4553969a82d858773ea5419b6",
"shasum": ""
},
"require": {
Expand All @@ -2510,7 +2510,7 @@
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"time": "2023-05-31T19:08:31+00:00",
"time": "2023-06-06T13:42:56+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand Down Expand Up @@ -2539,7 +2539,7 @@
"support": {
"docs": "https://typerocket.com/docs/v6/",
"issues": "https://github.com/TypeRocket/core/issues",
"source": "https://github.com/TypeRocket/core/tree/v6.0.3"
"source": "https://github.com/TypeRocket/core/tree/v6.0.4"
},
"install-path": "../typerocket/core"
},
Expand Down
10 changes: 5 additions & 5 deletions typerocket/vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => 'typerocket/typerocket',
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => '285ae7ca11b4652445c48b11756942e8e78c9cb3',
'reference' => '2a186087e6f1a854b833818a7478e4b62e042972',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down Expand Up @@ -341,9 +341,9 @@
'dev_requirement' => true,
),
'typerocket/core' => array(
'pretty_version' => 'v6.0.3',
'version' => '6.0.3.0',
'reference' => '30d5088511aec1733a97c9299b3a1ecc049ffc41',
'pretty_version' => 'v6.0.4',
'version' => '6.0.4.0',
'reference' => 'f66a4401591c02d4553969a82d858773ea5419b6',
'type' => 'library',
'install_path' => __DIR__ . '/../typerocket/core',
'aliases' => array(),
Expand All @@ -352,7 +352,7 @@
'typerocket/typerocket' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => '285ae7ca11b4652445c48b11756942e8e78c9cb3',
'reference' => '2a186087e6f1a854b833818a7478e4b62e042972',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down
3 changes: 2 additions & 1 deletion typerocket/vendor/typerocket/core/src/Utility/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ public static function modelClass($resource, $instance = true)
* @return string
*/
public static function appNamespace($append = null) {
$append ??= '';
$space = $append ? "\\" . TYPEROCKET_APP_NAMESPACE . "\\" : TYPEROCKET_APP_NAMESPACE;
return $space . ltrim($append, '\\');
}
Expand All @@ -160,7 +161,7 @@ public static function hash() {
}

/**
* Instance the From
* Instance the Form
*
* @param string|Formable|array|null $resource posts, users, comments, options your own
* @param string|null $action update, delete, or create
Expand Down

0 comments on commit db97826

Please sign in to comment.