Skip to content

Commit

Permalink
Change version to 24.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
smplayer-dev committed May 13, 2024
1 parent 29838af commit dc37d6f
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 15 deletions.
6 changes: 3 additions & 3 deletions OBS/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# deb packages at build.opensuse.org

PACKAGE = smplayer
VERSION = 23.12.0
DEPENDS = debhelper (>= 5), zlib1g-dev, qtbase5-dev, qt5-qmake, qtscript5-dev, qttools5-dev-tools, qtbase5-private-dev, qtdeclarative5-dev, qt5-default | nano
#DEPENDS = debhelper (>= 5), zlib1g-dev, libqt4-dev
VERSION = 24.5.0
#DEPENDS = debhelper (>= 5), zlib1g-dev, qtbase5-dev, qt5-qmake, qtscript5-dev, qttools5-dev-tools, qtbase5-private-dev, qtdeclarative5-dev, qt5-default | nano
DEPENDS = debhelper (>= 5), zlib1g-dev, libqt4-dev

DSC_FILE = $(PACKAGE).dsc
DEBIAN_FILE = debian.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion Release_notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [24.04] - 2024-04-26
## [24.05] - 2024-05-13
* Bug fixes.
* The Windows portable version now saves the configuration files in
the folder "config".
Expand Down
2 changes: 1 addition & 1 deletion create_deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ln -s debian-orig debian
cp debian-orig/changelog-orig debian-orig/changelog

./get_version.sh
dch -v `cat version` "Development version"
#dch -v `cat version` "Development version"

#dpkg-buildpackage -rfakeroot

Expand Down
10 changes: 9 additions & 1 deletion debian-orig/changelog-orig
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
smplayer (23.12.0) UNRELEASED; urgency=medium
smplayer (24.5.0) jammy; urgency=medium

* Bug fixes.
* The Windows portable version now saves the configuration files in
the folder "config".

-- Ricardo Villalba <[email protected]> Mon, 13 May 2024 13:40:56 +0200

smplayer (23.12.0) jammy; urgency=medium

* Implemented support for the new Opensubtitles API.
* Fix play/pause with mpv 0.37.
Expand Down
4 changes: 2 additions & 2 deletions get_version.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/sh
./get_svn_revision.sh
echo "23.12.0.`cat svn_revision`" > version
#echo "23.12.0" > version
#echo "24.5.0.`cat svn_revision`" > version
echo "24.5.0" > version
3 changes: 2 additions & 1 deletion smplayer.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@
</screenshots>
<content_rating type="oars-1.1"/>
<releases>
<release version="{version}" date="{date}"/>
<!-- <release version="{version}" date="{date}"/> -->
<release version="24.5.0" date="2024-05-13"/>
<release version="23.12.0" date="2023-12-26"/>
<release version="23.6.0" date="2023-06-30"/>
<release version="22.7.0" date="2022-07-10"/>
Expand Down
2 changes: 1 addition & 1 deletion smplayer.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
%endif

Name: smplayer
Version: 23.12.0
Version: 24.5.0
%global smplayer_themes_ver 20.11.0
%global smplayer_skins_ver 20.11.0
Release: 1%{?dist}
Expand Down
4 changes: 2 additions & 2 deletions src/smplayer.rc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <winver.h>

#define SMPLAYER_FILEVERSION 23,12,0,0
#define SMPLAYER_PRODVERSION "23.12.0.0"
#define SMPLAYER_FILEVERSION 24,5,0,0
#define SMPLAYER_PRODVERSION "24.5.0.0"

VS_VERSION_INFO VERSIONINFO
FILEVERSION SMPLAYER_FILEVERSION
Expand Down
6 changes: 3 additions & 3 deletions src/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
#include <QObject>

#define USE_SVN_VERSIONS 1
#define DEVELOPMENT_VERSION 1
#define DEVELOPMENT_VERSION 0

#define VERSION "23.12.0"
#define VERSION "24.5.0"

#if USE_SVN_VERSIONS && DEVELOPMENT_VERSION
#include "svn_revision.h"
#else
#define SVN_REVISION "10207"
#define SVN_REVISION "10277"
#endif

#ifdef Q_OS_WIN
Expand Down

0 comments on commit dc37d6f

Please sign in to comment.