From 8e4369da40b72403e60ab12e003d80779f4926a3 Mon Sep 17 00:00:00 2001 From: Ike Ku Date: Mon, 25 Mar 2019 17:57:06 +0200 Subject: [PATCH] Activation script --- activation.py | 2 +- messages/5.0.2.md | 34 ++++++++++++++++++++++++++++++++++ messages/install.md | 12 ++++-------- package.json | 2 +- 4 files changed, 40 insertions(+), 10 deletions(-) create mode 100644 messages/5.0.2.md diff --git a/activation.py b/activation.py index cb536161..839499c3 100644 --- a/activation.py +++ b/activation.py @@ -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] diff --git a/messages/5.0.2.md b/messages/5.0.2.md new file mode 100644 index 00000000..6adfb586 --- /dev/null +++ b/messages/5.0.2.md @@ -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. diff --git a/messages/install.md b/messages/install.md index 524c30ef..e616ae4d 100644 --- a/messages/install.md +++ b/messages/install.md @@ -15,19 +15,19 @@ 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", ``` ================================================================================ @@ -35,11 +35,7 @@ Dark: 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 ``` diff --git a/package.json b/package.json index 23996ec7..6c06560c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ayu", - "version": "5.0.1", + "version": "5.0.2", "description": "Sublime theme", "repository": { "type": "git",