- GUI: remove unnecessary tabMain min size (better layout rendering on
Windows/Fedora); groupbox Composite -> GS1 Composite
@ -19,6 +19,8 @@ Bugs
|
||||
----
|
||||
- frontend/test_args.c: don't use WIFEXITED(), WEXITSTATUS() on Windows
|
||||
- libzint: fix some confusing error messages introduced by segment stuff
|
||||
- GUI: remove unnecessary tabMain min size (better layout rendering on
|
||||
Windows/Fedora)
|
||||
|
||||
|
||||
Version 2.11.0 (2022-05-24)
|
||||
|
@ -58,7 +58,7 @@ or Ubuntu 20.04
|
||||
|
||||
sudo apt install qt5-default qt5-uitools
|
||||
|
||||
or Fedora 36 (Qt6 NOT recommended, currently uses 6.3.0 which is flaky)
|
||||
or Fedora 36 (not recommended)
|
||||
|
||||
sudo dnf install qt5-qtbase-devel qt5-qttools-devel qt5-qttools-static qt5-qtsvg-devel
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 713 B |
Before Width: | Height: | Size: 294 KiB After Width: | Height: | Size: 292 KiB |
Before Width: | Height: | Size: 250 KiB After Width: | Height: | Size: 253 KiB |
Before Width: | Height: | Size: 140 KiB After Width: | Height: | Size: 140 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 994 B |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 952 B |
@ -255,7 +255,7 @@ right-clicking the preview.
|
||||
![Zint Barcode Studio main menu (left) and context menu
|
||||
(right)](images/gui_menus.png)
|
||||
|
||||
## 3.2 Composite Groupbox
|
||||
## 3.2 GS1 Composite Groupbox
|
||||
|
||||
![Zint Barcode Studio encoding GS1 Composite data](images/gui_composite.png)
|
||||
|
||||
|
@ -18,7 +18,7 @@ June 2022
|
||||
- 2.4 Zint Tcl Backend
|
||||
- 3. Using Zint Barcode Studio
|
||||
- 3.1 Main Window and Data Tab
|
||||
- 3.2 Composite Groupbox
|
||||
- 3.2 GS1 Composite Groupbox
|
||||
- 3.3 Additional ECI/Data Segments Groupbox
|
||||
- 3.4 Symbology-specific Tab
|
||||
- 3.5 Appearance Tab
|
||||
@ -418,7 +418,7 @@ also available in a context menu by right-clicking the preview.
|
||||
|
||||
[Zint Barcode Studio main menu (left) and context menu (right)]
|
||||
|
||||
3.2 Composite Groupbox
|
||||
3.2 GS1 Composite Groupbox
|
||||
|
||||
[Zint Barcode Studio encoding GS1 Composite data]
|
||||
|
||||
|
@ -5,26 +5,12 @@
|
||||
<property name="windowModality">
|
||||
<enum>Qt::NonModal</enum>
|
||||
</property>
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>704</width>
|
||||
<height>743</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>425</width>
|
||||
<height>440</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Zint Barcode Studio</string>
|
||||
</property>
|
||||
@ -140,22 +126,10 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QTabWidget" name="tabMain">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>346</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<height>346</height>
|
||||
<height>360</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="autoFillBackground">
|
||||
@ -171,7 +145,7 @@
|
||||
<attribute name="title">
|
||||
<string>&Data</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<layout class="QVBoxLayout" name="verticalLayoutTabData">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="grpData">
|
||||
<property name="sizePolicy">
|
||||
@ -538,7 +512,7 @@ for this symbology to defaults</string>
|
||||
<string>GS1 Composite symbol settings</string>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Composite Code</string>
|
||||
<string>GS1 Composite Code</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<item>
|
||||
|