Skip to content

Commit

Permalink
Miscellaneous fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
biplobice committed Oct 4, 2022
1 parent f760447 commit 4a027b3
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## [1.0.0] - 2022-10-04

- Initial release to the Marketplace

## [0.1.6] - 2022-09-07
### Fixed
- View design compatibility with v8 and v9
Expand Down
2 changes: 1 addition & 1 deletion blocks/c5j_rating_btn/controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Controller extends BlockController

public function getBlockTypeName(): string
{
return t('C5j Rating Button');
return t('Rating Button');
}

public function getBlockTypeDescription(): string
Expand Down
Binary file added blocks/c5j_rating_btn/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion blocks/c5j_rating_page_list/controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Controller extends \Concrete\Block\PageList\Controller

public function getBlockTypeName(): string
{
return t('C5j Rating Page List');
return t('Rating Page List');
}

public function getBlockTypeDescription(): string
Expand Down
Binary file modified blocks/c5j_rating_page_list/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion blocks/c5j_rating_page_list/page_list_form.php
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@
?>
</div>
<div class="form-group">
<label class="control-label"><?=t('Display the total rating?')?></label>
<label class="control-label form-label"><?=t('Display the total rating?')?></label>
<div class="radio">
<label>
<input type="radio" id="displayRatings1" name="displayRatings" value="1" class="ccm-input-radio" checked="checked">
Expand Down
6 changes: 0 additions & 6 deletions config/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@
<blocktype handle="c5j_rating_btn" package="c5j_ratings"/>
<blocktype handle="c5j_rating_page_list" package="c5j_ratings"/>
</blocktypes>
<blocktypesets>
<blocktypeset handle="c5j" name="concrete5 Japan" package="c5j_ratings">
<blocktype handle="c5j_rating_btn"/>
<blocktype handle="c5j_rating_page_list"/>
</blocktypeset>
</blocktypesets>
<singlepages>
<page name="Ratings"
path="/dashboard/ratings"
Expand Down
4 changes: 2 additions & 2 deletions controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ class Controller extends Package
/**
* @var string required concrete5 version
*/
protected $appVersionRequired = '8.1.0';
protected $appVersionRequired = '8.5.0';

/**
* @var string package version
*/
protected $pkgVersion = '0.1.7';
protected $pkgVersion = '1.0.0';

protected $pkgAutoloaderRegistries = [
'src' => '\C5jRatings',
Expand Down

0 comments on commit 4a027b3

Please sign in to comment.