タグ付けされた質問 「electron-builder」

5
電子ビルダーvs電子パッケージャー[終了]
休業。この質問には、より焦点を当てる必要があります。現在、回答を受け付けていません。 この質問を改善してみませんか?質問を更新して、この投稿を編集するだけで1つの問題に焦点を当てます。 2年前休業。 この質問を改善する 主な違いは何である電子・ビルダーおよび電子パッケージャが。両方のサンプルプロジェクトはありますか?スタンドアロンの.exeアプリケーションのビルドにはどちらが適していますか?

2
Electron Builderを使用してElectronアプリにアイコンを追加できない
Electronでアプリを作成し、Electron Builderでパッケージ化しようとしています。 リポジトリへのリンク node_modulesフォルダーが含まれていません:ここにリポジトリ 私のicon.icoを含むbuildという名前のフォルダーがあり、package.jsonは次のとおりです。 { "name": "attendant", "productName": "Attendant", "version": "0.1.0", "description": "A simple app to streamline web development by allowing you index.html to open on a live server in the default browser", "main": "main.js", "scripts": { "start": "electron .", "pack": "electron-builder --dir", "dist": "electron-builder" }, "devDependencies": { "electron": …

1
独自のサーバー(汎用プロバイダー)を使用したElectron自動アップデーターのセットアップ
FTP経由でアプリインストーラーをアップロードしたサーバーがあります。その名前はでquickmargo Setup 1.0.0.exeあり、それはで利用可能です https://quickmargo.pl/dist/download/quickmargo Setup 1.0.0.exe また、FTP経由でlatest.yml同じディレクトリにアップロードしました。 https://quickmargo.pl/dist/download/latest.yml index.jsのプロジェクトでは、 import { autoUpdater } from 'electron-updater' autoUpdater.setFeedURL('https://quickmargo.pl/dist/download'); autoUpdater.on('update-downloaded', () => { autoUpdater.quitAndInstall() }); autoUpdater.on('update-available', (ev, info) => { alert('Update required!'); }); app.on('ready', async () => { if (process.env.NODE_ENV === 'production') { await autoUpdater.checkForUpdates() } }); 私が持っているpackage.jsonで"version": "1.0.0",そしてbuild:{}私は持っています: "win": { "icon": "build/icons/icon.ico", …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.