Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…-launcher into next
  • Loading branch information
krypt0nn committed Aug 2, 2023
2 parents 9ab49c8 + f359be9 commit dc2e8e8
Show file tree
Hide file tree
Showing 98 changed files with 1,611 additions and 548 deletions.
46 changes: 0 additions & 46 deletions .github/workflows/buildnup.yml

This file was deleted.

40 changes: 40 additions & 0 deletions .github/workflows/check_source_code.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Check source code

on:
push:
branches: [ "next" ]
paths: [ "src/**" ]

pull_request:
branches: [ "main", "next" ]
paths: [ "src/**" ]

workflow_dispatch:

env:
CARGO_TERM_COLOR: always

jobs:
check_source_code:
runs-on: ubuntu-latest

container:
image: ubuntu:devel
env:
DEBIAN_FRONTEND: noninteractive

steps:
- name: Install dependencies
run: |
apt update
apt install -y libgtk-4-dev libadwaita-1-dev git curl
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable

- name: Checkout
uses: actions/checkout@v3

- name: Check source code
run: cargo check --verbose
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
types: [opened, edited]

jobs:
check-branch:
check_target_branch:
runs-on: ubuntu-latest
steps:
- uses: Vankka/pr-target-branch-action@v2
Expand Down
45 changes: 45 additions & 0 deletions .github/workflows/compile_release_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Compile release build

on:
push:
branches: [ "main" ]
paths: [ "src/**" ]

release:
types: [published]

workflow_dispatch:

env:
CARGO_TERM_COLOR: always

jobs:
build_and_upload:
runs-on: ubuntu-latest

container:
image: ubuntu:devel
env:
DEBIAN_FRONTEND: noninteractive

steps:
- name: Install dependencies
run: |
apt update
apt install -y libgtk-4-dev libadwaita-1-dev git curl
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable

- name: Checkout
uses: actions/checkout@v3

- name: Compile release build
run: cargo build --release --verbose

- name: Upload artifact
uses: actions/[email protected]
with:
name: Release build
path: target/release/anime-game-launcher
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Added new gamescope version compatibility
- Added "launcher behavior" option
- Added "kill game process" button when chosen behavior keeps launcher window open
- Bundled some icons into the app for consistency across the systems
- Added better panics handler
- Added Swedish

### Fixed

- Fixed predownload button sensitivity

### Changed

- Improved pre-downloads state checking
- Replaced translation functions by `tr!` macro
- Reworked app resources structure

## [1.2.5] - 19.07.2023

### Fixed
Expand Down
Loading

0 comments on commit dc2e8e8

Please sign in to comment.