Skip to content

Releases: alexandrehtrb/Pororoca

3.8.2

11 Aug 15:09
1076978
Compare
Choose a tag to compare

Important

  • This version fixes a bug from 3.8.1, that can crash the app.
  • The list below are changes included in 3.8.0 and 3.8.1.

Features

  • Spanish translation. (issue #145, thanks @marcoPacheco1!)
  • Hovering a variable now reveals its value.
  • Autocomplete variables in text editors: type {{, select and press Enter.
  • Predefined variables have different highlight colours now.
  • Slight changes in text editors themes.

Refactors

  • All colour definitions are now centralized in XAML theme files.

Others

  • Raised .NET SDK version to 8.0.413.
  • Disabled InvariantGlobalization to use O.S.-defined decimal separators.
  • Consider making a donation to support our project!

Read more in our announcement.

New Contributors

3.7.7

09 Jul 00:01
401eeaf
Compare
Choose a tag to compare

Features

  • Save to files all WebSocket exchanged messages. (issue #60, thanks @alks97!)

UI/UX

  • More monospaced fonts added for compatibility on text editors. Previously, in some operating systems, like Linux Mint, serif fonts were used due to lack of available fonts. Now, a monospaced font is preferred.
  • GraphQL body and WebSocket exception TextBoxes now use the same monospaced font as other text editors in the program.
  • Decimal time texts according to user language (ex.: 1,23s or 1.23s).

Others

  • Raised .NET SDK version to 8.0.412.
  • Raised STJ version to 9.0.7.
  • Updated test dependencies (xunit, NSubstitute, coverlet, Microsoft.NET.Test.Sdk).
  • ReportGenerator GitHub Action version raised to 5.4.8.
  • Additional informations in error logs: O.S. and program versions, and installation type. (no telemetry is used; read our data protection policy.)

New Contributors

3.7.6

02 Jun 18:33
dfe0c3a
Compare
Choose a tag to compare

Features

Bug Fixes

  • Fixed crash when repeater remaining time was over 1 hour. (issue #140)

Refactors

  • Random name generation logic extracted to separate files.
  • Combined random CPF/CNPJ digits and string methods.
  • Fixed compilation error on Release build without UITestsEnabled.

Others

  • Raised .NET SDK version to 8.0.410.
  • Compressed folder level for win portable in makereleases.ps1.
  • Win portable releases back with single-file publishing. (issue #146)
  • Improved CONTRIBUTING.md.
  • Added GitHub issue templates.

New Contributors

3.7.4

06 Mar 15:20
fec658b
Compare
Choose a tag to compare

Features

  • Application errors are now logged to files in user data folder.

Bug Fixes

  • Saving files using FileMode.Create, to truncate first, then write. (issue #137)
  • Fixed crash when repeater remaining time was over 1 hour. (issue #140)

Others

  • ReportGenerator GitHub Action version raised to 5.4.4.

3.7.3

05 Mar 00:41
5804d8d
Compare
Choose a tag to compare

Bug Fixes

  • Prevent data corruption when an instance of Pororoca is opened while another is still closing. (issue #137)

3.7.2

21 Feb 15:58
b8b46b4
Compare
Choose a tag to compare

Features

  • Vertical scrollbars on text editors are now always visible. (issue #101, thanks @TWaalen!)
  • Left panel is now resizable.

Bug Fixes

  • Added 'default' as Postman form data param type. (issue #133)
  • Prevent TextMate installation exception. (@TWaalen)

Refactors

  • UI tests using AvaloniaUITest NuGet package.
  • i18n language files changed back to JSON format.
  • Raised .NET SDK version to 8.0.406.

New Contributors

3.7.1

13 Jan 00:06
Compare
Choose a tag to compare

Important

  • This release fixes a load-save race condition, that caused collections to disappear for some users.
  • Those collections should be inside the user data folder, with names beginning with deleted_ prefix; to restore, either reimport them, or rename removing deleted_ from their names.
  • If this bug still happens for you with version 3.7.1, please report in issue #130.

Bug Fix

  • Protects against load-save race condition by using a Task and Dispatcher.UIThread.Invoke().