Skip to content

Commit

Permalink
build: v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Oppzippy committed Nov 27, 2023
1 parent ec4914f commit 0ba2865
Show file tree
Hide file tree
Showing 13 changed files with 40 additions and 18 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,33 @@
# Changelog

## Unreleased
## v1.9.0

### General

#### Features

- Partial support for A3945, A3933, and A3939. Not ready for general use.

### CLI

#### Fixes

- Panic on exit due to nested tokio runtimes
- "get equalizer" returned values in the range of 0 to 255 rather than -120 to 135
- "set equalizer" accepted values in the range of -12 to 13 rather than -120 to 135

### Web

#### Fixes

- Noise Canceling showing on devices that should not have that option

### Android

#### Fixes

- Custom profiles sometimes not showing as selected despite the equalizer being set correctly

## v1.8.1

### Android
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion android/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openscq30_android"
version = "1.8.1"
version = "1.9.0"
edition = "2021"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ android {
applicationId = "com.oppzippy.openscq30"
minSdk = 26
targetSdk = 34
versionCode = 14
versionName = "1.8.1"
versionCode = 15
versionName = "1.9.0"

testInstrumentationRunner = "com.oppzippy.openscq30.HiltTestRunner"
vectorDrawables {
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openscq30_cli"
version = "1.8.1"
version = "1.9.0"
edition = "2021"

[features]
Expand Down
2 changes: 1 addition & 1 deletion gui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openscq30_gui"
version = "1.8.1"
version = "1.9.0"
edition = "2021"

[features]
Expand Down
8 changes: 8 additions & 0 deletions gui/resources/com.oppzippy.OpenSCQ30.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@
<id>com.oppzippy.OpenSCQ30.desktop</id>
</provides>
<releases>
<release version="1.9.0" date="2023-11-27">
<description>
<p>Features</p>
<ul>
<li>Partial support for A3945, A3933, and A3939. Not ready for general use.</li>
</ul>
</description>
</release>
<release version="1.8.1" date="2023-10-31" />
<release version="1.8.0" date="2023-10-22">
<description>
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openscq30_lib"
version = "1.8.1"
version = "1.9.0"
edition = "2021"

[features]
Expand Down
2 changes: 1 addition & 1 deletion packaging/appimage/AppImageBuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ AppDir:
id: com.oppzippy.OpenSCQ30
name: openscq30_gui
icon: com.oppzippy.OpenSCQ30
version: 1.8.1
version: 1.9.0
exec: usr/bin/openscq30_gui
exec_args: $@

Expand Down
2 changes: 1 addition & 1 deletion packaging/windows/setup.iss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#define AppName "OpenSCQ30"
#define AppExeName "openscq30_gui.exe"
#define AppVersion "1.8.1"
#define AppVersion "1.9.0"

[Setup]
AppName={#AppName}
Expand Down
4 changes: 2 additions & 2 deletions web/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 web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "openscq30-web-react",
"private": true,
"version": "1.8.1",
"version": "1.9.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion web/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "openscq30_web_wasm"
description = "Packet parsing and such for OpenSCQ30 web"
repository = "https://github.com/Oppzippy/OpenSCQ30/tree/master/web/wasm"
license = "GPL-3.0-or-later"
version = "1.8.1"
version = "1.9.0"
edition = "2021"

[lib]
Expand Down

0 comments on commit 0ba2865

Please sign in to comment.