1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-16 03:06:27 +00:00

version 0.2.10

- Hotkeyの設定機能
- Stylus refactor
This commit is contained in:
Rokt33r
2015-09-02 01:02:04 +09:00
parent e317075815
commit c6307e4ad3
12 changed files with 219 additions and 65 deletions

View File

@@ -87,10 +87,11 @@
</script>
<script src="../ace/src-min/ace.js"></script>
<script>
var version = require('remote').getGlobal('version')
var version = require('remote').require('app').getVersion()
global.version = version
document.title = 'Boost ' + ((version == null || version.length === 0) ? 'DEV version' : 'v' + version)
require('../electron-stylus')(__dirname + '/../styles/main/index.styl', 'mainCss')
// require('../electron-stylus')(__dirname + '/../styles/main/index.styl')
require('node-jsx').install({ harmony: true, extension: '.jsx' })
require('./index.jsx')
</script>