Merge pull request #604 from QuickFixGuy/master

Update Dependency Versions and fixed deprecated features
This commit is contained in:
Vadim Lopatin 2020-07-28 12:56:15 +03:00 committed by GitHub
commit 4508ad427f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 53 additions and 21 deletions

33
.github/workflows/pipeline.yml vendored Normal file
View File

@ -0,0 +1,33 @@
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!
# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.

View File

@ -50,11 +50,11 @@
"versions-windows": ["Unicode"], "versions-windows": ["Unicode"],
"libs-windows": ["opengl32"], "libs-windows": ["opengl32"],
"dependencies": { "dependencies": {
"derelict-gl3": "~>2.0.0-beta.7", "derelict-gl3": "~>2.0.0-beta.8",
"derelict-ft": "~>2.0.0-beta.4" "derelict-ft": "~>2.0.0-beta.5"
}, },
"dependencies-posix": { "dependencies-posix": {
"derelict-sdl2": "~>3.0.0-beta.7" "derelict-sdl2": "~>3.0.0-beta.8"
}, },
"copyFiles-windows-x86_64": [ "copyFiles-windows-x86_64": [
"libs/windows/x86_64/libfreetype-6.dll" "libs/windows/x86_64/libfreetype-6.dll"
@ -73,8 +73,8 @@
"versions": ["USE_EXTERNAL"], "versions": ["USE_EXTERNAL"],
"libs-windows": ["opengl32"], "libs-windows": ["opengl32"],
"dependencies": { "dependencies": {
"derelict-gl3": "~>2.0.0-beta.7", "derelict-gl3": "~>2.0.0-beta.8",
"derelict-ft": "~>2.0.0-beta.4" "derelict-ft": "~>2.0.0-beta.5"
} }
}, },
{ {
@ -84,9 +84,9 @@
"versions-windows": ["Unicode" ,"NO_OPENGL"], "versions-windows": ["Unicode" ,"NO_OPENGL"],
"libs-windows": ["opengl32"], "libs-windows": ["opengl32"],
"dependencies-posix": { "dependencies-posix": {
"derelict-gl3": "~>2.0.0-beta.7", "derelict-gl3": "~>2.0.0-beta.8",
"derelict-sdl2": "~>3.0.0-beta.7", "derelict-sdl2": "~>3.0.0-beta.8",
"derelict-ft": "~>2.0.0-beta.4" "derelict-ft": "~>2.0.0-beta.5"
} }
}, },
{ {
@ -94,9 +94,9 @@
"versions": ["USE_SDL", "USE_OPENGL", "USE_FREETYPE", "EmbedStandardResources"], "versions": ["USE_SDL", "USE_OPENGL", "USE_FREETYPE", "EmbedStandardResources"],
"versions-windows": ["Unicode"], "versions-windows": ["Unicode"],
"dependencies": { "dependencies": {
"derelict-gl3": "~>2.0.0-beta.7", "derelict-gl3": "~>2.0.0-beta.8",
"derelict-ft": "~>2.0.0-beta.4", "derelict-ft": "~>2.0.0-beta.5",
"derelict-sdl2": "~>3.0.0-beta.7" "derelict-sdl2": "~>3.0.0-beta.8"
}, },
"copyFiles-windows-x86_64": [ "copyFiles-windows-x86_64": [
"libs/windows/x86_64/libfreetype-6.dll", "libs/windows/x86_64/libfreetype-6.dll",
@ -112,9 +112,9 @@
"versions": ["USE_X11", "USE_FREETYPE", "EmbedStandardResources"], "versions": ["USE_X11", "USE_FREETYPE", "EmbedStandardResources"],
"versions-windows": ["Unicode"], "versions-windows": ["Unicode"],
"dependencies": { "dependencies": {
"derelict-gl3": "~>2.0.0-beta.7", "derelict-gl3": "~>2.0.0-beta.8",
"derelict-ft": "~>2.0.0-beta.4", "derelict-ft": "~>2.0.0-beta.5",
"x11": "~>1.0.17" "x11": "~>1.0.21"
} }
}, },
{ {

View File

@ -373,7 +373,6 @@ class FileDialog : Dialog, CustomGridCellAdapter {
if (ts.isNull) { if (ts.isNull) {
return "----.--.-- --:--"; return "----.--.-- --:--";
} else { } else {
//date = "%04d.%02d.%02d %02d:%02d:%02d".format(ts.year, ts.month, ts.day, ts.hour, ts.minute, ts.second);
return "%04d.%02d.%02d %02d:%02d".format(ts.get.year, ts.get.month, ts.get.day, ts.get.hour, ts.get.minute); return "%04d.%02d.%02d %02d:%02d".format(ts.get.year, ts.get.month, ts.get.day, ts.get.hour, ts.get.minute);
} }
} }

View File

@ -82,13 +82,13 @@ struct CSSToken {
string dimensionUnit; string dimensionUnit;
union { union {
struct { struct {
long intValue = 0; // for number and dimension long intValue = 0; /// for number and dimension
double doubleValue = 0; // for number and dimension double doubleValue = 0; /// for number and dimension
bool typeFlagInteger; // for number and dimension - true if number is integer, false if double bool typeFlagInteger; /// for number and dimension - true if number is integer, false if double
} }
struct { struct {
uint unicodeRangeStart; // for unicodeRange (initialized to 0 via intValue=0) uint unicodeRangeStart; /// for unicodeRange (initialized to 0 via intValue=0)
uint unicodeRangeEnd; // for unicodeRange (initialized to 0 via intValue=0) uint unicodeRangeEnd; /// for unicodeRange (initialized to 0 via intValue=0)
} }
bool typeFlagId; // true if identifier is valid ID bool typeFlagId; // true if identifier is valid ID
} }

View File

@ -3561,7 +3561,7 @@ class EditBox : EditWidgetBase {
int i = cast(int)i_; int i = cast(int)i_;
int startingDifference = rc.left - _clientRect.left; int startingDifference = rc.left - _clientRect.left;
wrapLineRect = rc; wrapLineRect = rc;
wrapLineRect.offset(-1 * curSpan.accumulation(i, LineSpan.WrapPointInfo.Width), i * _lineHeight); wrapLineRect.offset(-1 * curSpan.accumulation(cast(int)i, LineSpan.WrapPointInfo.Width), cast(int)i * _lineHeight);
wrapLineRect.right = limitNumber(wrapLineRect.right,(rc.left + curSpan.wrapPoints[i].wrapWidth) - startingDifference); wrapLineRect.right = limitNumber(wrapLineRect.right,(rc.left + curSpan.wrapPoints[i].wrapWidth) - startingDifference);
buf.fillRect(wrapLineRect, color); buf.fillRect(wrapLineRect, color);
} }