Skip to content

Commit 8e4369d

Browse files
committed
Activation script
1 parent dcda046 commit 8e4369d

File tree

4 files changed

+40
-10
lines changed

4 files changed

+40
-10
lines changed

activation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def on_done(self, index):
8484
activate_ui_theme(ui_theme)
8585

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

8989
def _quick_list_to_theme(self, index):
9090
return '%s.sublime-theme' % THEMES[index]

messages/5.0.2.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
**ayu theme for Sublime Text**
2+
https://github.com/dempfi/ayu/releases
3+
4+
********************************************************************************
5+
ayu from version 3.0.0 supports customization via A File Icon package
6+
(https://github.com/ihodev/a-file-icon). Please install it for better expereince.
7+
********************************************************************************
8+
9+
# Version 5.0.0
10+
11+
- 🎉 Refreshed UI theme:
12+
- Improved editor/ui contrast when `ui_separators` options is on;
13+
- Resized status bar;
14+
- Support for Sublime's git indicators;
15+
- Added missing accents on hover;
16+
and other minor fixes
17+
18+
- 🎉 Refreshed syntax theme
19+
- Fixed inconsistencies with Java, C, Haskell, TS, JS, GO, Python and Ruby;
20+
- Updated markdown colour scheme
21+
and other minor fixes
22+
23+
- Internal:
24+
- New streamlined build system for streamlined contrinution and forks;
25+
- Official `ayu-colors` npm package is now used as the source of the colours;
26+
27+
*******************************************************
28+
29+
Breaking changes:
30+
- Removed UI font settings (`ui_font_size_small`, `ui_font_source_code_pro`, `ui_font_roboto_mono`)
31+
32+
*******************************************************
33+
34+
Version 5.0.2 contains fixes for activation script.

messages/install.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,27 @@ settings (Preferences > Settings - User):
1515
Light:
1616
```json
1717
"theme": "ayu-light.sublime-theme",
18-
"color_scheme": "Packages/ayu/ayu-light.tmTheme",
18+
"color_scheme": "Packages/ayu/ayu-light.sublime-color-scheme",
1919
```
2020

2121
Mirage:
2222
```json
2323
"theme": "ayu-mirage.sublime-theme",
24-
"color_scheme": "Packages/ayu/ayu-mirage.tmTheme",
24+
"color_scheme": "Packages/ayu/ayu-mirage.sublime-color-scheme",
2525
```
2626

2727
Dark:
2828
```json
2929
"theme": "ayu-dark.sublime-theme",
30-
"color_scheme": "Packages/ayu/ayu-dark.tmTheme",
30+
"color_scheme": "Packages/ayu/ayu-dark.sublime-color-scheme",
3131
```
3232

3333
================================================================================
3434

3535
Ayu provides following options to customize the theme
3636

3737
```json
38+
"ui_native_titlebar": true, // native titlebar on macOs
3839
"ui_separator": true, // separators between panels
39-
"ui_font_size_small": true, // smaller UI font size(sidebar, statusbar etc)
40-
"ui_big_tabs": true, // increased tab height
41-
"ui_fix_tab_labels": true, // to fix tab labels if they look not right
42-
"ui_font_source_code_pro": true, // use [Source Code Pro](https://fonts.google.com/specimen/Source+Code+Pro) for UI
43-
"ui_font_default": true, // use Sublime Text's default UI font
4440
"ui_wide_scrollbars": true, // wider scrollbars
4541
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ayu",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"description": "Sublime theme",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)