Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Aurailus/Myxer
Browse files Browse the repository at this point in the history
  • Loading branch information
Aurailus committed Mar 4, 2021
2 parents cc27280 + a7308ed commit 8f436d5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 29 deletions.
30 changes: 5 additions & 25 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,31 +17,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: sudo apt install libpango1.0-dev libatk1.0-dev libgtk-3-dev
run: sudo apt install libpango1.0-dev libatk1.0-dev libgtk-3-dev libpulse-dev
- name: Build
run: cargo build --verbose --release
- name: Compress build files
run: zip --junk-paths build target/release/myxer
- name: Get short SHA for Release
id: slug
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-7)"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Artifact
uses: actions/upload-artifact@v2.2.2
with:
tag_name: ${{steps.slug.outputs.sha8}}-pre
release_name: ${{ github.sha }}
body: Built by Github Actions.
prerelease: true
- name: Upload Release Files
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build.zip
asset_name: build.zip
asset_content_type: application/zip
name: Myxer
path: target/release/myxer
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
# Myxer

[![release](https://github.com/Aurailus/Myxer/workflows/release/badge.svg)](https://github.com/Aurailus/Myxer/releases)
[![discord](https://img.shields.io/discord/416379773976051712.svg?color=7289DA&label=discord&logo=discord&logoColor=white&labelColor=2A3037)](https://aurail.us/discord)
[![commit activity](https://img.shields.io/github/commit-activity/m/aurailus/myxer.svg?logo=github&labelColor=2A3037&label=commit%20activity)](https://github.com/Aurailus/Myxer/commits/master)

A modern Volume Mixer for PulseAudio, built using Rust.

## Developing
Just use `cargo run`, (or `nodemon ./`, if you have that installed) in the root directory, that's it.
**© 2021 Auri Collings. [GPLv3](https://github.com/Aurailus/Myxer/LICENSE.md).**

## Building

Use `cargo build --release` in the root directory.

## Disclaimer
This project is *very* early in development, there are bugs and unfinished features! Use at your own risk. I'm very new to Rust as well, so there may be inefficiencies or other strange behavior that I haven't caught. Please file an issue if you find a problem.
Prebuilt binaries are available as artifacts, download the latest one **[here](https://nightly.link/Aurailus/myxer/workflows/release/master/Myxer.zip)**.

Please note: While this project is more-or-less complete, there may still be bugs or issues. Your mileage may vary.

## Contributing

Pull Requests are welcome and appreciated. If you're unsure of whether a feature will be accepted, open an issue and I'll get back to you as soon as I can.

### Building for Development

Just use `cargo run`, (or `nodemon ./`, if you have that installed) in the root directory, that's it.

0 comments on commit 8f436d5

Please sign in to comment.