ajout de la version 0.1.0

Première version de Comunic desktop
This commit is contained in:
ertherod 2018-05-08 16:58:59 +02:00
commit 4e8f7b234e
4 changed files with 38 additions and 0 deletions

7
README.md Normal file
View File

@ -0,0 +1,7 @@
Vous devez avoir installer node.js sur votre ordinateur.
Il faut executer la commande :
npm i --save electron
dans un terminal pour pouvoir l'utiliser,
puis ouvrir un terminal ou une console dans le dossier et taper:
electron index.js

BIN
v0.1.0/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

17
v0.1.0/index.js Normal file
View File

@ -0,0 +1,17 @@
const electron = require('electron');
const app = electron.app;
const BrowserWindow = electron.BrowserWindow;
let mainWindow
function createWindow() {
mainWindow = new BrowserWindow({icon:'icon.png'});
mainWindow.setIco
mainWindow.loadURL('http://beta.communiquons.org/login');
mainWindow.on('closed', () =>{
mainWindow = null;
});
}
app.on('ready', createWindow);

14
v0.1.0/package.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "communic-desktop",
"version": "0.1.0",
"description": "A client-desktop for communiquons.org",
"main": "index.js",
"scripts": {
"test": "electron ."
},
"author": "Team dev communic",
"license": "GPL-3.0",
"dependencies": {
"electron": "^2.0.0"
}
}