Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ share a version number.

## [Unreleased]

## [1.1.0] - 2026-08-24

### Added

- Configurable keep-awake, under *Power* in Settings. **Never**, **While
Expand Down Expand Up @@ -277,5 +279,6 @@ release.
SHA-256 chain from `latest.json` is the only integrity anchor the auto-update
path has.

[Unreleased]: https://github.com/TinkerNorth/dish-windows/compare/1.0.0...main
[Unreleased]: https://github.com/TinkerNorth/dish-windows/compare/1.1.0...main
[1.1.0]: https://github.com/TinkerNorth/dish-windows/releases/tag/1.1.0
[1.0.0]: https://github.com/TinkerNorth/dish-windows/releases/tag/1.0.0
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.21)
project(Dish
VERSION 1.0.0
VERSION 1.1.0
DESCRIPTION "Dish Windows client for the Satellite gamepad-over-LAN protocol"
LANGUAGES CXX)

Expand Down
8 changes: 4 additions & 4 deletions packaging/dish.rc
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
IDI_DISH_ICON ICON "dish.ico"

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
FILEVERSION 1,1,0,0
PRODUCTVERSION 1,1,0,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS 0
FILEOS VOS_NT_WINDOWS32
Expand All @@ -29,12 +29,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "TinkerNorth"
VALUE "FileDescription", "Dish — wireless gamepad client for Satellite"
VALUE "FileVersion", "1.0.0"
VALUE "FileVersion", "1.1.0"
VALUE "InternalName", "dish"
VALUE "LegalCopyright", "Copyright (C) 2026 Dish contributors. LGPL-3.0-or-later."
VALUE "OriginalFilename", "dish.exe"
VALUE "ProductName", "Dish"
VALUE "ProductVersion", "1.0.0"
VALUE "ProductVersion", "1.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "dish",
"version-string": "1.0.0",
"version-string": "1.1.0",
"description": "Dish Windows client for the Satellite wireless-gamepad protocol",
"homepage": "https://github.com/TinkerNorth/dish-windows",
"license": "LGPL-3.0-or-later",
Expand Down
Loading