Skip to content

Commit

Permalink
表記ゆれ等 微修正
Browse files Browse the repository at this point in the history
  • Loading branch information
hantabaru1014 committed May 22, 2020
1 parent 7923c65 commit ae908fa
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 20 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# マシュマロ配信支援ツール(仮)
[![動作デモ](https://drive.google.com/uc?id=1RtjFXpPMXOGBBnpf1xxfLRBn6WLj85d1)](https://www.youtube.com/watch?v=QxS2tCDDrvk)
マシュマロ配信で,ダウンロードフォルダがマシュマロの画像で埋まる・画像を扱うのが面倒といった問題を軽減してくれるツールです。
[YouTube - 動作デモ](https://www.youtube.com/watch?v=QxS2tCDDrvk)
マシュマロ配信で,ダウンロードフォルダがマシュマロの画像で埋まる・画像を管理するのが面倒といった問題を軽減してくれるツールです。
やることは,このソフト上で行われるダウンロードを問答無用で指定のファイルにDLするだけです。

# ダウンロード
Expand All @@ -12,7 +13,6 @@ v0.1 - [直接ダウンロード](https://github.com/hantabaru1014/marshmallow-o
2. 「画像ダウンロード」を押すと,このフォルダにdl-marshmallow.pngができるので,それをOBS等で表示してください。
3. あとは,「画像ダウンロード」をするたびに,同じファイルに上書きされます。OBSは画像が更新されると自動でOBS上でも更新されるのでいちいちOBSに画像を入れるということをしなくても良くなるはずです。


# 設定
左上のメニューの[File][Settings]を押すと,設定ファイルが開きます。それぞれの項目の意味は以下のとおりです。

Expand Down
18 changes: 8 additions & 10 deletions main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// Modules to control application life and create native browser window
const {app, BrowserWindow, Menu, shell} = require('electron')
const path = require('path')
const windowStateKeeper = require('electron-window-state');
Expand All @@ -20,7 +19,7 @@ const menuTemplate = [
submenu: [
isMac ? { role: 'close' } : { role: 'quit' },
{
label: 'settings',
label: 'Settings',
click: () => {
shell.openPath(store.path);
}
Expand All @@ -29,12 +28,15 @@ const menuTemplate = [
},
{role: 'viewMenu'},
{
label: 'help',
label: 'Help',
submenu: [
{
label: 'about',
label: 'Version '+app.getVersion()
},
{
label: 'About',
click: () => {
shell.openExternal('https://github.com/hantabaru1014/marshmallow-obs-assistant.git');
shell.openExternal('https://github.com/hantabaru1014/marshmallow-obs-assistant');
}
}
]
Expand All @@ -61,8 +63,7 @@ function createWindow () {
})
mainWindowState.manage(mainWindow);

// and load the index.html of the app.
//mainWindow.loadFile('index.html')
// open marshmallow
mainWindow.loadURL(store.get('url'));

// Open the DevTools.
Expand Down Expand Up @@ -102,6 +103,3 @@ app.on('window-all-closed', function () {
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') app.quit()
})

// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "marshmallow-obs-assistant",
"version": "0.1.0",
"version": "0.1.2",
"description": "",
"main": "main.js",
"scripts": {
Expand Down
6 changes: 0 additions & 6 deletions renderer.js

This file was deleted.

1 change: 0 additions & 1 deletion static/ReadMe.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

マシュマロ配信支援ツール(仮)
v 0.1

作者:[email protected] (Twitter: @hantabaru1014)
URL:https://github.com/hantabaru1014/marshmallow-obs-assistant.git
Expand Down

0 comments on commit ae908fa

Please sign in to comment.