Skip to content

Commit 20e43a9

Browse files
committed
chore: update changelogs for version 6.3.0
Signed-off-by: k4yt3x <i@k4yt3x.com>
1 parent 486c23d commit 20e43a9

File tree

3 files changed

+23
-12
lines changed

3 files changed

+23
-12
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ jobs:
6868
path: build/video2x-linux-ubuntu-2404-amd64.deb
6969

7070
windows:
71+
# Disabled because it takes too long to build
72+
if: false
7173
name: Build Windows release
7274
needs:
7375
- setup
@@ -143,14 +145,14 @@ jobs:
143145
needs:
144146
- setup
145147
# - ubuntu-2404
146-
- windows
148+
# - windows
147149
- container
148150
runs-on: ubuntu-latest
149-
outputs:
150-
upload_url: ${{ steps.create_release.outputs.upload_url }}
151+
# outputs:
152+
# upload_url: ${{ steps.create_release.outputs.upload_url }}
151153
steps:
152-
- name: Download artifacts
153-
uses: actions/download-artifact@v4
154+
# - name: Download artifacts
155+
# uses: actions/download-artifact@v4
154156

155157
- name: Create release
156158
id: create_release
@@ -161,5 +163,3 @@ jobs:
161163
name: ${{ needs.setup.outputs.version }}
162164
draft: true
163165
prerelease: false
164-
files: |
165-
video2x-windows-amd64.zip

CHANGELOG.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,30 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [6.3.0] - 2024-12-20
99

1010
### Added
1111

12+
- A logger manager to provide unified logging across the application.
1213
- Support for Real-CUGAN ncnn Vulkan (#1198).
14+
- (Video2X Qt6) A check to ensure the required VC++ Redistributable version is installed.
15+
- (Video2X Qt6) A configuration manager to save user preferences like the last selected language.
16+
- (Video2X Qt6) A new logging widget to display logs in the UI.
17+
- (Video2X Qt6) Custom options `crf=20` and `preset=slow` to the default encoder options.
18+
- (Video2X Qt6) French translation.
19+
- (Video2X Qt6) The ability to check for available updates and prompt the user to update.
20+
- (Video2X Qt6) Tooltips for processor and encoder options.
1321

1422
### Changed
1523

1624
- Improve optimization flags and add namespaces for better code organization.
25+
- (Video2X Qt6) Add processor names to processed videos instead of `.processed`.
26+
- (Video2X Qt6) The output video suffix from auto-generated to `.mkv`.
1727

1828
### Fixed
1929

2030
- Make the encoder always use the calculated PTS with corrected math.
31+
- (Video2X Qt6) The issue where task configs are being restored incorrectly in the UI.
2132

2233
## [6.2.0] - 2024-12-11
2334

@@ -28,14 +39,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2839
- More `AVCodecContext` options.
2940
- Support for RIFE ncnn Vulkan.
3041
- Support for specifying arbitrary `AVOptions` for the encoder (#1232).
31-
- Visual C++ Redistributable version check to the installer. (Video2X Qt6)
42+
- (Video2X Qt6) Visual C++ Redistributable version check to the installer.
3243

3344
### Changed
3445

3546
- Improve CLI argument validation.
3647
- Improve error handling and error messages.
3748
- Improve the CLI help message structure and clarity.
38-
- Improve the UI with a complete redesign. (Video2X Qt6)
49+
- (Video2X Qt6) Improve the UI with a complete redesign.
3950

4051
### Removed
4152

@@ -62,9 +73,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6273

6374
- A better timer that gets paused when the processing is paused.
6475
- Detection for the validity of the provided GPU ID.
65-
- Status bar and processing statistics. (Video2X Qt6)
6676
- The `--listgpus` option to list available Vulkan GPU devices.
6777
- Vulkan device selection for libplacebo.
78+
- (Video2X Qt6) Status bar and processing statistics.
6879

6980
### Changed
7081

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.10)
2-
project(video2x VERSION 6.2.0 LANGUAGES CXX)
2+
project(video2x VERSION 6.3.0 LANGUAGES CXX)
33

44
# The FindBoost module is removed in CMake 3.30
55
if(POLICY CMP0167)

0 commit comments

Comments
 (0)