forked from j62/ctbrec
Increase version number to 3.8.2
This commit is contained in:
parent
49feade0c0
commit
ed26228d7b
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -1,3 +1,15 @@
|
|||
3.8.2
|
||||
========================
|
||||
* Fixed misconfiguration in global connection pool, which caused a lot of
|
||||
threads to spawn while browsing in the thumbnail overviews
|
||||
* Improved memory handling for the thumbnail overviews. Thumbnail images were
|
||||
not released, when a tab was switched. This caused a huge memory consumption,
|
||||
if you opened a lot of different tabs.
|
||||
* Fixed a bug in MFC websocket client, which caused to spawn a bunch of
|
||||
"keep-alive" threads, if there was a problem with the connection
|
||||
* Reworked the settings tab
|
||||
* Fire recording finished event, if a download from the server is finished
|
||||
|
||||
3.8.1
|
||||
========================
|
||||
* Fixed recent MFC error
|
||||
|
@ -10,7 +22,7 @@
|
|||
* Models can be added by name in the web-interface
|
||||
* Added a bandwidth monitor
|
||||
* Added possibility to add notes to recordings
|
||||
* Added range slider to restrict the recording resolution in a range; e.g. 480p - 1080p
|
||||
* Added range slider to restrict the recording resolution in a range; e.g. 480p - 1080p
|
||||
* Improved MFC SD downloads (much less blocking, I think)
|
||||
|
||||
3.7.3
|
||||
|
@ -26,7 +38,7 @@
|
|||
3.7.1
|
||||
========================
|
||||
* Server now logs in on startup, if credentials are set
|
||||
* Show confirmation dialog on shutdown, if the are active downloads from the
|
||||
* Show confirmation dialog on shutdown, if the are active downloads from the
|
||||
server
|
||||
* Added setting to remove recordings after post-processing
|
||||
* Added max resolution setting for the player (click on the gear!)
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<parent>
|
||||
<groupId>ctbrec</groupId>
|
||||
<artifactId>master</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<version>3.8.2</version>
|
||||
<relativePath>../master</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<parent>
|
||||
<groupId>ctbrec</groupId>
|
||||
<artifactId>master</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<version>3.8.2</version>
|
||||
<relativePath>../master</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<groupId>ctbrec</groupId>
|
||||
<artifactId>master</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<version>3.8.1</version>
|
||||
<version>3.8.2</version>
|
||||
|
||||
<modules>
|
||||
<module>../common</module>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<parent>
|
||||
<groupId>ctbrec</groupId>
|
||||
<artifactId>master</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<version>3.8.2</version>
|
||||
<relativePath>../master</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
Loading…
Reference in New Issue