From f869d88bbc2e3bc4314cb0a351f8cd0a282bf990 Mon Sep 17 00:00:00 2001 From: Kylart Date: Wed, 23 Nov 2016 16:27:45 +0900 Subject: [PATCH] Updated README Added a minimum size to the window. --- .idea/workspace.xml | 370 +++++++++++++++++++------------------------- README.md | 40 +++-- main.js | 16 +- 3 files changed, 193 insertions(+), 233 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index a472afe..a009e6e 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,9 +1,10 @@ - + - + + @@ -25,94 +26,61 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -216,52 +184,6 @@ \ No newline at end of file diff --git a/README.md b/README.md index 3e317da..28e5567 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,17 @@ -# Anime-downloader - TODO: Find a real name. -This is a software for otakus that are tired of not batched torrent. -More features are to come. +# _KawAnime_ + +Disclaimer : This is a software for otaku/anime-fans. Do not try if you're not prepared. + +This software allows one to: +* Be aware of the latest anime release. +* Download a anime via Torrent (one would need a torrent client for the moment). +* Get information from any anime (those come from myanimelist.net). +* More features are to come + +This is a software developped with Electron framework. It is still in development. + ## Installation -Be sure that you have Npm installed. You can find how to install npm -[here](https://docs.npmjs.com/cli/install). +Be sure that you have Npm installed. You can find how to install npm[here](https://docs.npmjs.com/cli/install). ``` git clone https://github.com/Kylart/KawAnime ``` @@ -21,11 +28,22 @@ npm install && npm start 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request. -## History -TODO: Write history - -## Credits -TODO: Write credits +## TODOs +* Make a better design. +* Make _KawAnime_ completlely responsive +* Optimize main index page. +* Make a torrent client inside _KawAnime_. ## License MIT License + +Copyright (c) Kylart + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + diff --git a/main.js b/main.js index 122512a..1819f12 100644 --- a/main.js +++ b/main.js @@ -18,9 +18,11 @@ function createWindow () { height: 720, titleBarStyle: 'hidden', show: false, - title: 'KawAnime' + title: 'KawAnime', // maximizable: false, - // resizable: false + // resizable: false, + minHeight: 720, + minWidth: 1200 }) // and load the index.html of the app. @@ -88,11 +90,11 @@ exports.getInfoPage = () => { } exports.getMainPage = () => { - mainWindow.loadURL(url.format({ - pathname: path.join(__dirname, 'index.html'), - protocol: 'file:', - slashes: true - })) + mainWindow.loadURL(url.format({ + pathname: path.join(__dirname, 'index.html'), + protocol: 'file:', + slashes: true + })) }