Skip to content

Commit d3ff879

Browse files
committed
Release info changes.
1 parent ca3c91d commit d3ff879

File tree

4 files changed

+77
-8
lines changed

4 files changed

+77
-8
lines changed

.github/workflows/.build_livekeys.yml

Lines changed: 31 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -179,15 +179,28 @@ jobs:
179179
path: build/*.tar.gz
180180

181181

182-
- name: Get Release
183-
id: get_release
184-
if: startsWith(github.ref, 'refs/tags/v')
182+
- name: Get Release MacOS
183+
id: get_release_macos
184+
if: github.ref == 'refs/heads/master' && runner.os == 'macOS'
185185
run : |
186186
cd build
187187
RELEASE_NAME="$(ls -1 *.dmg)"
188188
echo $RELEASE_NAME
189189
echo ::set-output name=RELEASE_NAME::$RELEASE_NAME
190190
191+
- name: Get Release Linux
192+
id: get_release_linux
193+
if: github.ref == 'refs/heads/master' && runner.os == 'Linux'
194+
run : |
195+
cd build
196+
ls
197+
RELEASE_NAME_1="$(ls live*.tar.gz | tail -n +1 | head -1)"
198+
RELEASE_NAME_2="$(ls live*.tar.gz | tail -n +2 | head -1)"
199+
echo $RELEASE_NAME_1
200+
echo $RELEASE_NAME_2
201+
echo ::set-output name=RELEASE_NAME_1::$RELEASE_NAME_1
202+
echo ::set-output name=RELEASE_NAME_2::$RELEASE_NAME_2
203+
191204
# - name: Create Release
192205
# id: create_release
193206
# if: startsWith(github.ref, 'refs/tags/v')
@@ -207,14 +220,25 @@ jobs:
207220
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
208221

209222

210-
- name: Do Release
211-
id: do_release
212-
if: startsWith(github.ref, 'refs/tags/v')
223+
- name: Do Release MacOS
224+
id: do_release_macos
225+
if: startsWith(github.ref, 'refs/tags/v') && runner.os == 'macOS'
226+
uses: softprops/action-gh-release@v1
227+
env:
228+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
229+
with:
230+
files: build/${{ steps.get_release_macos.outputs.RELEASE_NAME }}
231+
232+
- name: Do Release Linux
233+
id: do_release_linux
234+
if: startsWith(github.ref, 'refs/tags/v') && runner.os == 'Linux'
213235
uses: softprops/action-gh-release@v1
214236
env:
215237
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
216238
with:
217-
files: build/${{ steps.get_release.outputs.RELEASE_NAME }}
239+
files: |
240+
build/${{ steps.get_release_linux.outputs.RELEASE_NAME_1 }}
241+
build/${{ steps.get_release_linux.outputs.RELEASE_NAME_2 }}
218242
219243
# - name: Upload Release Asset
220244
# id: upload-release-asset

.qmake.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
PROJECT_ROOT = $$PWD
1616
BUILD_PATH = $$shadowed($$PWD)
17-
LIVEKEYS_VERSION = 1.8.0
17+
LIVEKEYS_VERSION = 1.9.0
1818

1919
macx:DEPLOY_PATH = $$BUILD_PATH/bin/livekeys.app/Contents
2020
else:DEPLOY_PATH = $$BUILD_PATH/bin

CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,49 @@
22

33
This file summarises notable changes between Live Keys versions.
44

5+
## 1.9.0
6+
7+
### Features
8+
9+
- Added vector editor
10+
- Added layout files
11+
- Added Support for read only properties
12+
- Added Support for chain properties
13+
- Added new color picker
14+
- Fully Integrated Builders and Watchers
15+
- Support for Drawing Gradients
16+
- Support for connecting to singletons
17+
18+
### Bug Fixes
19+
20+
- Fixed saving/restoring palettes
21+
- Fixed TransformPalette in node editor
22+
- Fixed blank DrawPalette crash
23+
- Updated NodePalette connectors
24+
- Fixed Ownership and deletion in palettes
25+
- Fixed binding deletion when deleting an edge in NodePalette
26+
- Fixed some cases where SuggestionBox was hidden
27+
28+
## 1.8.0
29+
30+
### Features
31+
32+
- Added timeline animation tracks
33+
- Support for initializing documents through palettes
34+
- Added messagebox for workspace
35+
- Added new palettes: StringList, Boolean, Size
36+
37+
### Bug Fixes
38+
39+
- Fixed Root item deletion and creation in some contexts
40+
- Fixed reading files sample
41+
- Fixed file explorer sample
42+
- Fixed executable sample run problems on windows
43+
- Fixed same property appearing twice in the node editor
44+
- Fixed ownership on deleting edit fragments
45+
- Fixed various node editor interactions
46+
- Fixed binding connections between edit fragments
47+
548
## 1.7.0
649

750
### Features

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
</a>
99
</p>
1010

11+
-----------------------------
12+
1113
[![Join the chat at https://gitter.im/live-keys/livekeys](https://badges.gitter.im/live-keys/livekeys.svg)](https://gitter.im/live-keys/livekeys?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1214
[![Build Status](https://travis-ci.com/live-keys/livekeys.svg?branch=master)](https://travis-ci.com/live-keys/livekeys)
1315
[![Build status](https://ci.appveyor.com/api/projects/status/3l5t69h7q3gpkec1?svg=true)](https://ci.appveyor.com/project/dinusv/livekeys)

0 commit comments

Comments
 (0)