-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #342 from advanced-rest-client/release/16.0.0-beta
release/16.0.0-beta
- Loading branch information
Showing
462 changed files
with
47,181 additions
and
23,699 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: Test and build application | ||
|
||
on: push | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-latest, ubuntu-latest] | ||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v1 | ||
- name: Install Node.js, NPM and Yarn | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14 | ||
- name: Install dependencies | ||
run: npm install | ||
- name: Test electron application | ||
uses: GabrielBB/xvfb-action@v1 | ||
with: | ||
run: npm test | ||
env: | ||
CI: true | ||
build: | ||
if: github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/master' | ||
needs: test | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-latest, ubuntu-latest, windows-latest] | ||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v1 | ||
|
||
- name: Install Node.js, NPM and Yarn | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14 | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Prepare for app notarization | ||
if: startsWith(matrix.os, 'macos') | ||
# Import Apple API key for app notarization on macOS | ||
run: | | ||
mkdir -p ~/private_keys/ | ||
echo '${{ secrets.api_key }}' > ~/private_keys/AuthKey_${{ secrets.api_key_id }}.p8 | ||
- name: Build/release Electron app | ||
uses: samuelmeuli/action-electron-builder@v1 | ||
with: | ||
github_token: ${{ secrets.github_token }} | ||
release: true | ||
mac_certs: ${{ secrets.mac_certs }} | ||
mac_certs_password: ${{ secrets.mac_certs_password }} | ||
windows_certs: ${{ secrets.windows_certs }} | ||
windows_certs_password: ${{ secrets.windows_certs_password }} | ||
env: | ||
API_KEY_ID: ${{ secrets.api_key_id }} | ||
API_KEY_ISSUER_ID: ${{ secrets.api_key_issuer_id }} | ||
|
||
- name: Send Windows store verification | ||
if: startsWith(matrix.os, 'windows') | ||
run: "echo 'This is currently disabled. Help needed!'" | ||
# run: ./tasks/win-store-build.cmd |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"cSpell.words": [ | ||
"Renderable", | ||
"actionurl", | ||
"advancedrestclient", | ||
"appresources", | ||
"arccontextmenu", | ||
"autoupdate", | ||
"camelcase", | ||
"codemirror", | ||
"firstbyte", | ||
"forcereload", | ||
"googleusercontent", | ||
"headersreceived", | ||
"hideothers", | ||
"iconset", | ||
"jnjgsluqk", | ||
"maxsize", | ||
"monospace", | ||
"opentype", | ||
"pageview", | ||
"pasteandmatchstyle", | ||
"printf", | ||
"requestfirstbytereceived", | ||
"requestloadend", | ||
"requestloadstart", | ||
"resetzoom", | ||
"restclient", | ||
"robotomono", | ||
"screenview", | ||
"selectall", | ||
"settingschanged", | ||
"settingsread", | ||
"settingsupdate", | ||
"spectron", | ||
"tbie", | ||
"themeactivated", | ||
"toggledevtools", | ||
"togglefullscreen", | ||
"truetype", | ||
"webservice", | ||
"zoomin", | ||
"zoomout" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,49 @@ | ||
--- | ||
description: Installation process for the Advanced REST Client application. | ||
--- | ||
# Advanced REST Client application | ||
|
||
# Installing Advanced REST Client | ||
This is the main repository for the ARC Electron application. | ||
|
||
## Installing Advanced REST Client | ||
## Documentation | ||
|
||
In most cases you can download the app from [https://github.com/advanced-rest-client/arc-electron/releases](https://github.com/advanced-rest-client/arc-electron/releases) | ||
If you are looking for the **documentation** then visit [docs.advancedrestclient.com](https://docs.advancedrestclient.com/). | ||
|
||
Find an installer for your platform under "Assets" section. | ||
## Installation | ||
|
||
![Assets section for a release](.gitbook/assets/image%20%2843%29.png) | ||
If you are looking to install the application, the go to [the releases page](https://github.com/advanced-rest-client/arc-electron/releases) and download the installer for your system. | ||
|
||
For example, for Windows you would download [`arc-setup.exe`](https://github.com/advanced-rest-client/arc-electron/releases/latest/download/arc-setup.exe). For MacOS download `arc-13.0.7.dmg`. | ||
1. Find the latest stable release. | ||
2. Toggle the `Assets` and find the installer for your system. For Windows it will be `arc-setup.exe`. macOS users should download `arc-x.x.x.dmg`, where `x.x.x` is the version number. Linux users should find the distribution corresponding to the system you are using. | ||
3. Run the installer by clicking on it. | ||
|
||
{% hint style="info" %} | ||
Version number may be different to the one in the screen shoot. For normal use, please, download latest stable version. | ||
{% endhint %} | ||
Note that you may be asked to use an account with upgraded privileges to install the application. | ||
|
||
When downloaded, run the file. The installer will walk you through the installation process. | ||
## Project planning | ||
|
||
## Linux installation | ||
We believe in open web and open API tooling. The project is managed in an open way and you can also contribute by requesting features and reporting issues. You can check current planning in the [project plan](https://github.com/orgs/advanced-rest-client/projects/2). | ||
|
||
ARC's build process generates several builds for Linux. Find your platform and then architecture. Wrong architecture \(x86 instead of x64\) will result with error when installing or running the application. | ||
## Contributing to the project | ||
|
||
Please note that ARC won't update automatically on Linux platform as this is not yet supported by the build library. This may be possible in the future. | ||
Get familiar with the [application architecture](https://app.gitbook.com/@api-components/s/arc/arc-development/architecture). You may also want to look into the `.github/CONTRIBUTING.md` document before you jump into the development. | ||
|
||
ARC uses for testing | ||
Clone the repository: | ||
|
||
```sh | ||
git clone https://github.com/advanced-rest-client/arc-electron.git | ||
``` | ||
|
||
Checkout this branch | ||
|
||
```sh | ||
git checkout redesign2020 | ||
``` | ||
|
||
Next, install dependencies (it may take a moment) | ||
|
||
```sh | ||
npm install | ||
``` | ||
|
||
And run the application | ||
|
||
```sh | ||
npm start | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.