Skip to content

Commit

Permalink
Added commands file, updated version info, fixed bug in messages file
Browse files Browse the repository at this point in the history
  • Loading branch information
hgraca committed Aug 11, 2013
1 parent 8a20f0b commit 8e52f8e
Show file tree
Hide file tree
Showing 9 changed files with 59 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@

1.2.1
=====
* Fixed bug on Mac, where the filepaths with spaces were not read properly

1.2.0
=====
* Implementation of:
Expand Down
File renamed without changes.
33 changes: 33 additions & 0 deletions Default.sublime-commands
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[

{
"command": "extract",
"args": {"execute": false},
"caption": "Extract Method - Diff"
},
{
"command": "extract",
"args": {"execute": true},
"caption": "Extract Method - Patch"
},
{
"command": "renamelocalvariable",
"args": {"execute": false},
"caption": "Rename Local Var - Diff"
},
{
"command": "renamelocalvariable",
"args": {"execute": true},
"caption": "Rename Local Var - Patch"
},
{
"command": "convertlocalvariabletoinstancevariable",
"args": {"execute": false},
"caption": "Convert Local Var to Instance - Diff"
},
{
"command": "convertlocalvariabletoinstancevariable",
"args": {"execute": true},
"caption": "Convert Local Var to Instance - Patch"
}
]
5 changes: 3 additions & 2 deletions messages.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"install": "messages/install.md",
"1.0.0": "messages/1.0.0.md"
"1.2.0": "messages/1.2.0.md"
"1.0.0": "messages/1.0.0.md",
"1.2.0": "messages/1.2.0.md",
"1.2.1": "messages/1.2.1.md"
}
2 changes: 1 addition & 1 deletion messages/1.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ New on 1.0.0
* Use view.run_command('extract', {'execute': True}) to compute and apply the extraction


If you have any questions or found a bug fell free to contact me at [email protected]
If you have any questions or found a bug feel free to contact me at [email protected]

For bugs open an issue on github https://github.com/hgraca/sublime-text-2-php-refactor/issues

Expand Down
2 changes: 1 addition & 1 deletion messages/1.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ New on 1.2.0
* Convert Local Variable To Instance Variable


If you have any questions or found a bug fell free to contact me at [email protected]
If you have any questions or found a bug feel free to contact me at [email protected]

For bugs open an issue on github https://github.com/hgraca/sublime-text-2-php-refactor/issues

Expand Down
11 changes: 11 additions & 0 deletions messages/1.2.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

New on 1.2.1
============
* Fixed bug on Mac, where the filepaths with spaces were not read properly


If you have any questions or found a bug feel free to contact me at [email protected]

For bugs open an issue on github https://github.com/hgraca/sublime-text-2-php-refactor/issues

Hope you enjoy it.
2 changes: 1 addition & 1 deletion messages/install.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Thank you for installing sublime-text-2-php-refactor.

If you have any questions or found a bug fell free to contact me at [email protected]
If you have any questions or found a bug feel free to contact me at [email protected]

For bugs open an issue on github https://github.com/hgraca/sublime-text-2-php-refactor/issues

Expand Down
8 changes: 4 additions & 4 deletions packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
{
"name": "PHP Refactor",
"description": "Refactoring for php classes",
"author": "Herberto Graça",
"author": "Herberto Graca",
"homepage": "https://github.com/hgraca/sublime-text-2-php-refactor",
"last_modified": "2013-04-21 22:23:00",
"last_modified": "2013-08-11 22:00:00",
"platforms": {
"*": [
{
"version": "1.2.0",
"url": "https://github.com/hgraca/sublime-text-2-php-refactor/archive/1.2.0.zip"
"version": "1.2.1",
"url": "https://github.com/hgraca/sublime-text-2-php-refactor/archive/1.2.1.zip"
}
]
}
Expand Down

0 comments on commit 8e52f8e

Please sign in to comment.