Skip to content

Commit

Permalink
Nemo 0.20.0 (#216)
Browse files Browse the repository at this point in the history
nemo 0.20.0
  • Loading branch information
Hiroshiba authored Aug 11, 2024
1 parent 8dfb062 commit 998817f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions src/components/nemoDownloadModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import { NEMO_VERSION } from "../constants"
import DownloadModalSelecter from "./downloadModalSelecter"

type OsType = "Windows" | "Mac" | "Linux"
type ModeType = "GPU / CPU" | "CPU"
type ModeType = "GPU / CPU" | "CPU" | "CPU (Intel)" | "CPU (Apple)"

const modeAvailables: Record<OsType, ModeType[]> = {
Windows: ["GPU / CPU", "CPU"],
Mac: ["CPU"],
Mac: ["CPU (Intel)", "CPU (Apple)"],
Linux: ["GPU / CPU", "CPU"],
}

Expand All @@ -33,9 +33,13 @@ export const NemoDownloadModal: React.FC<{
},
},
Mac: {
CPU: {
"CPU (Intel)": {
url: `https://github.com/VOICEVOX/voicevox_nemo_engine/releases/download/${NEMO_VERSION}/voicevox_engine-macos-x64-${NEMO_VERSION}.vvpp`,
name: `VOICEVOX-CPU.Nemo.${NEMO_VERSION}.Mac.vvpp`,
name: `VOICEVOX-CPU-x64.Nemo.${NEMO_VERSION}.Mac.vvpp`,
},
"CPU (Apple)": {
url: `https://github.com/VOICEVOX/voicevox_nemo_engine/releases/download/${NEMO_VERSION}/voicevox_engine-macos-arm64-${NEMO_VERSION}.vvpp`,
name: `VOICEVOX-CPU-arm64.Nemo.${NEMO_VERSION}.Mac.vvpp`,
},
},
Linux: {
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CharacterKey } from "./types/dormitoryCharacter"

export const APP_VERSION = "0.20.0"
export const NEMO_VERSION = "0.14.0"
export const NEMO_VERSION = "0.20.0"

export const characterKeys: CharacterKey[] = [
"四国めたん",
Expand Down

0 comments on commit 998817f

Please sign in to comment.