Skip to content

Commit

Permalink
Release 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xjsender committed Jan 21, 2018
1 parent ff43b51 commit 790a0ac
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 3 deletions.
12 changes: 12 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ Release History

---------------

Release 3.5.0 (2018-01-21)
++++++++++++++++++
* Add aura component and attribute completion, contributed by @lushang
* Add some missed base component
* Add lightning component implements completion
* Add Queueable Apex Template
* Add SLDS classes completion
* Add some console snippets
* Add sObject completion when attribute support sObjects, such as type for aura:attribute
* Update export format for ``Export Profile`` command
* Fix some bugs, such as, aura app preview, custom label completion, etc.


Release 3.4.7 (2017-07-29)
++++++++++++++++++
Expand Down
4 changes: 2 additions & 2 deletions completions.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ class PageCompletions(sublime_plugin.EventListener):

def on_query_completions(self, view, prefix, locations):
# Only trigger within HTML
if not view.match_selector(locations[0], "text.html - source"):
if not view.match_selector(locations[0], "text.html - source, source.js"):
return []

# Get plugin settings
Expand Down Expand Up @@ -770,7 +770,7 @@ def on_query_completions(self, view, prefix, locations):
for member in package_cache.get("CustomLabel", []):
completion_list.append(("%s\t%s" % (member, "CustomLabel"), member))
else:
sublime.status_message("Info: No custom label cache")
sublime.status_message("Info: No custom label cache exist")

return completion_list

Expand Down
13 changes: 13 additions & 0 deletions config/messages/3.5.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Build 3.5.0
-----------
Release Date: 21 Jan 2018

* Add aura component and attribute completion, contributed by @lushang
* Add some missed base component
* Add lightning component implements completion
* Add Queueable Apex Template
* Add SLDS classes completion
* Add some console snippets
* Add sObject completion when attribute support sObjects, such as type for aura:attribute
* Update export format for ``Export Profile`` command
* Fix some bugs, such as, aura app preview, custom label completion, etc.
2 changes: 1 addition & 1 deletion config/settings/package.sublime-settings
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "haoide",
"version": "3.4.7",
"version": "3.5.0",
"description": "haoide is a Sublime Text 3 plugin for Salesforce and used for swift development on Force.com",
"author": "Hao Liu",
"email": "[email protected]",
Expand Down

0 comments on commit 790a0ac

Please sign in to comment.