Skip to content

Commit

Permalink
CursorRuler 1.1.2 Release Notes
Browse files Browse the repository at this point in the history
===============================

- The original fix for #2 only worked for ST2.  Hopefully now things will work in ST3 also.
  • Loading branch information
icylace committed Oct 12, 2013
1 parent bf9f75a commit ca278e9
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
6 changes: 2 additions & 4 deletions CursorRuler.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'''
CursorRuler 1.1.1
CursorRuler 1.1.2
A plugin for the Sublime Text editor which marks the current cursor position
using dynamic rulers.
Expand All @@ -8,8 +8,6 @@
'''

import os.path

import sublime
import sublime_plugin

Expand Down Expand Up @@ -137,7 +135,7 @@ def draw(cls, view):

@classmethod
def init(cls):
plugin_name = os.path.basename(__file__)[:-3]
plugin_name = 'CursorRuler'

cls.editor_settings = sublime.load_settings('Preferences.sublime-settings')
cls.settings = sublime.load_settings(plugin_name + '.sublime-settings')
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,12 @@ ST3 seems to completely avoid this problematic scenario. I suppose it's due to

## Release Notes


2013-10-12: Version **1.1.2**

- The original fix for #2 only worked for ST2. Hopefully now things will work in ST3 also.


2013-10-12: Version **1.1.1**

- General code improvement.
Expand Down
5 changes: 3 additions & 2 deletions messages.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"install": "messages/install.txt",
"1.1.1": "messages/1.1.1.txt"
"1.1.2": "messages/1.1.2.txt",
"1.1.1": "messages/1.1.1.txt",
"install": "messages/install.txt"
}
4 changes: 4 additions & 0 deletions messages/1.1.2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
CursorRuler 1.1.2 Release Notes
===============================

- The original fix for #2 only worked for ST2. Hopefully now things will work in ST3 also.

0 comments on commit ca278e9

Please sign in to comment.