Skip to content

Commit

Permalink
Fix stopping records on TVB removal, versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavion committed Feb 27, 2018
1 parent c7b4ee1 commit e1c412d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2018-02-27 1.3.3 Extending TV Browser support (plugin v.1.0.3 required)
Events can also be canceled

2018-02-25 1.3.2 Extending TV Browser support (with newest plugin)
Events to be recorded are marked in TVBrowser and shown in tree view

Expand Down
2 changes: 1 addition & 1 deletion synology/INFO
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package="tvstreamrecord"
version="1.3.2"
version="1.3.3"
maintainer="Pavion"
description="Program to record TV streams. Python required. Server runs at port 8030 (changeable)"
reloadui="yes"
Expand Down
3 changes: 2 additions & 1 deletion tvstreamrecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def total(timedelta):
localdate = "%d.%m.%Y"
dayshown = datetime.combine(date.today(), time.min)
shutdown = False
version = '1.3.2'
version = '1.3.3'

@route('/live/<filename>')
def server_static9(filename):
Expand Down Expand Up @@ -923,6 +923,7 @@ def deletetvb():
else:
sqlRun("DELETE FROM records WHERE uniqueid = ?", (uniqueid, ))
print ("TVB record '%s' has been deleted" % rows[0][0])
setRecords()
return "true"

@post('/create')
Expand Down

0 comments on commit e1c412d

Please sign in to comment.