Skip to content

Commit

Permalink
chore(deploy): Release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 6, 2022
1 parent b45a6db commit 7e47dad
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 11 deletions.
5 changes: 0 additions & 5 deletions .changeset/curly-oranges-attack.md

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# [](https://github.com/electron-userland/electron-builder/compare/v23.3.0...v) (2022-07-06)


### Features

* Add installDir property for NsisUpdater ([#6907](https://github.com/electron-userland/electron-builder/issues/6907)) ([e7f2867](https://github.com/electron-userland/electron-builder/commit/e7f286776643823f9c906738aade1d71eb1bdd9c))



# [](https://github.com/electron-userland/electron-builder/compare/v23.2.0...v) (2022-07-04)


Expand Down
9 changes: 5 additions & 4 deletions docs/api/electron-builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -1599,9 +1599,6 @@ return path.join(target.outDir, <code>__${target.name}-${getArtifactArchName(arc
<p>Currently false to prevent breaking the current API, but it should be changed to default true at some point that breaking changes are allowed.</p>
</li>
<li>
<p><code id="AppUpdater-installDirectory">installDirectory</code> string | “undefined”- <em>NSIS updater only</em> - Install folder for NSIS updater</p>
</li>
<li>
<p><code id="AppUpdater-currentVersion">currentVersion</code> SemVer - The current application version.</p>
</li>
<li>
Expand Down Expand Up @@ -1850,7 +1847,11 @@ This is different from the normal quit event sequence.</p>
<h2 id="nsisupdater-%E2%87%90-module%3Aelectron-updater%2Fout%2Fbaseupdater.baseupdater">NsisUpdater ⇐ <code>module:electron-updater/out/BaseUpdater.BaseUpdater</code></h2>
<p><strong>Kind</strong>: class of <a href="#module_electron-updater"><code>electron-updater</code></a><br/>
<strong>Extends</strong>: <code>module:electron-updater/out/BaseUpdater.BaseUpdater</code><br>
<a name="Provider"></a></p>
<strong>Properties</strong></p>
<ul>
<li><strong><code id="NsisUpdater-installDirectory">installDirectory</code></strong> String | “undefined” - Install dir</li>
</ul>
<p><a name="Provider"></a></p>
<h2 id="provider">Provider</h2>
<p><strong>Kind</strong>: class of <a href="#module_electron-updater"><code>electron-updater</code></a><br/>
<strong>Properties</strong></p>
Expand Down
6 changes: 6 additions & 0 deletions packages/electron-updater/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## 4.3.0

## 5.2.0

### Minor Changes

- [#6907](https://github.com/electron-userland/electron-builder/pull/6907) [`e7f28677`](https://github.com/electron-userland/electron-builder/commit/e7f286776643823f9c906738aade1d71eb1bdd9c) Thanks [@panther7](https://github.com/panther7)! - Add installDir property for NsisUpdater. Now is it posible change install folder from AppUpdater.

## 5.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/electron-updater/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "electron-updater",
"version": "5.1.0",
"version": "5.2.0",
"description": "Cross platform updater for electron applications",
"main": "out/main.js",
"author": "Vladimir Krivosheev",
Expand Down
1 change: 0 additions & 1 deletion packages/electron-updater/src/NsisUpdater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export class NsisUpdater extends BaseUpdater {
*/
installDirectory: string | null = null


constructor(options?: AllPublishOptions | null, app?: AppAdapter) {
super(options, app)
}
Expand Down

0 comments on commit 7e47dad

Please sign in to comment.