Skip to content

Commit

Permalink
Merge pull request #1252 from hovancik/release
Browse files Browse the repository at this point in the history
Release 1.13
  • Loading branch information
hovancik authored Dec 23, 2022
2 parents 18ca29e + fd9118f commit e7d0860
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 9 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/arm-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Arm Packages build

on:
push:
branches:
- release

env:
USE_SYSTEM_FPM: true

jobs:
build:
runs-on: buildjet-2vcpu-ubuntu-2204-arm
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.17.1'
- run: sudo apt update && sudo apt-get install --no-install-recommends -y ruby-full libarchive-tools
- run: sudo gem install fpm -v 1.15
- run: npm install
- run: npm install npm -g
- run: node_modules/.bin/electron-builder build
env:
GH_TOKEN: ${{ secrets.github_token }}
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: macOS/Windows build
name: Packages build

on:
push:
Expand All @@ -11,9 +11,12 @@ jobs:

strategy:
matrix:
os: [macos-latest, windows-latest]
os: [macos-latest, windows-latest, ubuntu-latest]
fail-fast: false
steps:
- name: run on linux
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libarchive-tools
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [1.13.0] - 2022-12-23
### Added
- Galician translations
- Filipino translations
Expand Down Expand Up @@ -680,7 +681,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- resume/pause functionality for reminder
- scripts for creating installers for OS X, Windows, Linux

[Unreleased]: https://github.com/hovancik/stretchly/compare/v1.12.0...HEAD
[Unreleased]: https://github.com/hovancik/stretchly/compare/v1.13.0...HEAD
[1.13.0]: https://github.com/hovancik/stretchly/compare/v1.12.0...v1.13.0
[1.12.0]: https://github.com/hovancik/stretchly/compare/v1.11.0...v1.12.0
[1.11.0]: https://github.com/hovancik/stretchly/compare/v1.10.0...v1.11.0
[1.10.0]: https://github.com/hovancik/stretchly/compare/v1.9.0...v1.10.0
Expand Down
4 changes: 2 additions & 2 deletions app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Stretchly",
"version": "1.12.0",
"version": "1.13.0",
"description": "The break time reminder app",
"main": "main.js",
"repository": {
Expand Down
19 changes: 19 additions & 0 deletions net.hovancik.Stretchly.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,25 @@
</screenshot>
</screenshots>
<releases>
<release version="1.13.0" date="2022-12-23">
<description>
<p>Added</p>
<ul>
<li>Galician translations</li>
<li>Filipino translations</li>
</ul>
<p>Fixed</p>
<ul>
<li>time translations for Chinese</li>
<li>tray icon popup on Linux</li>
</ul>
<p>Changed</p>
<ul>
<li>updated many translations</li>
<li>merged pauseBreaksShortcut and resumeBreaksShortcut to pauseBreaksToggleShortcut</li>
</ul>
</description>
</release>
<release version="1.12.0" date="2022-09-24">
<description>
<p>Changed</p>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Stretchly",
"version": "1.12.0",
"version": "1.13.0",
"description": "The break time reminder app",
"main": "app/main.js",
"engines": {
Expand Down

0 comments on commit e7d0860

Please sign in to comment.