Skip to content

Commit

Permalink
fix: misspelling on theme name
Browse files Browse the repository at this point in the history
BREAKING CHANGE: renamed theme to `Meetio Theme High Contrast.sublime-theme` closes #52
  • Loading branch information
mauroreisvieira committed May 28, 2021
1 parent 7167152 commit 4adc5aa
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Default.sublime-commands
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
}
},
{
"caption": "Meetio Theme: Hight Contrast Configuration",
"caption": "Meetio Theme: High Contrast Configuration",
"command": "edit_settings",
"args": {
"base_file": "${packages}/Meetio Theme/Meetio Theme - Hight Contrast.sublime-theme",
"base_file": "${packages}/Meetio Theme/Meetio Theme High Contrast.sublime-theme",
"default": "{\n \"variables\": {\n\t\t$0\n\t}\n}\n"
}
}
Expand Down
4 changes: 2 additions & 2 deletions Main.sublime-menu
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
}
},
{
"caption": "Hight Contrast",
"caption": "High Contrast",
"command": "edit_settings",
"args": {
"base_file": "${packages}/Meetio Theme/Meetio Theme - Hight Contrast.sublime-theme",
"base_file": "${packages}/Meetio Theme/Meetio Theme High Contrast.sublime-theme",
"default": "{\n \"variables\": {\n\t\t$0\n\t}\n}\n"
}
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion customization.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def input(self, args):
def is_visible(self):
s = sublime.load_settings('Preferences.sublime-settings')
theme = s.get('theme')
return theme in ['Meetio Theme.sublime-theme', 'Meetio Theme Hight Contrast.sublime-theme']
return theme in ['Meetio Theme.sublime-theme', 'Meetio Theme High Contrast.sublime-theme']

class MeetioSettingsInputHandler(sublime_plugin.ListInputHandler):
def name(self):
Expand Down
2 changes: 1 addition & 1 deletion messages/6.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

📦 **FEATURES**

- Added new theme: `Meetio Theme Hight Contrast`.
- Added new theme: `Meetio Theme High Contrast`.
- Added new option in `Command Pallete` to customize your Meetio settings: `Meetio Theme: Edit Settings`, thanks [Terminal](https://github.com/TheSecEng).

👌 **IMPROVEMENTES**
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ import { generateTheme, getThemeHidden, getThemeDefault, getThemeHighContrast }
{
settings: getThemeHighContrast(),
output: {
filename: 'Meetio Theme Hight Contrast',
filename: 'Meetio Theme High Contrast',
},
},
].map((theme: Theme) => {
Expand Down

0 comments on commit 4adc5aa

Please sign in to comment.