Skip to content

Commit

Permalink
feat: add version 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroreisvieira committed Mar 1, 2019
1 parent 9ff081a commit 8e7269a
Show file tree
Hide file tree
Showing 6 changed files with 114 additions and 5 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project
adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

---

<a name="1.6.0"></a>
## [1.6.0](https://github.com/mauroreisvieira/meetio/compare/v1.5.1...v1.6.0) (2019-02-24)

### FEATURES
* Add syntax Improvements for: `HTML`, `CSS`, `JavaScript`, `PHP` & `Markdown` and others.
* Add customize colors for `diff.deleted`, `diff.deleted.char`, `diff.inserted`, and `diff.inserted.char` **(build 3193)**.

###BUGFIXES
* Fix background color of `quick_panel`.

---

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ Active the option `meetio_tabs_selected_border` in `Meetio: Edit Settings` and p
"line_padding_bottom" : 7,
"line_padding_top" : 7,
"overlay_scroll_bars" : "enabled",
"highlight_modified_tabs" : "enabled"
"highlight_modified_tabs" : "enabled",
"font_face" : "Fira Code"
}
```
6 changes: 5 additions & 1 deletion examples/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,18 @@ class Animal {
constructor(name, age) {
this.name = name;
this.age = age;
this.options = {
age: this.age,
name: this.name,
}

for (let i = 0; i < this.age; i++) {
console.log('Counter:' + i);
}
}

public move(meters: Number): any {
if (meters && typeof meters === "number") {
if (typeof meters === "number") {
console.log(this.name + " moved " + meters + "meters.");
}
return meters;
Expand Down
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"1.4.0": "messages/1.4.0.md",
"1.4.1": "messages/1.4.1.md",
"1.5.0": "messages/1.5.0.md",
"1.5.1": "messages/1.5.1.md"
"1.5.1": "messages/1.5.1.md",
"1.6.0": "messages/1.6.0.md"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Meetio",
"version": "1.5.1",
"version": "1.6.0",
"description": "Meetio is the most powerful theme for Sublime Text 3 with different Scheme variations only for 3176+ version.",
"bugs": {
"url": "https://github.com/mauroreisvieira/meetio/issues"
Expand Down
90 changes: 90 additions & 0 deletions schemes/Meetio.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,96 @@
"tags_options": "stippled_underline"
},
"rules": [
{
"scope": "col_00000015",
"foreground": "#AAAAAAFF",
"background": "#00000015"
},
{
"scope": "col_6772E4FF",
"foreground": "#FBFBFBFF",
"background": "#6772E4FF"
},
{
"scope": "col_607A86FF",
"foreground": "#F3F3F3FF",
"background": "#607A86FF"
},
{
"scope": "col_80CBC4FF",
"foreground": "#333333FF",
"background": "#80CBC4FF"
},
{
"scope": "col_455A64FF",
"foreground": "#D4D4D4FF",
"background": "#455A64FF"
},
{
"scope": "col_FFEEEEFF",
"foreground": "#737373FF",
"background": "#FFEEEEFF"
},
{
"scope": "col_000000FF",
"foreground": "#808080FF",
"background": "#000000FF"
},
{
"scope": "col_F1F1F1FF",
"foreground": "#717171FF",
"background": "#F1F1F1FF"
},
{
"scope": "col_00EEAAFF",
"foreground": "#1F1F1FFF",
"background": "#00EEAAFF"
},
{
"scope": "col_D26911FF",
"foreground": "#FEFEFEFF",
"background": "#D26911FF"
},
{
"scope": "col_FAFAFAFF",
"foreground": "#7A7A7AFF",
"background": "#FAFAFAFF"
},
{
"scope": "col_00000026",
"foreground": "#A7A7A7FF",
"background": "#00000026"
},
{
"scope": "col_CCCCCCFF",
"foreground": "#4C4C4CFF",
"background": "#CCCCCCFF"
},
{
"scope": "col_FFFFFFFF",
"foreground": "#7F7F7FFF",
"background": "#FFFFFFFF"
},
{
"scope": "col_DDDDDDFF",
"foreground": "#5D5D5DFF",
"background": "#DDDDDDFF"
},
{
"scope": "col_gutter",
"foreground": "#ffffff",
"background": "#000000"
},
{
"scope": "col_333333FF",
"foreground": "#B3B3B3FF",
"background": "#333333FF"
},
{
"scope": "col_D95468FF",
"foreground": "#FEFEFEFF",
"background": "#D95468FF"
},
{
"name": "[CSS] String",
"scope": "source.css string",
Expand Down

0 comments on commit 8e7269a

Please sign in to comment.