Skip to content

Commit

Permalink
Fix: Adjusted the default copies back to 1
Browse files Browse the repository at this point in the history
the three there was for testing and should have never been committed as 3.
  • Loading branch information
Paul Prins committed Jun 24, 2017
1 parent 3f8059c commit ec5e9ed
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion NodeDymoLibrary/Dymo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public async Task<object> Print(object args)
ILabelWriterPrintParams printParams = new LabelWriterPrintParams();
printParams.PrintQuality = LabelWriterPrintQuality.BarcodeAndGraphics;
printParams.JobTitle = "Dymo Labels";
printParams.Copies = (int)3;
printParams.Copies = (int)1;
if ( parameters.ContainsKey("jobTitle") )
{
Console.WriteLine("Dymo.cs Adding Print Job Title: " + (string)parameters["jobTitle"]);
Expand Down
Binary file modified lib/NodeDymoLib.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "printer-dymo",
"version": "0.0.3",
"version": "0.1.0",
"description": "An Electron Node.js addon for interfacing with Dymo LabelWriter printers",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit ec5e9ed

Please sign in to comment.