Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix erro vscode non-existent github and others #3

Merged
merged 3 commits into from
Jun 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

If you are a git user, you can install the theme and keep up to date by cloning the repo:

$ git clone https://github.com/rocketseat/omni-vscode.git ~/.vscode/extensions/theme-omni
$ git clone https://github.com/getomni/vscode-omni.git ~/.vscode/extensions/theme-omni
$ cd ~/.vscode/extensions/theme-omni
$ npm install
$ npm run build
Expand Down
27 changes: 23 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
<h1 align="center">Omni<h1>
<h1 align="center">
<img src="./icon.png" alt="Omni"><br />
Omni
</h1>

<p align="center">
Just a preview. <br/>
<img src="https://i.imgur.com/vUQNEXV.png"/>
</p>
Just a preview.
<img src="https://i.imgur.com/vUQNEXV.png" alt="preview"/></p>

# Overview

A dark theme from Visual Studio Code

- [How to install?](INSTALL.md)
- [I need a help](#need-help)
- [License](#license)

# Need help

If you need help with Omni, feel free to open an issue with a description of the problem you're facing. Or, if you prefer, you can chat with us on our [Discord Community](https://discordapp.com/invite/gCRAFhc).

# License

MIT © [Omni Theme](https://github.com/getomni)
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
],
"repository": {
"type": "git",
"url": "https://github.com/rocketseat/omni-vscode.git"
"url": "https://github.com/getomni/vscode-omni.git"
},
"bugs": {
"url": "https://github.com/rocketseat/omni-vscode/issues"
"url": "https://github.com/getomni/vscode-omni/issues"
},
"engines": {
"vscode": "^1.13.0"
Expand Down Expand Up @@ -61,4 +61,4 @@
"publisherDisplayName": "Omni",
"publisherId": "fbb3d024-f8f2-460c-bdb5-99552f6d8c4b"
}
}
}
4 changes: 2 additions & 2 deletions scripts/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const { Type, Schema, load } = require('js-yaml');

/**
* @typedef {Object} Theme - Parsed theme object.
* @prop {Record<'base'|'ansi'|'brightOther'|'other', string[]>} dracula - Dracula color variables.
* @prop {Record<'base'|'ansi'|'brightOther'|'other', string[]>} omni - Omni color variables.
* @prop {Record<string, string|null|undefined>} colors - VSCode color mapping.
* @prop {TokenColor[]} tokenColors - Textmate token colors.
*/
Expand All @@ -31,7 +31,7 @@ const schema = Schema.create([withAlphaType]);

module.exports = async () => {
const yamlFile = await readFile(
join(__dirname, '..', 'src', 'dracula.yml'),
join(__dirname, '..', 'src', 'omni.yml'),
'utf-8'
);

Expand Down
File renamed without changes.