-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hao Liu
committed
Aug 5, 2015
1 parent
5987261
commit 5fe42e0
Showing
17 changed files
with
237 additions
and
73 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Build 3.1.7 | ||
----------- | ||
Release Date: 5 Aug 2015 | ||
|
||
* Enhancement: | ||
- Add `with sharing` for `Utility Class` in template | ||
- When you want to view code coverage, if you didn't download code, you can't view code coverage and you will get the reminder message in the status bar | ||
- Before v33.0, tooling API doesn't support relationship query just like ``ApexClass.LastModifiedBy.Name``, when you save code to server, plugin will check your code has conflict with server and tell you ``who change the code at when?``, because relationship query is not supported, plugin will need to issue a query request to fetch the LastModifiedBy Name by the LastModifiedById, from this version, it will not necessary. | ||
- Add comments for some settings | ||
- Move metadata.json from ``metadata.sublime-settings`` to ``.config/metadata.json``, when you create new project, if the ``metadata.json`` is exist in the ``.config`` path, plugin will skip the describe process, however, if you want to refresh the cache, you can execute ``Metadata > Describe Metadata`` to refresh the ``metadata.json`` cache file | ||
|
||
* Bug Fix: | ||
- After you select all test class, you can't deselect all when you run tests | ||
- Problem when ``diff with other server``, see detail in issue #61 | ||
|
||
* New Feature: | ||
- Add a new command named ``destruct_package_xml`` in the context menu, which is used for destructing members defined in ``package.xml`` from current server, so if you want to remove some components from production, you can get the package.xml by ``Metadata > Build Package.xml``, and then execute ``destruct_package_xml`` to remove them from production | ||
|
||
* Update: | ||
- Update keymap of ``retrieve from this server`` from ``super+shift+r`` to ``alt+shift+r``, fix issue #68 | ||
- Update keymap of ``deploy to this server`` from ``super+shift+s`` to ``alt+shift+s`` | ||
|
||
* Restart your sublime when new version is installed |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "HaoIDE", | ||
"version": "3.1.6", | ||
"version": "3.1.7", | ||
"description": "HaoIDE is a Sublime Text 3 plugin for Salesforce and used for swift development on Force.com", | ||
"author": "Hao Liu", | ||
"email": "[email protected]", | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
"username" : "[email protected]", | ||
|
||
/** | ||
* Below are not required properties | ||
* Below are optional properties | ||
*/ | ||
|
||
// If you don't need security token, | ||
|
@@ -69,6 +69,7 @@ | |
], | ||
|
||
// Solution for issue #49 | ||
// It works when reload sObjects cache or export workbooks | ||
// Setting for controlling maximum concurrent connections with salesforce | ||
"maximum_concurrent_connections": 30, | ||
|
||
|
@@ -101,10 +102,11 @@ | |
// every time when you open a file, plugin will reveal the file in the sidebar | ||
"reveal_file_in_sidebar_on_file_activated": false, | ||
|
||
// Debug Mode | ||
// Debug Mode, after switch this settings to true, | ||
// you can see some debug logs in the console | ||
"debug_mode": false, | ||
|
||
// Metadata polling frequency | ||
// Metadata polling frequency, it works when retrieve files from server | ||
"metadata_polling_frequency": 2, | ||
|
||
// Indicate whether keep local change history of code file after code is saved successfully | ||
|
@@ -202,7 +204,8 @@ | |
} | ||
], | ||
|
||
// Deploy Options | ||
// Deploy Options, if you just want to valid a deployment, | ||
// you can copy this setting to user settings and set checkOnly to true | ||
"deploy_options" : { | ||
"allowMissingFiles" : false, | ||
"autoUpdatePackage" : false, | ||
|
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
5fe42e0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix issue #61 , #68