Skip to content

Commit

Permalink
vvppアイコン・vvprojアイコン追加 (VOICEVOX#1155)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba authored Jan 30, 2023
1 parent b043c5b commit b32b979
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Binary file added build/icons/vvpp.icns
Binary file not shown.
Binary file added build/icons/vvpp.ico
Binary file not shown.
Binary file added build/icons/vvproj.icns
Binary file not shown.
Binary file added build/icons/vvproj.ico
Binary file not shown.
5 changes: 5 additions & 0 deletions vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ const LINUX_EXECUTABLE_NAME = process.env.LINUX_EXECUTABLE_NAME;
// ${productName}-${version}.${ext}
const MACOS_ARTIFACT_NAME = process.env.MACOS_ARTIFACT_NAME;

const isMac = process.platform === "darwin";

module.exports = {
configureWebpack: {
devtool: "source-map",
Expand All @@ -32,18 +34,21 @@ module.exports = {
name: "VOICEVOX Project file",
description: "VOICEVOX Project file",
role: "Editor",
icon: "icons/vvproj." + (isMac ? "icns" : "ico"),
},
{
ext: "vvpp",
name: "VOICEVOX Plugin package",
description: "VOICEVOX Plugin package",
role: "Editor",
icon: "icons/vvpp." + (isMac ? "icns" : "ico"),
},
{
ext: "vvppp",
name: "VOICEVOX Plugin package (part)",
description: "VOICEVOX Plugin package (part)",
role: "Editor",
icon: "icons/vvpp." + (isMac ? "icns" : "ico"),
},
],
extraFiles: [
Expand Down

0 comments on commit b32b979

Please sign in to comment.