Skip to content

Commit

Permalink
Merge pull request #109 from youranreus/feat/v3.4.0
Browse files Browse the repository at this point in the history
Feat/v3.4.0
  • Loading branch information
youranreus authored Sep 7, 2024
2 parents 94ad4cd + 1ca77c7 commit d2d2026
Show file tree
Hide file tree
Showing 8 changed files with 145 additions and 96 deletions.
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["emeraldwalk.runonsave", "mrcrowl.easy-less"]
}
7 changes: 6 additions & 1 deletion components/comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ function threadedComments($comments, $options)
<div class="comment-content">
<div class="comment-meta">
<span><?php $comments->author(); ?></span>
<span><?php echo G::getSemanticDate($comments->created); ?></span>

<?php if ($comments->status == 'waiting') { ?>
<span><?php $options->commentStatus(); ?></span>
<?php } else { ?>
<span><?php echo G::getSemanticDate($comments->created); ?></span>
<?php }?>
</div>
<?php echo G::analyzeMeme($comments->content); ?>
</div>
Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package G
* @author 季悠然
* @version 3.3.9
* @version 3.4.0
* @link https://mitsuha.space
*/

Expand Down
2 changes: 1 addition & 1 deletion libs/G.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class G
*
* @var string
*/
public static $version = "3.3.9";
public static $version = "3.4.0";

/**
* 主题配置
Expand Down
2 changes: 1 addition & 1 deletion static/css/G.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/css/G.css.map

Large diffs are not rendered by default.

Loading

0 comments on commit d2d2026

Please sign in to comment.