-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added: Command line option '--input' to specify font document xml file for command-line mode conversion. Tags app_rev and app_date for application revision and date. Completer to encoding's combobox. New tag 'out_image_preview' and settings to generate image preview in output file. Custom script to process pixel's data. Multiplicity of font's width/height. Changed: RLE minimal sequence block's count decreased to 1. RLE prefix for sequence with length == 1 changed from '(-1)(data[1])' to '(+1)(data[1])'. Tab page 'Prepare' in settings. Tooltips on toolbuttons. Set font's encoding to UTF-8 by default. Optimize height/width in Resize dialog. Fixed: Losing of empty parameters in Image settings block. Selection of template files in the settings. Clear the fill mask when changing the data block size. Editor's selection outline. Scanning of images of 1px width, splitted to rows, for predefined scripts only. Removed: Support for Qt version < 5.5. Ability to hide toolbars.
- Loading branch information
Showing
300 changed files
with
6,221 additions
and
5,241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# clang-format version 19.1.6 | ||
--- | ||
BasedOnStyle: LLVM | ||
IndentWidth: 2 | ||
--- | ||
Language: Cpp | ||
InsertBraces: true | ||
IndentCaseLabels: true | ||
BreakBeforeBraces: Linux | ||
PointerAlignment: Left | ||
ColumnLimit: 120 | ||
IncludeBlocks: Regroup | ||
# lowest priority first | ||
IncludeCategories: | ||
- Regex: '^<Q[[:alnum:].]+' | ||
Priority: 10 | ||
CaseSensitive: true | ||
- Regex: '<[[:alnum:].]+>' | ||
Priority: 20 | ||
- Regex: '"[[:alnum:].]+"' | ||
Priority: 30 | ||
- Regex: '.*' | ||
Priority: 1 | ||
SortPriority: 0 | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,4 @@ moc_* | |
*.qm | ||
version-included.txt | ||
revision.h | ||
**/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,27 @@ | ||
language: cpp | ||
compiler: gcc | ||
|
||
dist: trusty | ||
dist: focal | ||
sudo: required | ||
|
||
env: | ||
global: | ||
- MAKEFLAGS="-j4" | ||
matrix: | ||
- QT_BASE=55 | ||
- QT_BASE=56 | ||
- QT_BASE=59 | ||
- QT_BASE=5_15 | ||
|
||
before_install: | ||
- if [ "$QT_BASE" = "55" ]; then sudo add-apt-repository --yes ppa:beineri/opt-qt551-trusty; fi | ||
- if [ "$QT_BASE" = "56" ]; then sudo add-apt-repository --yes ppa:beineri/opt-qt562-trusty; fi | ||
- if [ "$QT_BASE" = "59" ]; then sudo add-apt-repository --yes ppa:beineri/opt-qt591-trusty; fi | ||
- if [ "$QT_BASE" = "5_15" ]; then sudo add-apt-repository --yes ppa:beineri/opt-qt-5.15.2-focal; fi | ||
- sudo apt-get update -qq | ||
|
||
install: | ||
- if [ "$QT_BASE" = "55" ]; then sudo apt-get install -y --force-yes qt55base qt55xmlpatterns qt55svg qt55script qt55tools; fi | ||
- if [ "$QT_BASE" = "56" ]; then sudo apt-get install -y --force-yes qt56base qt56xmlpatterns qt56svg qt56declarative qt56tools; fi | ||
- if [ "$QT_BASE" = "59" ]; then sudo apt-get install -y --force-yes qt59base qt59xmlpatterns qt59svg qt59declarative qt59tools; fi | ||
- if [ "$QT_BASE" = "5_15" ]; then sudo apt-get install -y --force-yes qt515base qt515xmlpatterns qt515svg qt515declarative qt515tools; fi | ||
- sudo apt-get install -y --force-yes build-essential libglu1-mesa-dev | ||
|
||
before_script: | ||
- if [ "$QT_BASE" = "55" ]; then source /opt/qt55/bin/qt55-env.sh; fi | ||
- if [ "$QT_BASE" = "56" ]; then source /opt/qt56/bin/qt56-env.sh; fi | ||
- if [ "$QT_BASE" = "59" ]; then source /opt/qt59/bin/qt59-env.sh; fi | ||
- if [ "$QT_BASE" = "5_15" ]; then source /opt/qt515/bin/qt515-env.sh; fi | ||
|
||
|
||
script: | ||
- if [ "$QT_BASE" = "55" ]; then /opt/qt55/bin/qmake lcd-image-converter.pro; fi | ||
- if [ "$QT_BASE" = "56" ]; then /opt/qt56/bin/qmake lcd-image-converter.pro; fi | ||
- if [ "$QT_BASE" = "59" ]; then /opt/qt59/bin/qmake lcd-image-converter.pro; fi | ||
- if [ "$QT_BASE" = "5_15" ]; then /opt/qt515/bin/qmake lcd-image-converter.pro; fi | ||
- make |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.