Browse Source

Up version to 1.3.0.

Ian Walton 3 years ago
parent
commit
b3b660e74d

+ 3 - 3
CMakeModules/VersionConfiguration.cmake

@@ -26,8 +26,8 @@ set(VERSION_NANO 0)
 
 option(UPGRADE_DEBUG "" OFF)
 
-set(VERSION_STRING "1.2.1")
-set(VERSION_STRING_SHORT "1.2.1")
-set(CANONICAL_VERSION_STRING "1.2.1")
+set(VERSION_STRING "1.3.0")
+set(VERSION_STRING_SHORT "1.3.0")
+set(CANONICAL_VERSION_STRING "1.3.0")
 
 configure_file(src/core/Version.cpp.in src/core/Version.cpp)

+ 14 - 0
resources/meta/com.github.iwalton3.jellyfin-media-player.appdata.xml

@@ -39,6 +39,20 @@
     <category>TV</category>
   </categories>
   <releases>
+      <release version="1.3.0" date="2020-04-11">
+        <p>Changes:</p>
+        <ul>
+          <li>Add settings menu for built-in player settings.</li>
+          <li>Add hardware acceleration in the web view. (disable with --disable-gpu)</li>
+          <li>Make subtitle position and scale settings work with SSA and bitmap subtitles.</li>
+          <li>Switch to NativeShell interface for jellyfin-web extensions.</li>
+          <li>Fix video download option to open links in browser.</li>
+          <li>Fix up next dialog hiding the player UI.</li>
+          <li>Add support for remote devtools.</li>
+          <li>Properly advertise player name, version, and computer name.</li>
+          <li>Fix F11 key for fullscreen.</li>
+        </ul>
+      </release>
       <release version="1.2.1" date="2020-04-06">
         <p>Changes:</p>
         <ul>

+ 0 - 1
src/system/SystemComponent.cpp

@@ -348,7 +348,6 @@ QString SystemComponent::getNativeShellScript()
   clientData.insert("deviceName", QJsonValue::fromVariant(SettingsComponent::Get().getClientName()));
   clientData.insert("scriptPath", QJsonValue::fromVariant("file:///" + path));
   nativeshellString.replace("@@data@@", QJsonDocument(clientData).toJson(QJsonDocument::Compact).toBase64());
-  QLOG_DEBUG() << nativeshellString;
   return nativeshellString;
 }