Skip to content

Commit

Permalink
Activation script
Browse files Browse the repository at this point in the history
  • Loading branch information
dempfi committed Mar 25, 2019
1 parent dcda046 commit 8e4369d
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 10 deletions.
2 changes: 1 addition & 1 deletion activation.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def on_done(self, index):
activate_ui_theme(ui_theme)

def _quick_list_to_scheme(self, index):
return 'Packages/ayu/%s.tmTheme' % THEMES[index]
return 'Packages/ayu/%s.sublime-color-scheme' % THEMES[index]

def _quick_list_to_theme(self, index):
return '%s.sublime-theme' % THEMES[index]
Expand Down
34 changes: 34 additions & 0 deletions messages/5.0.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
**ayu theme for Sublime Text**
https://github.com/dempfi/ayu/releases

********************************************************************************
ayu from version 3.0.0 supports customization via A File Icon package
(https://github.com/ihodev/a-file-icon). Please install it for better expereince.
********************************************************************************

# Version 5.0.0

- 🎉 Refreshed UI theme:
- Improved editor/ui contrast when `ui_separators` options is on;
- Resized status bar;
- Support for Sublime's git indicators;
- Added missing accents on hover;
and other minor fixes

- 🎉 Refreshed syntax theme
- Fixed inconsistencies with Java, C, Haskell, TS, JS, GO, Python and Ruby;
- Updated markdown colour scheme
and other minor fixes

- Internal:
- New streamlined build system for streamlined contrinution and forks;
- Official `ayu-colors` npm package is now used as the source of the colours;

*******************************************************

Breaking changes:
- Removed UI font settings (`ui_font_size_small`, `ui_font_source_code_pro`, `ui_font_roboto_mono`)

*******************************************************

Version 5.0.2 contains fixes for activation script.
12 changes: 4 additions & 8 deletions messages/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,27 @@ settings (Preferences > Settings - User):
Light:
```json
"theme": "ayu-light.sublime-theme",
"color_scheme": "Packages/ayu/ayu-light.tmTheme",
"color_scheme": "Packages/ayu/ayu-light.sublime-color-scheme",
```

Mirage:
```json
"theme": "ayu-mirage.sublime-theme",
"color_scheme": "Packages/ayu/ayu-mirage.tmTheme",
"color_scheme": "Packages/ayu/ayu-mirage.sublime-color-scheme",
```

Dark:
```json
"theme": "ayu-dark.sublime-theme",
"color_scheme": "Packages/ayu/ayu-dark.tmTheme",
"color_scheme": "Packages/ayu/ayu-dark.sublime-color-scheme",
```

================================================================================

Ayu provides following options to customize the theme

```json
"ui_native_titlebar": true, // native titlebar on macOs
"ui_separator": true, // separators between panels
"ui_font_size_small": true, // smaller UI font size(sidebar, statusbar etc)
"ui_big_tabs": true, // increased tab height
"ui_fix_tab_labels": true, // to fix tab labels if they look not right
"ui_font_source_code_pro": true, // use [Source Code Pro](https://fonts.google.com/specimen/Source+Code+Pro) for UI
"ui_font_default": true, // use Sublime Text's default UI font
"ui_wide_scrollbars": true, // wider scrollbars
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ayu",
"version": "5.0.1",
"version": "5.0.2",
"description": "Sublime theme",
"repository": {
"type": "git",
Expand Down

0 comments on commit 8e4369d

Please sign in to comment.