1
0
mirror of https://github.com/BoostIo/Boostnote synced 2026-01-24 06:07:14 +00:00

- StylusでコンパイルされたCSSをCachingする(ロディングが短くなる)

- Planet name changeのときにエラーハンドリング追加 + Bug fix
- TeamのMemberを編集する場合、自分を編集することはできない
- FinderにMarkdownのリンクがちゃんと外部に飛ぶように
- Tray iconがちゃんと表示
- ArticleDetailのCodeアイコンがちゃんと表示されない
This commit is contained in:
Rokt33r
2015-08-30 05:30:54 +09:00
parent de6d6b692e
commit 3ab423d695
15 changed files with 72 additions and 33 deletions

View File

@@ -29,14 +29,16 @@
}
#loadingCover img{
display: block;
margin: 0 auto;
margin: 75px auto 5px;
width: 160px;
height: 160px;
}
#loadingCover .message{
font-size: 45px;
font-size: 30px;
text-align: center;
line-height: 1.6;
font-weight: 200;
color: #404849;
font-weight: 100;
color: #888;
}
</style>
</head>
@@ -88,7 +90,7 @@
var version = require('remote').getGlobal('version')
document.title = 'Boost ' + ((version == null || version.length === 0) ? 'DEV version' : 'v' + version)
require('electron-stylus')(__dirname + '/../styles/main/index.styl')
require('../electron-stylus')(__dirname + '/../styles/main/index.styl', 'mainCss')
require('node-jsx').install({ harmony: true, extension: '.jsx' })
require('./index.jsx')
</script>