Updated README

This commit is contained in:
Devine Lu Linvega 2017-09-19 11:20:03 +13:00
parent f10671fec6
commit 67553ec9f5
3 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Marabu
# Ronin
Marabu is a simple open-source graphic design tool.
Ronin is a simple open-source graphic design tool.
<img src='https://raw.githubusercontent.com/hundredrabbits/Ronin/master/PREVIEW.jpg' width="600"/>

View File

@ -6,7 +6,7 @@ let win
app.on('ready', () =>
{
win = new BrowserWindow({width: 930, height: 540, backgroundColor:"#000", frame:false, resizable:false, autoHideMenuBar: true, icon: __dirname + '/icon.ico'})
win = new BrowserWindow({width: 930, height: 540, backgroundColor:"#000", frame:false, resizable:true, autoHideMenuBar: true, icon: __dirname + '/icon.ico'})
win.loadURL(`file://${__dirname}/sources/index.html`)

View File

@ -116,7 +116,8 @@ function Ronin()
this.filename = "default.rin";
this.load = function readTextFile(name)
{
{
return;
this.filename = name;
var file = "presets/"+name+'?'+new Date().getTime();
var rawFile = new XMLHttpRequest();