Skip to content

Commit

Permalink
Prepare v1.7.0+1
Browse files Browse the repository at this point in the history
  • Loading branch information
rquadling committed Feb 27, 2021
1 parent f7cfd5e commit c457c96
Show file tree
Hide file tree
Showing 210 changed files with 163 additions and 103 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@ A GitHub copy of the Star Micronics Web Print code found at http://www.starmicro

# Versioning

As of writing this README, the version of the package from Star Micronics is `1.6.0`. But as we had previously published
this package to the NPM registry, we cannot use `1.6.0+1`, so, `1.6.0` will be released as `1.6.1`, but future versions
will be released using Star's own version number with the `+1` metadata suffix.
To allow for ease of upgrading, we take the standard package supplied by Star Micronics, add support for CommonJS module
format, and repackage it with a `+1` version. So, if the official version is `v1.7.0`, our version is `v1.7.0+1`.
Empty file modified Sample/A001.html
100755 → 100644
Empty file.
Empty file modified Sample/A002.html
100755 → 100644
Empty file.
Empty file modified Sample/ComparisonReceiptDesign.html
100755 → 100644
Empty file.
63 changes: 57 additions & 6 deletions Sample/Styled_ApiCombination.html
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,21 @@
}
}

function onAppendHoldPrint() {
try {
var type = document.getElementById('holdPrintType').value;

request += builder.createHoldPrintElement({type:type});

sampleCode += 'request += builder.createHoldPrintElement({type:\'' + type + '\')});\n';

updateSampleCode();
}
catch (e) {
alert(e.message);
}
}

function onAppendRawData() {
try {
var data = document.getElementById('rawdataData').value;
Expand Down Expand Up @@ -471,10 +486,12 @@
updateSampleCode();

showNowPrinting();
var url = document.getElementById('url').value;
var papertype = document.getElementById('papertype').value;
var url = document.getElementById('url').value;
var papertype = document.getElementById('papertype').value;
var timeout = document.getElementById('timeout').value;
var holdprint_timeout = document.getElementById('holdprint_timeout').value;

var trader = new StarWebPrintTrader({url:url, papertype:papertype});
var trader = new StarWebPrintTrader({url:url, papertype:papertype, timeout:timeout, holdprint_timeout:holdprint_timeout});

trader.onReceive = function (response) {
hideNowPrinting();
Expand All @@ -483,7 +500,7 @@

msg += 'TraderSuccess : [ ' + response.traderSuccess + ' ]\n';

// msg += 'TraderCode : [ ' + response.traderCode + ' ]\n';
msg += 'TraderCode : [ ' + response.traderCode + ' ]\n';

msg += 'TraderStatus : [ ' + response.traderStatus + ',\n';

Expand All @@ -497,6 +514,7 @@
if (trader.isBlackMarkError ({traderStatus:response.traderStatus})) {msg += '\tBlackMarkError,\n';}
if (trader.isPaperEnd ({traderStatus:response.traderStatus})) {msg += '\tPaperEnd,\n';}
if (trader.isPaperNearEnd ({traderStatus:response.traderStatus})) {msg += '\tPaperNearEnd,\n';}
if (trader.isPaperPresent ({traderStatus:response.traderStatus})) {msg += '\tPaperPresent,\n';}

msg += '\tEtbCounter = ' + trader.extractionEtbCounter({traderStatus:response.traderStatus}).toString() + ' ]\n';

Expand Down Expand Up @@ -1077,6 +1095,20 @@ <h4 class="clearfix">Unit Feed</h4>
</dl>
<div class="appendBlock"><input class="appendBtn" type='button' value='Append' onclick='onAppendUnitFeed()' /></div>

<hr>
<h4 class="clearfix">Hold Print</h4>
<dl>
<dt>Type</dt>
<dd>:
<select id='holdPrintType'>
<option value='default' selected='selected'>default</option>
<option value='valid' >valid</option>
<option value='invalid'>invalid</option>
</select>
</dd>

</dl>
<div class="appendBlock"><input class="appendBtn" type='button' value='Append' onclick='onAppendHoldPrint()' /></div>

<hr>
<h4 class="clearfix">Cut Paper</h4>
Expand Down Expand Up @@ -1140,7 +1172,6 @@ <h4 class="clearfix">Sound</h4>
</dl>
<div class="appendBlock"><input class="appendBtn" type='button' value='Append' onclick='onAppendSound()' /></div>


<hr>
<h4 class="clearfix">Raw Data</h4>
<dl>
Expand Down Expand Up @@ -1177,8 +1208,28 @@ <h4 class="clearfix">Root</h4>
<option value='black_mark_and_detect_at_power_on'>Black Mark and Detect at Power On</option>
</select>
</dd>
</dl>

<dt>Timeout</dt>
<dd>:
<select id='timeout'>
<option value='30000'>30 sec</option>
<option value='60000'>60 sec</option>
<option value='90000' selected='selected'>90 sec</option>
<option value='12000'>120 sec</option>
<option value='18000'>180 sec</option>
</select>
</dd>

<dt>HoldPrintTimeout</dt>
<dd>:
<select id='holdprint_timeout'>
<option value='10000' selected='selected'>10 sec</option>
<option value='15000'>15 sec</option>
<option value='20000'>20 sec</option>
<option value='30000'>30 sec</option>
</select>
</dd>
</dl>
<div class="appendBlock"><input id="sendBtn" type="button" value="Send" onclick="onSendMessage()" /></div>

<hr>
Expand Down
Empty file modified Sample/Styled_ApiReceipt.html
100755 → 100644
Empty file.
Empty file modified Sample/Styled_CanvasBarcode.html
100755 → 100644
Empty file.
Empty file modified Sample/Styled_CanvasFigures.html
100755 → 100644
Empty file.
Empty file modified Sample/Styled_CanvasHandwriting.html
100755 → 100644
Empty file.
Empty file modified Sample/Styled_CanvasImageFile.html
100755 → 100644
Empty file.
Empty file modified Sample/Styled_CanvasReceipt.html
100755 → 100644
Empty file.
Empty file modified Sample/Styled_CanvasText.html
100755 → 100644
Empty file.
Empty file modified Sample/Styled_Display.html
100755 → 100644
Empty file.
Empty file modified Sample/Styled_ExtDisplay.html
100755 → 100644
Empty file.
Empty file modified Sample/Styled_ReceiptLetter.html
100755 → 100644
Empty file.
Empty file modified Sample/Styled_StarWebPRNTExtManager.html
100755 → 100644
Empty file.
Empty file modified Sample/css/core.css
100755 → 100644
Empty file.
Empty file modified Sample/css/font-awesome.min.css
100755 → 100644
Empty file.
Empty file modified Sample/css/g_graph.css
100755 → 100644
Empty file.
Empty file modified Sample/css/howto.css
100755 → 100644
Empty file.
Empty file modified Sample/css/howto_scs.css
100755 → 100644
Empty file.
Empty file modified Sample/css/import.css
100755 → 100644
Empty file.
Empty file modified Sample/css/index.css
100755 → 100644
Empty file.
Empty file modified Sample/css/initialize.css
100755 → 100644
Empty file.
Empty file modified Sample/css/jquery.mobile-1.0rc2.min.css
100755 → 100644
Empty file.
Empty file modified Sample/css/reset.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_apicombination.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_apireceipt.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_canvasImagefile.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_canvasbarcode.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_canvasfigures.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_canvashandwriting.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_canvasreceipt.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_canvastext.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_comparisonreceiptdesign.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_display.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_extdisplay.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_receiptLetter.css
100755 → 100644
Empty file.
Empty file modified Sample/css/style_starwebprntextmanager.css
100755 → 100644
Empty file.
Empty file modified Sample/fonts/ipag.ttf
100755 → 100644
Empty file.
Empty file modified Sample/howto_en.html
100755 → 100644
Empty file.
Empty file modified Sample/howto_en_Android.html
100755 → 100644
Empty file.
Empty file modified Sample/howto_jpn.html
100755 → 100644
Empty file.
Empty file modified Sample/howto_jpn_Android.html
100755 → 100644
Empty file.
Empty file modified Sample/howto_scs_android_en.html
100755 → 100644
Empty file.
Empty file modified Sample/howto_scs_android_jpn.html
100755 → 100644
Empty file.
Empty file modified Sample/howto_scs_en.html
100755 → 100644
Empty file.
Empty file modified Sample/howto_scs_jpn.html
100755 → 100644
Empty file.
Empty file modified Sample/illust/Howtouse/Howto_i_01-2.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/Howto_i_01-2_en.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/Howto_i_01.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/Howto_i_01_en.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/Howto_i_02.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/Howto_i_02_en.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/Howto_i_03.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/Howto_i_03_en.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/Howto_i_04.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/Howto_i_04_en.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/Settings.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/StarWebPRNTBrowserSetting.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/ToSettings.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/ToStarWebPRNTBrowser.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/WebPRNTBrowser.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse/WebPRNTBrowser_top_i.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse_Android/FullScreenCancell1.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse_Android/FullScreenCancell2.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse_Android/Howto_a_01.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse_Android/Howto_a_02.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse_Android/Howto_a_02_en.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse_Android/Howto_a_03.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse_Android/Howto_a_04.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse_Android/Howto_a_04_en.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse_Android/Howto_a_05.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified Sample/illust/Howtouse_Android/Howto_a_06.png
100755 → 100644
Empty file modified Sample/illust/Howtouse_Android/Howto_a_06_en.png
100755 → 100644
Empty file modified Sample/illust/Howtouse_Android/StarWebPRNTBrowser.png
100755 → 100644
Empty file modified Sample/illust/Howtouse_Android/ToSettings-a.png
100755 → 100644
Empty file modified Sample/illust/Howtouse_Android/ToSettings-b.png
100755 → 100644
Empty file modified Sample/illust/Howtouse_Android/WebPRNTBrowser_top_a.png
100755 → 100644
Empty file modified Sample/illust/Howtouse_Android/ten3_icon.png
100755 → 100644
Empty file modified Sample/illust/WebPRNT_Logo.png
100755 → 100644
Empty file modified Sample/illust/num/num_1.png
100755 → 100644
Empty file modified Sample/illust/num/num_10.png
100755 → 100644
Empty file modified Sample/illust/num/num_11.png
100755 → 100644
Empty file modified Sample/illust/num/num_12.png
100755 → 100644
Empty file modified Sample/illust/num/num_2.png
100755 → 100644
Empty file modified Sample/illust/num/num_3.png
100755 → 100644
Empty file modified Sample/illust/num/num_4.png
100755 → 100644
Empty file modified Sample/illust/num/num_5.png
100755 → 100644
Empty file modified Sample/illust/num/num_6.png
100755 → 100644
Empty file modified Sample/illust/num/num_7.png
100755 → 100644
Empty file modified Sample/illust/num/num_8.png
100755 → 100644
Empty file modified Sample/illust/num/num_9.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_01.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_02_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_02_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_03_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_03_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_04_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_04_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_05_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_05_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_06_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_06_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_07.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_07_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_07_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_08.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_09.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_09_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_09_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_10.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_10_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_10_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_11.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_12.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_12_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_12_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_13.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_14.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_15_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_15_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_16.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_17_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_17_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_18.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_19_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_19_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_20_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_20_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_21_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_21_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_01.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_02.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_03.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_04.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_05.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_06.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_07_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_07_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_08_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_08_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_09_en.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_09_jp.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_10.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_11.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_12.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_13.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_14.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_15.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_16.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_17.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_18.png
100755 → 100644
Empty file modified Sample/illust/scs/scs_and_19.png
100755 → 100644
Empty file modified Sample/images/_products.jpg
100755 → 100644
Empty file modified Sample/images/ajax-loader.png
100755 → 100644
Empty file modified Sample/images/bg_overlay.png
100755 → 100644
Empty file modified Sample/images/border.png
100755 → 100644
Empty file modified Sample/images/footer-image.png
100755 → 100644
Empty file modified Sample/images/footer-logo.png
100755 → 100644
Empty file modified Sample/images/icon_loading.gif
100755 → 100644
Empty file modified Sample/images/linkicon.gif
100755 → 100644
Empty file modified Sample/images/logo_01.png
100755 → 100644
Empty file modified Sample/images/logo_02.png
100755 → 100644
Empty file modified Sample/images/products_1000.png
100755 → 100644
Empty file modified Sample/images/products_500.png
100755 → 100644
Empty file modified Sample/images/products_750.png
100755 → 100644
Empty file modified Sample/img/2inch/01-Receipt_Letter_ENG.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/2inch/02-Receipt_Letter_JP.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/2inch/03-Thanks_Letter.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/2inch/04-Kansha_Letter_H.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/2inch/05-Kansha_Letter_V.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/2inch/06-Kokuhaku_Letter.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/2inch/07-Sorry_Letter.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/2inch/08-Happy_Birthday.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/2inch/09-Happy_Christmas.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/2inch/10-Merry_Christmas.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/2inch/11-Happy_New_Year.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/2inch/12-Happy_Valentines.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/3inch/01-Receipt_Letter_ENG.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/3inch/02-Receipt_Letter_JP.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/3inch/03-Thanks_Letter.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/3inch/04-Kansha_Letter_H.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/3inch/05-Kansha_Letter_V.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/3inch/06-Kokuhaku_Letter.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/3inch/07-Sorry_Letter.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/3inch/08-Happy_Birthday.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/3inch/09-Happy_Christmas.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/3inch/10-Merry_Christmas.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/3inch/11-Happy_New_Year.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/3inch/12-Happy_Valentines.bmp
100755 → 100644
Empty file.
Empty file modified Sample/img/StarLogo1.jpg
100755 → 100644
Empty file modified Sample/img/StarLogo2.jpg
100755 → 100644
Empty file modified Sample/img/display/display_image_1.png
100755 → 100644
Empty file modified Sample/img/display/display_image_2.png
100755 → 100644
16 changes: 8 additions & 8 deletions Sample/js/StarBarcodeEncoder.js
100755 → 100644

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions Sample/js/StarWebPrintBuilder.js
100755 → 100644

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c457c96

Please sign in to comment.