Review: Needs Fixing I'm pretty happy with this overall, just the field in the database which I think should be bigger.
Diff comments: > === modified file 'openlp/core/projectors/db.py' > --- openlp/core/projectors/db.py 2017-12-29 09:15:48 +0000 > +++ openlp/core/projectors/db.py 2018-01-13 05:52:32 +0000 > @@ -152,6 +152,7 @@ > location: Column(String(30)) > notes: Column(String(200)) > pjlink_name: Column(String(128)) # From projector > + pjlink_class Column(String(1)) # From projector Just one character? Space is cheap, make it bigger, just in case these classes become something weird like "18.02" > manufacturer: Column(String(128)) # From projector > model: Column(String(128)) # From projector > other: Column(String(128)) # From projector > @@ -197,6 +199,7 @@ > location = Column(String(30)) > notes = Column(String(200)) > pjlink_name = Column(String(128)) > + pjlink_class = Column(String(1)) Same here. > manufacturer = Column(String(128)) > model = Column(String(128)) > other = Column(String(128)) -- https://code.launchpad.net/~alisonken1/openlp/pjlink2-o/+merge/336065 Your team OpenLP Core is subscribed to branch lp:openlp. _______________________________________________ Mailing list: https://launchpad.net/~openlp-core Post to : [email protected] Unsubscribe : https://launchpad.net/~openlp-core More help : https://help.launchpad.net/ListHelp

