Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
erikn69 committed Dec 12, 2023
1 parent 0bf7ec4 commit f57f9dc
Show file tree
Hide file tree
Showing 8 changed files with 298 additions and 414 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ jobs:
include:
- os: windows-latest
arch: ia32
- os: windows-latest
arch: i386
- os: ubuntu-latest
arch: armv7l
# Publishing artifacts for multiple Windows architectures has
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Printer emulator for zpl rendering engine. The emulator is based on the [labelary](http://labelary.com/service.html) web service. You can configure print density, label size and the tcp server to listen for any incoming labels.

[Releases](https://github.com/MrL0co/ZplPrinter/releases/latest)
[Releases](https://github.com/erikn69/ZplPrinter/releases/latest)

## New in Version 2.0

Expand All @@ -28,6 +28,16 @@ The app now runs standalone via Electron and can be installed via the binaries/z

## Release notes

### Version 2.2
* **Refactor** Reworked code
* **Upgrade** Bump dependencies

### Version 2.1
* **Refactor** Reworked entire app
* **Fix** Save labels
* **New** Support raw text file on save labels
* **New** Support pixels for width/height

### Version 2.0
* **Refactor** Reworked entire app to run in an Electron app instead of the Chrome Plugin API

Expand Down
83 changes: 18 additions & 65 deletions ZplPrinter/css/style.css
Original file line number Diff line number Diff line change
@@ -1,75 +1,28 @@
html {
margin: 0;
padding: 0;
}

body {
margin: 0;
padding: 0;
}

input:required:invalid, input:focus:invalid { border-color: #d9534f; }

::-webkit-scrollbar-thumb { display: none; }

.panel, .panel-heading { border-radius: 0 !important; }

.label-container {
background-color: #f8f8f8;
border: 1px solid transparent;
border-color: #e7e7e7 !important;
border-radius: 4px;
height: 80vh;
overflow: auto;
}

#label { position: relative; }
@import "../../node_modules/bootstrap/dist/css/bootstrap.min.css";
@import "../../node_modules/glyphicons-only-bootstrap/css/bootstrap.min.css";

.thumbnail { margin: 20px auto; }

.navbar-toggle {
display: block !important;
}
.navbar-btn-toggle {
float: right;
margin-bottom: 8px;
margin-right: 10px;
margin-top: 8px;
position: relative;
::-webkit-scrollbar-thumb {
display: none;
}

.modal-backdrop {
height: 725px !important;
margin: 42px 1px 1px !important;
img.thumbnail {
margin: 5px 0px 20px 5px;
}

.modal-content { top: 42px; }

#info { padding-left: 10px; }

.panel-heading-blur {
background-color: #215480 !important;
border-color: #215480 !important;
}
table {
width: 100%;
}

/* Notify */
.notifications {
position: fixed;
z-index: 9999;
width: 533px;
.notifications .alert .glyphicon {
font-size: 1.45rem!important;
}

/* Positioning */
.notifications.bottom-left {
left: 1px;
bottom: 1px;
.notifications .alert .msg {
font-size: 0.75rem!important;
}

/* Notification Element */
.notifications > div {
position: relative;
margin: 0;
input[type=checkbox]._big, input[type=radio]._big, ._big>input[type=checkbox], ._big>input[type=radio] {
vertical-align: middle;
-ms-transform: scale(1.5);
-moz-transform: scale(1.5);
-webkit-transform: scale(1.5);
-o-transform: scale(1.5);
margin-top: 5px;
margin-right: 10px;
}
Loading

0 comments on commit f57f9dc

Please sign in to comment.