Skip to content

Commit

Permalink
Merge branch 'release/1.13.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed Jul 13, 2024
2 parents fc35b40 + 076c2a5 commit a359383
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.13.3]

### Fixed

- Battery level based power automations turning off devices above the threshold
- Certain types of selection in input fields (e.g. Ctrl+A) being blocked

## [1.13.2]

### Fixed

- The status message not updating when the visibility remained the same
- The status message not setting to an empty value

## [1.13.1]

### Fixed

- Some modals automatically closing right after opening them
- Some modals being rendered incorrectly

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oyasumi",
"version": "1.13.2",
"version": "1.13.3",
"author": "Raphiiko",
"license": "MIT",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions src-core/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 src-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oyasumivr"
version = "1.13.2"
version = "1.13.3"
description = ""
authors = ["Raphiiko"]
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions src-core/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"package": {
"productName": "OyasumiVR",
"version": "1.13.2"
"version": "1.13.3"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -201,7 +201,7 @@
"center": true,
"theme": "Dark",
"transparent": true,
"userAgent": "OyasumiVR/1.13.2 (https://github.com/Raphiiko/OyasumiVR)"
"userAgent": "OyasumiVR/1.13.3 (https://github.com/Raphiiko/OyasumiVR)"
},
{
"width": 700,
Expand All @@ -216,7 +216,7 @@
"skipTaskbar": true,
"minimizable": false,
"alwaysOnTop": true,
"userAgent": "OyasumiVR/1.13.2 (https://github.com/Raphiiko/OyasumiVR)"
"userAgent": "OyasumiVR/1.13.3 (https://github.com/Raphiiko/OyasumiVR)"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion src-elevated-sidecar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oyasumivr-elevated-sidecar"
version = "1.13.2"
version = "1.13.3"
authors = ["Raphiiko"]
license = "MIT"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src-overlay-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oyasumivr-overlay-ui",
"version": "1.13.2",
"version": "1.13.3",
"private": true,
"scripts": {
"dev": "vite dev",
Expand Down
2 changes: 1 addition & 1 deletion src-shared-rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oyasumivr-shared"
version = "1.13.2"
version = "1.13.3"
authors = ["Raphiiko"]
edition = "2021"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src-shared-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "src-shared-ts",
"description": "Shared typescript code for Oyasumi modules",
"scripts": {},
"version": "1.13.2",
"version": "1.13.3",
"author": "Raphiiko",
"license": "MIT",
"type": "module",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ export class TurnOffDevicesOnBatteryLevelAutomationService {
case 'Controller':
if (!this.config.turnOffControllers) return;
if (this.config.turnOffControllersOnlyDuringSleepMode && !sleepMode) return;
if (currentLevel > this.config.turnOffControllersAtLevel) return;
if (currentLevel * 100 > this.config.turnOffControllersAtLevel) return;
threshold = this.config.turnOffControllersAtLevel;
break;
case 'GenericTracker':
if (!this.config.turnOffTrackers) return;
if (this.config.turnOffTrackersOnlyDuringSleepMode && !sleepMode) return;
if (currentLevel > this.config.turnOffTrackersAtLevel) return;
if (currentLevel * 100 > this.config.turnOffTrackersAtLevel) return;
threshold = this.config.turnOffTrackersAtLevel;
break;
default:
Expand Down
9 changes: 0 additions & 9 deletions src-ui/app/utils/browser-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,4 @@ export function disableDefaultContextMenu() {
},
{ capture: true }
);

document.addEventListener(
'selectstart',
(e) => {
e.preventDefault();
return false;
},
{ capture: true }
);
}

0 comments on commit a359383

Please sign in to comment.