From 3c835077d521fe5298390c0edbf26ead5c8560d4 Mon Sep 17 00:00:00 2001 From: Mastermindzh Date: Sun, 18 Jun 2023 15:39:14 +0200 Subject: [PATCH] added drone builds --- .drone.yml | 16 ++++++++++++++++ CHANGELOG.md | 2 ++ README.md | 14 +++++++------- 3 files changed, 25 insertions(+), 7 deletions(-) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..e74f2f7 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,16 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: install + image: node:19.4.0 + commands: + - npm install + + - name: build_with_linux + image: node:19.4.0 + commands: + - apt-get update && apt-get upgrade -y + - apt-get install -y libarchive-tools rpm + - npm run build diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fa7a58..6f2b6e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## 5.2.0 - moved from Javascript to Typescript for all files + - use `npm run watch` to watch for changes & recompile typescript and sass files - Added support for theming the application +- Added drone build file use `drone exec` or drone.ci to build it ## 5.1.0 diff --git a/README.md b/README.md index 00d4ec0..6fc5c6a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Tidal-hifi -![GitHub release](https://img.shields.io/github/release/Mastermindzh/tidal-hifi.svg) [![Discord logo](./docs/images/discord.png)](https://discord.gg/yhNwf4v4He) +![GitHub release](https://img.shields.io/github/release/Mastermindzh/tidal-hifi.svg) [![github builds](https://github.com/mastermindzh/tidal-hifi/actions/workflows/build.yml/badge.svg)](https://github.com/Mastermindzh/tidal-hifi/actions) [![Build Status](https://ci.mastermindzh.tech/api/badges/Mastermindzh/tidal-hifi/status.svg)](https://ci.mastermindzh.tech/Mastermindzh/tidal-hifi) [![Discord logo](./docs/images/discord.png)](https://discord.gg/yhNwf4v4He) The web version of [listen.tidal.com](https://listen.tidal.com) running in electron with hifi support thanks to widevine. @@ -86,15 +86,15 @@ To install with `snap` you need to download the pre-packaged snap-package from t 1. Download - ```sh - wget #for instance: https://github.com/Mastermindzh/tidal-hifi/releases/download/1.0/tidal-hifi_1.0.0_amd64.snap - ``` + ```sh + wget #for instance: https://github.com/Mastermindzh/tidal-hifi/releases/download/1.0/tidal-hifi_1.0.0_amd64.snap + ``` 2. Install - ```sh - snap install --dangerous #for instance: tidal-hifi_1.0.0_amd64.snap - ``` + ```sh + snap install --dangerous #for instance: tidal-hifi_1.0.0_amd64.snap + ``` ### Arch Linux