Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dfb7acba2f | |||
| f4c9504c1a |
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "minecraft-music-quiz-installer",
|
"name": "minecraft-music-quiz-installer",
|
||||||
"version": "0.3.6",
|
"version": "0.3.8",
|
||||||
"description": "마인크래프트 음악퀴즈 간편설치기 + 관리 사이트",
|
"description": "마인크래프트 음악퀴즈 간편설치기 + 관리 사이트",
|
||||||
"main": "dist/installer/main.js",
|
"main": "dist/installer/main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -8,26 +8,45 @@
|
|||||||
// build/ 폴더는 electron-builder 가 exe 아이콘으로만 쓰고 asar 에
|
// build/ 폴더는 electron-builder 가 exe 아이콘으로만 쓰고 asar 에
|
||||||
// 포함되지 않아서, 런타임에 그 파일을 읽을 수 없다. 대신 빌드(개발) 시점에
|
// 포함되지 않아서, 런타임에 그 파일을 읽을 수 없다. 대신 빌드(개발) 시점에
|
||||||
// 이 스크립트를 돌려 PNG 를 소스 코드에 인라인한다.
|
// 이 스크립트를 돌려 PNG 를 소스 코드에 인라인한다.
|
||||||
|
//
|
||||||
|
// 마인크래프트 런처의 사용자 지정 설치 아이콘 규격은 "128x128 PNG" 로
|
||||||
|
// 고정돼 있다(https://minecraft.wiki/w/Launcher). 이 규격과 다른 크기
|
||||||
|
// (예: 원본 256x256)를 주면 런처가 아이콘을 무시하고 기본 아이콘(화로)으로
|
||||||
|
// 폴백한다. 그래서 build/icon.png 를 정확히 128x128 로 리사이즈해서 박는다.
|
||||||
|
// exe 아이콘(build/icon.ico, build/icon.png)은 256x256 그대로 둔다.
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
const fs = require('node:fs')
|
const fs = require('node:fs')
|
||||||
const path = require('node:path')
|
const path = require('node:path')
|
||||||
|
const sharp = require('sharp')
|
||||||
|
|
||||||
const repoRoot = path.resolve(__dirname, '..')
|
const repoRoot = path.resolve(__dirname, '..')
|
||||||
const pngPath = path.join(repoRoot, 'build', 'icon.png')
|
const pngPath = path.join(repoRoot, 'build', 'icon.png')
|
||||||
const tsPath = path.join(repoRoot, 'src', 'installer', 'launcherIcon.ts')
|
const tsPath = path.join(repoRoot, 'src', 'installer', 'launcherIcon.ts')
|
||||||
|
|
||||||
const buf = fs.readFileSync(pngPath)
|
const ICON_SIZE = 128
|
||||||
const b64 = buf.toString('base64')
|
|
||||||
|
|
||||||
const ts = `// AUTO-GENERATED by scripts/build-launcher-icon.cjs from build/icon.png.
|
async function main() {
|
||||||
|
const buf = await sharp(pngPath)
|
||||||
|
.resize(ICON_SIZE, ICON_SIZE, { fit: 'cover' })
|
||||||
|
.png({ compressionLevel: 9 })
|
||||||
|
.toBuffer()
|
||||||
|
const b64 = buf.toString('base64')
|
||||||
|
|
||||||
|
const ts = `// AUTO-GENERATED by scripts/build-launcher-icon.cjs from build/icon.png.
|
||||||
// 마인크래프트 런처의 "설치 설정" 화면에서 보이는 프로필 아이콘. exe 와 같은
|
// 마인크래프트 런처의 "설치 설정" 화면에서 보이는 프로필 아이콘. exe 와 같은
|
||||||
// 이미지를 쓰기 위해 빌드 시점에 PNG 를 data URL 로 인라인한다. 변경하려면
|
// 이미지를 ${ICON_SIZE}x${ICON_SIZE} 로 줄여 빌드 시점에 data URL 로 인라인한다.
|
||||||
// build/icon.png 교체 후 \`node scripts/build-launcher-icon.cjs\` 재실행.
|
// 변경하려면 build/icon.png 교체 후 \`node scripts/build-launcher-icon.cjs\` 재실행.
|
||||||
export const LAUNCHER_PROFILE_ICON =
|
export const LAUNCHER_PROFILE_ICON =
|
||||||
'data:image/png;base64,${b64}'
|
'data:image/png;base64,${b64}'
|
||||||
`
|
`
|
||||||
|
|
||||||
fs.writeFileSync(tsPath, ts, 'utf8')
|
fs.writeFileSync(tsPath, ts, 'utf8')
|
||||||
console.log(`wrote ${tsPath} (${buf.length} bytes PNG → ${b64.length} chars base64)`)
|
console.log(`wrote ${tsPath} (${ICON_SIZE}x${ICON_SIZE}, ${buf.length} bytes PNG → ${b64.length} chars base64)`)
|
||||||
|
}
|
||||||
|
|
||||||
|
main().catch((err) => {
|
||||||
|
console.error(err)
|
||||||
|
process.exit(1)
|
||||||
|
})
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user