Skip to content

Releases: advanced-rest-client/arc-electron

16.0.5-alpha

07 Feb 23:19
8c9f2ab
Compare
Choose a tag to compare
16.0.5-alpha Pre-release
Pre-release

Bug fixes

  • Don't call save() on a history request, instead it should call saveAs()
  • The abort request action does not reset the loading state when the connection hasn't been yet made
  • Environments are not refreshed when importing data
  • Rendering of a variable name in the import data inspector

16.0.4-alpha

07 Feb 02:55
9d42611
Compare
Choose a tag to compare
16.0.4-alpha Pre-release
Pre-release
  • fixed Monaco editor loading.

16.0.3-alpha

06 Feb 07:42
Compare
Choose a tag to compare
16.0.3-alpha Pre-release
Pre-release
  • removed use of the app.quit() when initializing the application
  • added back the in-app messaging
  • forcing themes upgrade
  • adding formatting option to the response panel via the context menu

16.0.2-alpha

05 Feb 00:22
d5d5a1a
Compare
Choose a tag to compare
16.0.2-alpha Pre-release
Pre-release

Change log

  • The same as 16.0.0-alpha.6
  • Updated dark theme - changed the theme + added missing color definitions

16.0.0-alpha.6

31 Jan 00:16
b555a3a
Compare
Choose a tag to compare
16.0.0-alpha.6 Pre-release
Pre-release

Fixes #304

This fixes #304 which is a long running effort to upgrade application logic and UI.

You can try the new application by cloning this repository and checking out the redesing2020 branch. Then installed dependencies (npm i) and start the application (npm start).

Changelog:

  • New UI for basically everything
  • Request modules. A new API to design ARC plugins that runs in a context of a request or a response. Allows to manipulate the request / response objects as well as ARC data stored in the data store
  • Moved old request logic into single repo - request-engine
  • Consolidated components: created bigger repositories that contains components and libraries depending on their function. For example all request related UIs are in arc-request-ui repository
  • Completely redesigned navigation. Now the navigation has a navigation rail to moved between different sections of the navigation. This makes space for other planned types of navigation
  • ARC now uses Monaco editor to edit the request body
  • Redesigned the response view. Now the response view has panels that can be opened on demand. The old response view was split into several panels.
  • The application now works in a virtual file system instead of mixing both files from the file system and ESM protocol. This requires one-time-only data migration from old origin (based on files) to the new origin.
  • The request panel now allows to import cURL command
  • Added types definition for all data types used in the application. You can find types definitions in arc-types repository.
  • Added centralized DOM events. Now all application events are dispatched from a single library. The library contains the logic to dispatch the events, but also definitions for events names and typescript definitions for specialized event - used when handling the events
  • Moved import/export logic into arc-models as these libraries operates on models directly.
  • Application navigation now can be resized. It can be also hidden by clicking on the currently selected menu icon.
  • Response view can be now resized as the panels are being created as stacked on top of each other.
  • Redesigned settings panel. Added new UI and tons of new options controlling application behavior.
  • Redesigned request workspace for efficiency.
  • The authorization settings now can be configured but not enabled. Also, now the application allows to configure multiple authorization settings in a single request. The authorization is applied to the request through the AuthorizationModule (in request-engine library) so the transformation won't change the request object in the editor.
  • Added response size limits. First limit renders a warning about the size of the message. The user can choose to render the view anyway. The other limit forces unprocessed ("raw") view of the response. This way it reduces chances of application hanging.
  • Removed "table view" from the response view. This module turned out to be very challenging to create and maintain. The final effect was a slow UI and not so good experience when working with the data.
  • Redesigned request actions. It has new actions (set variable, set cookie, delete cookie). Actions are also conditional. The user can set up a condition when the action is to be executed.
  • Added new request editor tab: meta. It renders request meta data (name, list of projects, etc).
  • Removed ability to export to multiple folders in Google Drive (this was deprecated in Drive API).
  • The "detailed" URL editor now only edit query parameters
  • The request body editor now support different specialized editors and each of them stores own value. This means that when the user switch from "raw" to "Multipart" editor the multipart editor will restore previously used form
  • Themes manager now opens in a new window instead being part of ARC
  • Added status message about currently transported request. The transport library informs the application when the message is being transmitted, when headers are received, when response payload is being read, and when the load complete.
  • Added ability to send the request by pressing ctrl+Enter anywhere in the request editor. Subsequently, Escape key cancels the request.
  • Tabs in the request workspace now have flexible width. When more tabs is opened they shrink to accommodate all tabs in the current view.
  • Fixed tons of spelling mistakes :)

Screenshot from 2020-12-20 23-14-16

15.0.7

14 Jul 05:50
c77e1b9
Compare
Choose a tag to compare

This release fixes issue #268 there the authorization panel wasn't initializing due to a script error.

16.0.0-aplha.5

25 May 23:41
ff2ac0b
Compare
Choose a tag to compare
16.0.0-aplha.5 Pre-release
Pre-release

Fixes an issue with Electron request where query parameter weren't passed to the Electron's net.request

15.0.6

26 May 00:01
ef88275
Compare
Choose a tag to compare

Fixes an issue with Electron request where query parameter weren't passed to the Electron's net.request

Fixes workaround in #260

15.0.0-beta.3

26 May 00:01
af43bce
Compare
Choose a tag to compare
15.0.0-beta.3 Pre-release
Pre-release

Fixes an issue with Electron request where query parameter weren't passed to the Electron's net.request

Fixes workaround in #260

15.0.5

05 Apr 20:04
66c193c
Compare
Choose a tag to compare

This release fixes an issue reported by the users where the application freezes after entering a project name to save request dialog. (#247, #252).