Skip to content

Commit

Permalink
LPub3D v2.3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorsandy committed Jun 20, 2019
1 parent 9c0e19d commit fc0a521
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 35 deletions.
2 changes: 1 addition & 1 deletion builds/linux/obs/alldeps/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Last Update: March 23, 2019
# Copyright (c) 2017 - 2019 by Trevor SANDY
pkgname=lpub3d
pkgver=2.3.12.1355
pkgver=2.3.12.1356
pkgrel=1
pkgdesc="An LDraw Building Instruction Editor"
url="https://github.com/trevorsandy/lpub3d.git"
Expand Down
6 changes: 3 additions & 3 deletions builds/linux/obs/alldeps/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
lpub3d (2.3.12.1355) debian; urgency=medium
lpub3d (2.3.12.1356) debian; urgency=medium

* LPub3D version 2.3.12.1.1355_20190620 for Linux
* LPub3D version 2.3.12.0.1356_20190620 for Linux

-- Trevor SANDY <[email protected]> Thu, 20 Jun 2019 04:33:17 +0200
-- Trevor SANDY <[email protected]> Thu, 20 Jun 2019 04:52:54 +0200
2 changes: 1 addition & 1 deletion builds/linux/obs/alldeps/debian/lpub3d.dsc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Format: 1.0
Source: lpub3d
Binary: lpub3d
Architecture: any
Version: 2.3.12.1355
Version: 2.3.12.1356
Maintainer: Trevor SANDY <[email protected]>
Homepage: https://trevorsandy.github.io/lpub3d/
Standards-Version: 3.9.7
Expand Down
4 changes: 2 additions & 2 deletions builds/linux/obs/alldeps/lpub3d.spec
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ BuildRequires: fdupes
Summary: An LDraw Building Instruction Editor
Name: lpub3d
Icon: lpub3d.xpm
Version: 2.3.12.1355
Version: 2.3.12.1356
Release: <B_CNT>%{?dist}
URL: https://trevorsandy.github.io/lpub3d
Vendor: Trevor SANDY
Expand Down Expand Up @@ -717,5 +717,5 @@ update-mime-database /usr/share/mime >/dev/null || true
update-desktop-database || true
%endif

* Thu Jun 20 2019 - trevor.dot.sandy.at.gmail.dot.com 2.3.12.1355
* Thu Jun 20 2019 - trevor.dot.sandy.at.gmail.dot.com 2.3.12.1356
- LPub3D Linux package (rpm) release
Binary file modified builds/utilities/ci/secure/.secrets.tar.enc
Binary file not shown.
2 changes: 1 addition & 1 deletion builds/utilities/version.info
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2 3 12 1 1355 4be1300
2 3 12 0 1356 9c0e19d
2 changes: 1 addition & 1 deletion mainApp/docs/README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
LPub3D 2.3.12.1.1355 (20 06 2019 04:33:17)
LPub3D 2.3.12.0.1356 (20 06 2019 04:52:55)

Features, enhancements, fixes and changes
------------
Expand Down
15 changes: 11 additions & 4 deletions mainApp/docs/RELEASE_NOTES.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,19 @@
<table class="tg">
<tr>
<th class="tg-0pky">
<h4><a id="LPub3D_0"></a>LPub3D 2.3.12.1.1355 (20 06 2019 04:33:17)</h4>
<h4><a id="LPub3D_0"></a>LPub3D 2.3.12.0.1356 (20 06 2019 04:52:55)</h4>
<hr>
<p>
LPub3D version 2.3.12 brings several user interface enhancements and continued<br>
Follow the links in the list below to review additional details for enhancements, <br>
changes, and fixes deployed in this release.<br>
LPub3D version 2.3.12 is focused on completing and stabilizing the new enhancements<br>
deployed over the past three releases. Notable implementations include fully automated<br>
addition, removal and update of substitute parts from the PLI context menu. There is<br>
now an LDraw load message dialogue and the fully enabled support for LDCad generated<br>
parts. The MPD file format support has been enhanced to accommodate external files which<br>
benefit from the improved search directories for subfile references. Lastly, several<br>
improvements to the PLI and CSI render exception handling improves the user experience<br>
by minimizing the incidence of abnormal application termination. Follow the links in the<br>
list below to review additional details for enhancements, changes, and fixes deployed<br>
in this release.<br>
Cheers.
</p>
<hr>
Expand Down
21 changes: 0 additions & 21 deletions mainApp/highlighter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,27 +214,6 @@ Highlighter::Highlighter(QTextDocument *parent)
highlightingRules.append(rule);
}

// LPub3D Quoted Text Format
LPubQuotedTextFormat.setForeground(br27);
LPubQuotedTextFormat.setFontWeight(QFont::Normal);
rule.pattern = QRegExp("\".*\"");
rule.format = LPubQuotedTextFormat;
highlightingRules.append(rule);

// LPub3D Number Format
LPubNumberFormat.setForeground(br14);
LPubNumberFormat.setFontWeight(QFont::Normal);
rule.pattern = QRegExp("-?(?:0|[1-9]\\d*)(?:\\.\\d+)?");
rule.format = LPubNumberFormat;
highlightingRules.append(rule);

// LPub3D Hex Number Format
LPubHexNumberFormat.setForeground(br15);
LPubHexNumberFormat.setFontWeight(QFont::Bold);
rule.pattern = QRegExp("#(?:[A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})",Qt::CaseInsensitive);
rule.format = LPubHexNumberFormat;
highlightingRules.append(rule);

// LPub3D Meta Format
LPubMetaFormat.setForeground(br24);
LPubMetaFormat.setFontWeight(QFont::Bold);
Expand Down
2 changes: 1 addition & 1 deletion mainApp/org.trevorsandy.lpub3d.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<binary>lpub3d23</binary>
​</provides>
<releases>
<release version="2.3.12.1355" date="2019-06-20">
<release version="2.3.12.1356" date="2019-06-20">
<description>
<p>LPub3D Linux AppImage package</p>
</description>
Expand Down

0 comments on commit fc0a521

Please sign in to comment.