Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions captbackend/Core/PrinterInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ void PrinterInfo::Report(std::ostream& stream) const {
// so that backends can be distinguished in the CUPS web UI.
stream << "direct "; // device-class
this->WriteUri(stream) << ' '; // uri
stream << '"' << this->Manufacturer << ' ' << this->Model << " (" CAPTBACKEND_NAME ")\" "; // device-make-and-model/description
stream << '"' << this->Manufacturer << ' ' << this->Model << '"' << ' '; // device-info/name
stream << '"' << this->Manufacturer << ' ' << this->Model << '"' << ' '; // device-make-and-model
stream << '"' << this->Manufacturer << ' ' << this->Model << "(" CAPTBACKEND_NAME ")\" "; // device-info/name
stream << '"' << this->DeviceId << '"'; // device-id
stream << " \"\""; // device-location
stream << std::endl;
Expand Down
12 changes: 6 additions & 6 deletions ppd/captppd.drv
Original file line number Diff line number Diff line change
Expand Up @@ -57,24 +57,24 @@ Option "cupsHalftoneType/Dithering type" PickOne AnySetup 40
#endif

{
ModelName "LBP800"
Attribute "NickName" "" "Canon LBP800, captppd $CAPTBACKEND_VERSION"
ModelName "LBP-800"
Attribute "NickName" "" "Canon LBP-800, captppd $CAPTBACKEND_VERSION"
Throughput 8
Attribute "1284DeviceID" "" "MFG:Canon;MDL:LBP-800;CMD:CAPT;VER:1.0;CLS:PRINTER;DES:Canon LBP-800" // assumed from LBP810
PCFileName "LBP800CAPTPPD.ppd"
}

{
ModelName "LBP810"
Attribute "NickName" "" "Canon LBP810, captppd $CAPTBACKEND_VERSION"
ModelName "LBP-810"
Attribute "NickName" "" "Canon LBP-810, captppd $CAPTBACKEND_VERSION"
Throughput 8
Attribute "1284DeviceID" "" "MFG:Canon;MDL:LBP-810;CMD:CAPT;VER:1.0;CLS:PRINTER;DES:Canon LBP-810"
PCFileName "LBP810CAPTPPD.ppd"
}

{
ModelName "LBP1120"
Attribute "NickName" "" "Canon LBP1120, captppd $CAPTBACKEND_VERSION"
ModelName "LASER SHOT LBP-1120"
Attribute "NickName" "" "Canon LASER SHOT LBP-1120, captppd $CAPTBACKEND_VERSION"
Throughput 10
Attribute "1284DeviceID" "" "MFG:Canon;MDL:LASER SHOT LBP-1120;CMD:CAPT;VER:1.0;CLS:PRINTER;DES:Canon LASER SHOT LBP-1120"
PCFileName "LBP1120CAPTPPD.ppd"
Expand Down