Skip to content

Commit

Permalink
Merge pull request #116 from electron-userland/release-1.1.0
Browse files Browse the repository at this point in the history
Release 1.1.0
  • Loading branch information
malept committed May 2, 2019
2 parents 3379385 + 83c13ef commit a52535e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 13 deletions.
10 changes: 9 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@

## [Unreleased]

[Unreleased]: https://github.com/electron-userland/electron-installer-redhat/compare/v1.0.1...master
[Unreleased]: https://github.com/electron-userland/electron-installer-redhat/compare/v1.1.0...master

## [1.1.0] - 2019-05-01

[1.1.0]: https://github.com/electron-userland/electron-installer-redhat/compare/v1.0.1...v1.1.0

### Added

* Support for SUID sandbox helper in Electron >= 5 (#112)

## [1.0.1] - 2019-02-20

Expand Down
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ Function that renames all files generated by the task just before putting them i
Type: `String`
Default: `package.name`

Name of the package (e.g. `atom`), used in the [`Name` field of the `spec` file](https://fedoraproject.org/wiki/How_to_create_an_RPM_package#Creating_a_SPEC_file).

Check out the [Fedora Naming Guidelines](https://fedoraproject.org/wiki/Packaging:NamingGuidelines#Common_Character_Set_for_Package_Naming).
Name of the package (e.g. `atom`), used in the [`Name` field of the `spec` file](https://fedoraproject.org/wiki/Packaging:NamingGuidelines).

#### options.productName
Type: `String`
Expand All @@ -241,31 +239,31 @@ Type: `String`
Default: `package.description`

Short, one-line description of the application; do not end with a period.
Used in the [`Summary` field of the `spec` file](https://fedoraproject.org/wiki/How_to_create_an_RPM_package#Creating_a_SPEC_file).
Used in the [`Summary` field of the `spec` file](https://docs.fedoraproject.org/en-US/quick-docs/creating-rpm-packages/index.html#con_rpm-spec-file-overview).

#### options.productDescription
Type: `String`
Default: `package.productDescription || package.description`

Long description of the application, used in the [`%description` tag of the `spec` file](https://fedoraproject.org/wiki/How_to_create_an_RPM_package#Creating_a_SPEC_file).
Long description of the application, used in the [`%description` tag of the `spec` file](https://docs.fedoraproject.org/en-US/quick-docs/creating-rpm-packages/index.html#con_rpm-spec-file-overview).

#### options.version
Type: `String`
Default: `package.version`

Version number of the package, used in the [`Version` field of the `spec` file](https://fedoraproject.org/wiki/How_to_create_an_RPM_package#Creating_a_SPEC_file).
Version number of the package, used in the [`Version` field of the `spec` file](https://docs.fedoraproject.org/en-US/quick-docs/creating-rpm-packages/index.html#con_rpm-spec-file-overview).

#### options.revision
Type: `String`
Default: `package.revision`

Revision number of the package, used in the [`Release` field of the `spec` file](https://fedoraproject.org/wiki/How_to_create_an_RPM_package#Creating_a_SPEC_file).
Revision number of the package, used in the [`Release` field of the `spec` file](https://docs.fedoraproject.org/en-US/quick-docs/creating-rpm-packages/index.html#con_rpm-spec-file-overview).

#### options.license
Type: `String`
Default: `package.license`

License of the package, used in the [`License` field of the `spec` file](https://fedoraproject.org/wiki/How_to_create_an_RPM_package#Creating_a_SPEC_file).
License of the package, used in the [`License` field of the `spec` file](https://docs.fedoraproject.org/en-US/quick-docs/creating-rpm-packages/index.html#con_rpm-spec-file-overview).

#### options.arch
Type: `String`
Expand All @@ -277,15 +275,15 @@ Machine architecture the package is targeted to, used to set the `--target` opti
Type: `Array[String]`
Default: The minimum list of packages needed for Electron to run

Packages that are required when the program starts, used in the [`Requires` field of the `spec` file](https://fedoraproject.org/wiki/How_to_create_an_RPM_package#Creating_a_SPEC_file).
Packages that are required when the program starts, used in the [`Requires` field of the `spec` file](https://docs.fedoraproject.org/en-US/quick-docs/creating-rpm-packages/index.html#con_rpm-spec-file-overview).

All user requirements will be appended to the default array of requirements, and any duplicates will be removed.

#### options.homepage
Type: `String`
Default: `package.homepage || package.author.url`

URL of the homepage for the package, used in the [`Homepage` field of the `control` specification](https://fedoraproject.org/wiki/How_to_create_an_RPM_package#Creating_a_SPEC_file).
URL of the homepage for the package, used in the [`URL` field of the `spec` specification](https://docs.fedoraproject.org/en-US/quick-docs/creating-rpm-packages/index.html#con_rpm-spec-file-overview).

#### options.compressionLevel
Type: `Number`
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "electron-installer-redhat",
"description": "Create a Red Hat package for your Electron app.",
"version": "1.0.1",
"version": "1.1.0",
"license": "MIT",
"author": {
"name": "Daniel Perez Alvarez",
Expand All @@ -10,7 +10,7 @@
},
"repository": {
"type": "git",
"url": "git://github.com/unindented/electron-installer-redhat.git"
"url": "git://github.com/electron-userland/electron-installer-redhat.git"
},
"keywords": [
"electron",
Expand Down

0 comments on commit a52535e

Please sign in to comment.