Skip to content

Commit

Permalink
:octocat: prepare 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jrappen committed Sep 19, 2016
1 parent a464acb commit bcecb52
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Any other information you want to share that is relevant to the issue being repo

```text
DistractionFreeWindow:
release: 0.6.3
release: 0.6.4
Sublime Text:
channel: stable / dev
Expand Down
6 changes: 3 additions & 3 deletions distraction_free_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run(self):
prestine['status_bar_vis'] = status_bar_vis = self.is_status_bar_visible()
prestine['tabs_vis'] = tabs_vis = self.is_tabs_visible()
prestine['side_bar_vis'] = side_bar_vis = self.is_side_bar_visible()
if sublime.platform() not "osx":
if sublime.platform() is not 'osx':
prestine['menu_vis'] = menu_vis = self.is_menu_visible()

prestine['gutter_vis'] = gutter_vis = v.settings().get('gutter', True)
Expand Down Expand Up @@ -54,7 +54,7 @@ def run(self):
self.window.set_sidebar_visible(False)
else:
self.window.run_command('toggle_side_bar')
if sublime.platform() not "osx":
if sublime.platform() is not 'osx':
if dfw_settings.get('dfw_hide_menu') and menu_vis:
if ST3098:
self.window.set_menu_visible(False)
Expand Down Expand Up @@ -96,7 +96,7 @@ def run(self):
self.window.set_sidebar_visible(prestine_state['side_bar_vis'])
else:
self.window.run_command('toggle_side_bar')
if sublime.platform() not "osx":
if sublime.platform() is not 'osx':
if menu_vis != prestine_state['menu_vis']:
if ST3098:
self.window.set_menu_visible(prestine_state['menu_vis'])
Expand Down
2 changes: 1 addition & 1 deletion messages.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"0.6.3": "messages/latest.md"
"0.6.4": "messages/latest.md"
}
5 changes: 2 additions & 3 deletions messages/latest.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
DistractionFreeWindow (0.6.3)
DistractionFreeWindow (0.6.4)
=============================

* DistractionFreeWindow's menu related code is now hidden
for OSX versions of Sublime Text as reported in #19.
* This is a minor bug fix release addressing #20.

0 comments on commit bcecb52

Please sign in to comment.