Skip to content

Commit

Permalink
Changes for releasing v2.1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
MekDrop committed Jul 20, 2022
1 parent b4e00f8 commit 8de8f93
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 21 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[![License](https://img.shields.io/github/license/ImpressCMS/impresscms-module-imbuilding.svg?maxAge=2592000)](License.txt)
[![GitHub release](https://img.shields.io/github/release/ImpressCMS/impresscms-module-imbuilding.svg?maxAge=2592000)](https://github.com/ImpressCMS/impresscms-module-imbuilding/releases)
[![This is ImpressCMS module](https://img.shields.io/badge/ImpressCMS-module-F3AC03.svg?maxAge=2592000)](http://impresscms.org)
[![License](https://img.shields.io/github/license/ImpressModules/imbuilding.svg)](License.txt) [![GitHub release](https://img.shields.io/github/release/ImpressModules/imbuilding.svg)](https://github.com/ImpressModules/imbuilding/releases) [![This is ImpressCMS module](https://img.shields.io/badge/ImpressCMS-module-F3AC03.svg)](http://impresscms.org)

#imBuilding
Module to generate base code of new modules :-)
# imBuilding

Module to generate base code for new [ImpressCMS](https://impresscms.org) modules.

3 changes: 0 additions & 3 deletions SUMMARY.md

This file was deleted.

Empty file modified basemodule/basefiles/templates/blocks/index.html
100755 → 100644
Empty file.
6 changes: 0 additions & 6 deletions book.json

This file was deleted.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "impresscms/impresscms-module-imbuilding",
"description": "A module to help you jumpstart development of ImpressCMS modules",
"minimum-stability": "beta",
"license": "GPL",
"license": "gpl-2.0-or-later",
"authors": [
{
"name": "David Janssens (fiammybe)",
Expand Down
11 changes: 6 additions & 5 deletions icms_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
$modversion = array(
/** General Information */
"name" => _MI_IMBUILDING_MD_NAME,
"version" => 2.0,
"version" => 2.1,
"description" => _MI_IMBUILDING_MD_DESC,
"author" => "The SmartFactory",
"credits" => "INBOX International inc.",
"help" => "",
"license" => "GNU General Public License (GPL)",
"official" => 1,
"dirname" => basename(dirname(__FILE__)),
"dirname" => basename(__DIR__),
"modname" => "imbuilding",

/** Images information */
Expand All @@ -35,15 +35,15 @@
/** Development information */
"status_version" => "Final",
"status" => "Final",
"date" => "18 Sept 2011",
"date" => date('Y-m-d', filemtime(__FILE__)),
"author_word" => "",
"warning" => _CO_ICMS_WARNING_FINAL,

/** Contributors */
"developer_website_url" => "http://inboxinternational.com",
"developer_website_name" => "INBOX International inc.",
"developer_email" => "[email protected]",

/** Administrative information */
"hasAdmin" => 1,
"adminindex" => "admin/index.php",
Expand Down Expand Up @@ -76,4 +76,5 @@
array("file" => "imbuilding_admin_module.html", "description" => "Module admin template"),
array("file" => "imbuilding_admin_object.html", "description" => "Object Admin template"),
array("file" => "imbuilding_admin_field.html", "description" => "Field Admin template"),
array("file" => "imbuilding_requirements.html", "description" => "Requirements"));
array("file" => "imbuilding_requirements.html", "description" => "Requirements")
);
2 changes: 1 addition & 1 deletion include/common.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

defined("ICMS_ROOT_PATH") or die("ICMS root path not defined");

if (!defined("IMBUILDING_DIRNAME")) define("IMBUILDING_DIRNAME", $modversion["dirname"] = basename(dirname(dirname(__FILE__))));
if (!defined("IMBUILDING_DIRNAME")) define("IMBUILDING_DIRNAME", $modversion["dirname"] = basename(dirname(__FILE__, 2)));
if (!defined("IMBUILDING_URL")) define("IMBUILDING_URL", ICMS_URL . "/modules/" . IMBUILDING_DIRNAME . "/");
if (!defined("IMBUILDING_ROOT_PATH")) define("IMBUILDING_ROOT_PATH", ICMS_ROOT_PATH . "/modules/" . IMBUILDING_DIRNAME . "/");
if (!defined("IMBUILDING_IMAGES_URL")) define("IMBUILDING_IMAGES_URL", IMBUILDING_URL . "images/");
Expand Down

0 comments on commit 8de8f93

Please sign in to comment.