Merge branch 'master' of gitlab.com:gambas/gambas

This commit is contained in:
gambas 2020-12-04 18:59:30 +01:00
commit 1593e864b8
2 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,7 @@ build:archlinux:
glew glib2 gmime gsl gst-plugins-base gstreamer gtk2 gtk3 gtkglext imlib2
intltool libffi libgl libgnome-keyring libmariadbclient librsvg libsm
libxcursor libxml2 libxslt libxtst mariadb make mesa ncurses pcre
pkg-config poppler-glib postgresql postgresql-libs qt5-svg
pkg-config poppler poppler-glib postgresql postgresql-libs qt5-svg
qt5-webkit qt5-x11extras sdl2 sdl2_gfx sdl2_image sdl2_mixer sdl2_net
sdl2_ttf sdl_mixer sdl_ttf smpeg sqlite unixodbc v4l-utils xdg-utils
zlib gettext qt5-webengine webkit2gtk
@ -27,7 +27,7 @@ build:archlinux-clang:
glew glib2 gmime gsl gst-plugins-base gstreamer gtk2 gtk3 gtkglext imlib2
intltool libffi libgl libgnome-keyring libmariadbclient librsvg libsm
libxcursor libxml2 libxslt libxtst mariadb make mesa ncurses pcre
pkg-config poppler-glib postgresql postgresql-libs qt5-svg
pkg-config poppler poppler-glib postgresql postgresql-libs qt5-svg
qt5-webkit qt5-x11extras sdl2 sdl2_gfx sdl2_image sdl2_mixer sdl2_net
sdl2_ttf sdl_mixer sdl_ttf smpeg sqlite unixodbc v4l-utils xdg-utils
zlib gettext qt5-webengine webkit2gtk

View File

@ -12,6 +12,7 @@ Property MaxBounds As MapBounds
Property CacheRefreshDelay As Integer '' Delay before refreshing an image in the cache. (By default 30 day)
Property WMSProjection As String '' Set the projection used by the WMS server.
Property Opacity As Float
Property Header As String[] Use $aHeader
Private $aStack As New String[]
Private $aClients As New HttpClient[]
Private $iClientCount As Integer = 4
@ -369,7 +370,7 @@ Public Sub tmrGet_Timer()
hClient.Url = sUrl
'Print surl
hClient.Tag = sFile
hClient.Get(Null, $sCachePath &/ sFile)
hClient.Get($aHeader, $sCachePath &/ sFile)
Loop
End