diff --git a/README.md b/README.md
index 24dd1da..7efb1fb 100644
--- a/README.md
+++ b/README.md
@@ -1,52 +1,7 @@
-# Electron Blank Application
+
-This is the blank application for your electron project
-
-## Requirements
-
-To use Electron you must have installed node js. For windows it is available on its [official website](https://nodejs.org/en/), for linux you can download the `node` packet from your packet manager
-
-## Installation
-
-```sh
-git clone https://github.com/krypt0nn/electron-blank-app ./my-app
-cd my-app
-npm i
-```
-
-`git clone` will download a blank bundle for your project and save it in the `./my-app` directory *(`my-app` folder in the current opened in the console directory)*
-
-`cd my-app` will move you to this downloaded bundle
-
-`npm i` will install requirements
-
-## Set up
-
-In the `package.json` you should change these parameters:
-
-* name - your project name
-* version
-* description
-* keywords - your project keywords
-* author
-
-## Development
-
-Directory `src` stores your [TypeScript](https://typescriptlang.org) and [SASS](https://sass-lang.com) code. When you run `npm run dev` command in console - they will compile to the js and css files inside `public` directory
-
-In the `public` stored information about your application - images it uses, html pages and something you want to use. Other directories will not be available in the compiled binaries
-
-Default application page is `public/html/index.html`
-
-To run your application - use `npm start` command. It will automatically run `npm run dev`
-
-To build binaries run:
-
-* For Windows: `npm run build:win`
-* For Linux: `npm run build:linux`
-
-All binaries will appear in the `dist` directory
+### Launcher is still in development and is not working properly. Please, wait for future updates
-Author: [Nikita Podvirnyy](https://vk.com/technomindlp)
\ No newline at end of file
+### Please, try to use "An Anime Game" phrase instead of the real game name to avoid search engines parsing
\ No newline at end of file
diff --git a/logo.png b/logo.png
new file mode 100644
index 0000000..870a476
Binary files /dev/null and b/logo.png differ
diff --git a/package.json b/package.json
index 96ca640..f9e8ac5 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
- "name": "genshin-impact-linux-launcher",
+ "name": "an-anime-game-linux-launcher",
"version": "0.1.0",
- "description": "Genshin Impact Linux Launcher",
+ "description": "An Anime Game Linux Launcher",
"author": "Nikita Podvirnyy",
"license": "GPL-3.0",
"main": "entry.js",
@@ -12,9 +12,9 @@
"build:linux": "npm run dev && electron-builder --linux"
},
"build": {
- "productName": "Genshin Impact Linux Launcher",
+ "productName": "An Anime Game Linux Launcher",
"artifactName": "${productName}-${os}-${arch}-${version}.${ext}",
- "appId": "com.krypt0nn.genshin-impact-linux-launcher",
+ "appId": "com.krypt0nn.an-anime-game-linux-launcher",
"directories": {
"output": "dist"
},