- Update version number in config.xml
- Update version number in README.md
- Update CHANGELOG.md (changes, date)
- Tag release:
git tag -a va.b.c -m 'Version a.b.c'
- Push master & tag to GitHub:
git push origin master && git push origin va.b.c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app/locale/en_US/Mage_Catalog.csv | |
"You saved the search term.","You saved the search term." | |
app/locale/en_US/Mage_Core.csv | |
"File name is too long. Maximum length is %s.","File name is too long. Maximum length is %s." | |
"Please enter more characters or clean leading or trailing spaces.","Please enter more characters or clean leading or trailing spaces." | |
"Please enter more characters. Password should contain both numeric and alphabetic characters.","Please enter more characters. Password should contain both numeric and alphabetic characters." | |
app/locale/en_US/Mage_Customer.csv | |
"Minimum admin password length","Minimum admin password length" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app/locale/en_US/Mage_Adminhtml.csv | |
"Key %s does not contain scalar value","Key %s does not contain scalar value" | |
"Key %s does not exist in array","Key %s does not exist in array" | |
"Wrong field specified.","Wrong field specified." | |
app/locale/en_US/Mage_Api.csv | |
"A user with the same user name or email already exists.","A user with the same user name or email already exists." | |
"Api Key confirmation must be same as Api Key.","Api Key confirmation must be same as Api Key." | |
"Api Key must be at least of %d characters.","Api Key must be at least of %d characters." | |
"Api Key must include both numeric and alphabetic characters.","Api Key must include both numeric and alphabetic characters." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RELEASE_NOTES.txt | |
app/Mage.php | |
app/code/core/Mage/Admin/Model/User.php | |
app/code/core/Mage/Admin/etc/config.xml | |
app/code/core/Mage/Admin/sql/admin_setup/upgrade-1.6.1.2-1.6.1.3.php | |
app/code/core/Mage/Adminhtml/Block/Api/User/Edit/Tab/Main.php | |
app/code/core/Mage/Adminhtml/Block/Catalog/Product/Attribute/Set/Main.php | |
app/code/core/Mage/Adminhtml/Block/Customer/Edit/Renderer/Newpass.php | |
app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Account.php | |
app/code/core/Mage/Adminhtml/Block/Newsletter/Queue/Preview.php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
# Author: Matthias Zeis (https://github.com/mzeis, https://twitter.com/mzeis) | |
# Date: 2016/10/17 | |
# Version: 1.0 | |
# License: MIT (https://en.wikipedia.org/wiki/MIT_License) | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd app/code/core/Mage | |
$ find . -name '*.xml' -path '*etc*' | sed 's,^\./[^/]*/etc/,,' | sort -u |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd app/code/Magento | |
$ find . -name '*.xml' -path '*etc*' | sed 's,^\./[^/]*/etc/,,' | sort -u |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php # app/code/Mzeis/Customer/Model/Data/Customer.php | |
namespace Mzeis\Customer\Model\Data; | |
class Customer | |
{ | |
public function afterGetFirstname(\Magento\Customer\Api\Data\CustomerInterface $customer, $result) | |
{ | |
return '|' . $result . '|'; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Full-form, standard PHP tag (don't use a short tag). | |
* The closing tag must be omitted. | |
*/ | |
/** | |
* Opening curly brackets for classes and methods are put on the next line. | |
* Indentation for the next level is 4 spaces (no tabs). | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
eav: | |
catalog_product: | |
- entity_id: 1 | |
type_id: simple | |
created_at: 2014-07-26 16:20:26 | |
description: Book | |
has_options: 0 | |
image: no_selection | |
msrp_display_actual_price_type: config verwenden | |
msrp_enabled: config verwenden |
NewerOlder