From 2ab98e950c16f9e72a3855e0a73125df243b6ac6 Mon Sep 17 00:00:00 2001 From: L13 Date: Sun, 28 Jun 2020 18:42:36 +0200 Subject: [PATCH 1/2] - more snippets - changed display name --- CHANGELOG.md | 10 +++++++++- LICENCE.md | 2 +- README.md | 12 ++++++------ SNIPPETS.md | 4 ++++ package.json | 5 ++--- snippets/css.json | 4 ++++ 6 files changed, 26 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2759e3..adaebd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log -All notable changes to the "L13 CSS Snippets" extension will be documented in this file. +All notable changes to the "CSS Snippets" extension will be documented in this file. + +## [0.15.0] - 2020-07-05 + +### Added +- Added values `round` and `space` for `background-repeat`. + +### Changed +- Changed display name from `L13 CSS Snippets` to `CSS and SCSS Snippets`. ## [0.14.1] - 2020-04-19 diff --git a/LICENCE.md b/LICENCE.md index bb205f8..e8106af 100644 --- a/LICENCE.md +++ b/LICENCE.md @@ -1,4 +1,4 @@ -Copyright (c) 2019 L13|RARY +Copyright (c) 2019 - 2020 L13|RARY Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index facfc40..470ef5a 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,10 @@ -# L13 CSS and SCSS Snippets +# CSS and SCSS Snippets This extension contains property snippets for CSS and rule snippets for SCSS. -This extension is part of the [L13 Extension Pack](https://marketplace.visualstudio.com/items?itemName=L13RARY.l13-extension-pack). +## What's new in CSS Snippets 0.15.0 -## What's new in L13 CSS Snippets 0.14.1 - -- Fixed tab stop in `background-position: 0 0;` +- Added values `round` and `space` for `background-repeat`. ## Index @@ -145,4 +143,6 @@ Please have the following keyboard shortcuts always in mind, because these are f * `Tab` - Jump to the next tab stop of the snippet. * `DownArrow` - Move the caret down one line. * `Ctrl + Enter` - Insert line below, even if the caret is in the middle of a line. -* `Ctrl + Shift + Enter` - Insert line above, even if the caret is in the middle of a line. \ No newline at end of file +* `Ctrl + Shift + Enter` - Insert line above, even if the caret is in the middle of a line. + +> This extension is part of the [L13 Extension Pack](https://marketplace.visualstudio.com/items?itemName=L13RARY.l13-extension-pack). \ No newline at end of file diff --git a/SNIPPETS.md b/SNIPPETS.md index 7787acc..aa9fc3f 100644 --- a/SNIPPETS.md +++ b/SNIPPETS.md @@ -166,8 +166,12 @@ Complete list of all CSS and SCSS snippets for Visual Studio Code. The rules for | `bprt` | `background-position: right top;` | | `brnr` | `background-repeat: no-repeat;` | | `brr` | `background-repeat: repeat;` | +| `brr` | `background-repeat: round;` | +| `brrs` | `background-repeat: round space;` | | `brrx` | `background-repeat: repeat-x;` | | `brry` | `background-repeat: repeat-y;` | +| `brs` | `background-repeat: space;` | +| `brsr` | `background-repeat: space round;` | | `-bs2` | `-moz-background-size: ${1:0} ${0:0}; -o-background-size: ${1:0} ${0:0}; -webkit-background-size: ${1:0} ${0:0}; background-size: ${1:0} ${0:0};` | | `bs2` | `background-size: ${1:0} ${0:0};` | | `-bsa` | `-moz-background-size: auto; -o-background-size: auto; -webkit-background-size: auto; background-size: auto;` | diff --git a/package.json b/package.json index 24bd61f..9e71c8a 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,9 @@ { "name": "l13-css-snippets", - "displayName": "L13 CSS Snippets", + "displayName": "CSS and SCSS Snippets", "description": "Snippets for CSS and SCSS", - "version": "0.14.1", + "version": "0.15.0", "publisher": "L13RARY", - "preview": true, "license": "SEE LICENCE IN LICENCE.md", "homepage": "https://github.com/l13/vscode-css-snippets/blob/master/README.md", "repository": { diff --git a/snippets/css.json b/snippets/css.json index 228c244..aa6e26c 100644 --- a/snippets/css.json +++ b/snippets/css.json @@ -188,8 +188,12 @@ "background-repeat: no-repeat;": { "prefix": "brnr", "body": ["background-repeat: no-repeat;"], "description": "" }, "background-repeat: repeat;": { "prefix": "brr", "body": ["background-repeat: repeat;"], "description": "" }, + "background-repeat: round;": { "prefix": "brr", "body": ["background-repeat: round;"], "description": "" }, + "background-repeat: round space;": { "prefix": "brrs", "body": ["background-repeat: round space;"], "description": "" }, "background-repeat: repeat-x;": { "prefix": "brrx", "body": ["background-repeat: repeat-x;"], "description": "" }, "background-repeat: repeat-y;": { "prefix": "brry", "body": ["background-repeat: repeat-y;"], "description": "" }, + "background-repeat: space;": { "prefix": "brs", "body": ["background-repeat: space;"], "description": "" }, + "background-repeat: space round;": { "prefix": "brsr", "body": ["background-repeat: space round;"], "description": "" }, "-prefix-background-size: 0 0;": { "prefix": "-bs2", "body": ["-moz-background-size: ${1:0} ${0:0};", "-o-background-size: ${1:0} ${0:0};", "-webkit-background-size: ${1:0} ${0:0};", "background-size: ${1:0} ${0:0};"], "description": "" }, "background-size: 0 0;": { "prefix": "bs2", "body": ["background-size: ${1:0} ${0:0};"], "description": "" }, From eada0bfe4dde72e2c62e87e70c84074928491a61 Mon Sep 17 00:00:00 2001 From: L13 Date: Fri, 3 Jul 2020 20:05:33 +0200 Subject: [PATCH 2/2] - readme improvements --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 470ef5a..93f7876 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,12 @@ This extension contains property snippets for CSS and rule snippets for SCSS. ## Index -1. [Introduction](#Introduction) +1. [Introduction](#introduction) 1. [Shortcut rules for CSS snippets](#shortcut-rules-for-css-snippets) 1. [Shortcut rules for SCSS snippets](#shortcut-rules-for-scss-snippets) 1. [Recommended Settings](#recommended-settings) 1. [Recommended Keyboard Shortcuts](#recommended-keyboard-shortcuts) +1. [Recommended Extensions](#recommended-extensions) ## Introduction @@ -145,4 +146,6 @@ Please have the following keyboard shortcuts always in mind, because these are f * `Ctrl + Enter` - Insert line below, even if the caret is in the middle of a line. * `Ctrl + Shift + Enter` - Insert line above, even if the caret is in the middle of a line. -> This extension is part of the [L13 Extension Pack](https://marketplace.visualstudio.com/items?itemName=L13RARY.l13-extension-pack). \ No newline at end of file +## Recommended Extensions + +- [Extension Pack](https://marketplace.visualstudio.com/items?itemName=L13RARY.l13-extension-pack) \ No newline at end of file