Let your editor cheer you on while you code!

Compare changes

Choose any two refs to compare.

+9
CHANGELOG.md
··· 4 4 5 5 Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. 6 6 7 + ## [1.1.0] - 2018-11-20 8 + 9 + - Change some of the README wording 10 + - Add 12 new messages! 11 + 12 + ## [1.0.3] - 2018-11-19 13 + 14 + - Dink around with the README icon until it renders 15 + 7 16 ## [1.0.0] - 2018-11-19 8 17 9 18 - Initial release
+4 -4
README.md
··· 1 - ![Icon](https://github.com/puregarlic/vscode-cheer/blob/master/images/icon.png?raw=true) 1 + ![Icon](https://github.com/puregarlic/vscode-cheer/blob/master/images/icon-small.png?raw=true) 2 2 3 3 # Cheer! 4 4 ··· 6 6 7 7 ## Features 8 8 9 - Code editors can often be a source of negativity — undefined `this`, unsupported `that`, expected `x` to be of type `y` — it gets tiring after a while. And you can't always rely on your coworkers (if you even have any) for moral support in the moment, since they also have jobs to do. How is a programmer supposed to stay positive? 9 + Code editors can often be a source of negativity — undefined `this`, unsupported `that`, expected `x` to be of type `y` — all those red lines get tiring after a while. And you can't always rely on your coworkers (if you have any) for moral support in the moment, since they also have jobs to do. How is a programmer supposed to stay positive? 10 10 11 11 The solution: Cheer! 12 12 13 - Cheer displays a random positive message in the status bar whenever you save a file. That's it. That's all it does — give it a try, and feel better about your day and your work! 13 + **Cheer displays a random positive message in the status bar whenever you save a file.** That's it. That's all it does — give it a try, and feel better about your day and your work! 14 14 15 - Inspired by an Atom extension I used many years ago, and couldn't manage to track down again. 15 + Inspired by an Atom extension I used many years ago, but never managed to track down again. 16 16 17 17 ## Screenshots 18 18
images/icon-small.png

This is a binary file and will not be displayed.

images/icon.png

This is a binary file and will not be displayed.

+13 -2
messages.js
··· 11 11 'Heck yeah!', 12 12 'You look great!', 13 13 'Clever — I like it!', 14 - 'This project is really coming together.', 14 + 'This is really coming together.', 15 15 "I'm so proud of you!", 16 16 'This is really great work.', 17 - "I'm a huge fan of what you're doing!" 17 + "I'm a huge fan of what you're doing!", 18 + "Woah, that's awesome!", 19 + 'This is fantastic!', 20 + "Oh, that's super cool.", 21 + 'Slick!', 22 + 'This is amazing!', 23 + "You're truly amazing.", 24 + 'Game changing.', 25 + "You're a genius!", 26 + 'That was brilliant!', 27 + 'That was superb.', 28 + "You're going to change the world." 18 29 ] 19 30 20 31 // Create a random message closure
+1 -1
package-lock.json
··· 1 1 { 2 2 "name": "vscode-cheer", 3 - "version": "1.0.1", 3 + "version": "1.1.0", 4 4 "lockfileVersion": 1, 5 5 "requires": true, 6 6 "dependencies": {
+1 -1
package.json
··· 2 2 "name": "vscode-cheer", 3 3 "displayName": "Cheer", 4 4 "description": "Have your editor cheer you on while you code!", 5 - "version": "1.0.1", 5 + "version": "1.1.0", 6 6 "engines": { 7 7 "vscode": "^1.29.0" 8 8 },