Skip to content
This repository has been archived by the owner on Oct 23, 2018. It is now read-only.

Commit

Permalink
Fix user's packages path casing which might cause error when install …
Browse files Browse the repository at this point in the history
…on case-sensitive system
  • Loading branch information
Sirisak Lueangsaksri committed Aug 16, 2015
1 parent f2d8326 commit 6e8093e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion commands/javatar_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def run(self):
if self.checksum != datahash:
self.result = False
return
open(join(sublime.packages_path(), "user", self.filename + ".javatar-packages"), "wb").write(data)
open(join(sublime.packages_path(), "User", self.filename + ".javatar-packages"), "wb").write(data)
self.result = True
if self.on_complete is not None:
sublime.set_timeout(self.on_complete, 3000)
Expand Down
7 changes: 4 additions & 3 deletions utils/javatar_news.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,21 @@


# Major.Minor.Patch
VERSION = "1.0.1"
VERSION = "1.0.2"
UPDATEFOR = "all"
NEWSID = 20

NEWS_TEMPLATE = '''\
Just install Javatar? Checkout JavatarDoc for Javatar information and guides. Link is located in README file.
Javatar 1.0.0 has been released!
Javatar 1.0.2 has been released!
These are updates and fixes for Javatar {VERSION}...
- Build logs and output consoles can be show in different groups
- Create section now select "Class" as default
- Fix invalid logic and proper traceback display
- Add option to show hidden files and directories
- Fix invalid logic and proper traceback display
- Fix user's packages path casing which might cause error when install on case-sensitive system
You can report/suggest any issue on Javatar repository. Link is already located in README file.
'''
Expand Down

0 comments on commit 6e8093e

Please sign in to comment.