Skip to content

Commit

Permalink
Change version to 23.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
smplayer-dev committed Dec 26, 2023
1 parent 50cd522 commit 5d8a92d
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 11 deletions.
2 changes: 1 addition & 1 deletion OBS/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# deb packages at build.opensuse.org

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

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: 10 additions & 0 deletions debian-orig/changelog-orig
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
smplayer (23.12.0) UNRELEASED; urgency=medium

* Implemented support for the new Opensubtitles API.
* Fix play/pause with mpv 0.37.
* Fix loading playlists with extension m3u8.
* Fix video jitter/shudder when clicking on timeline bar.
* Other small fixes.

-- Ricardo Villalba <[email protected]> Tue, 26 Dec 2023 13:54:27 +0100

smplayer (23.6.0) xenial; urgency=medium

* Fix the issue with YouTube playback limited to 720p.
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.6.0.`cat svn_revision`" > version
#echo "23.6.0" > version
#echo "23.12.0.`cat svn_revision`" > version
echo "23.12.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="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"/>
<release version="22.2.0" date="2022-02-27"/>
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.6.0
Version: 23.12.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,6,0,0
#define SMPLAYER_PRODVERSION "23.6.0.0"
#define SMPLAYER_FILEVERSION 23,12,0,0
#define SMPLAYER_PRODVERSION "23.12.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.6.0"
#define VERSION "23.12.0"

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

#ifdef Q_OS_WIN
Expand Down

0 comments on commit 5d8a92d

Please sign in to comment.