mirror of
https://github.com/FellippeHeitor/InForm.git
synced 2025-01-14 11:39:33 +00:00
Add wiki as git submodule
This commit is contained in:
parent
c23c1e85d1
commit
4e6a167f15
5 changed files with 7 additions and 4 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -4,6 +4,8 @@
|
||||||
!*.*
|
!*.*
|
||||||
# Unignore all dirs
|
# Unignore all dirs
|
||||||
!*/
|
!*/
|
||||||
|
# Unignore wiki
|
||||||
|
!docs/wiki
|
||||||
# Ignore all exe files
|
# Ignore all exe files
|
||||||
*.exe
|
*.exe
|
||||||
# Ignore all ini files
|
# Ignore all ini files
|
||||||
|
|
|
@ -4421,7 +4421,7 @@ SUB SaveForm (ExitToQB64 AS _BYTE, SaveOnlyFrm AS _BYTE)
|
||||||
IF AddGifExtension = TRUE AND TotalGifLoaded > 0 THEN
|
IF AddGifExtension = TRUE AND TotalGifLoaded > 0 THEN
|
||||||
PRINT #TextFileNum,
|
PRINT #TextFileNum,
|
||||||
PRINT #TextFileNum, " 'The lines below ensure your GIFs will display properly;"
|
PRINT #TextFileNum, " 'The lines below ensure your GIFs will display properly;"
|
||||||
PRINT #TextFileNum, " 'Please refer to the documentation in 'InForm/docs/GIFPlay.md'"
|
PRINT #TextFileNum, " 'Please refer to the documentation in 'docs/GIFPlay.md'"
|
||||||
FOR Dummy = 1 TO UBOUND(PreviewControls)
|
FOR Dummy = 1 TO UBOUND(PreviewControls)
|
||||||
IF PreviewAnimatedGif(Dummy) THEN
|
IF PreviewAnimatedGif(Dummy) THEN
|
||||||
PRINT #TextFileNum, " GIF_Draw " + RTRIM$(PreviewControls(Dummy).Name)
|
PRINT #TextFileNum, " GIF_Draw " + RTRIM$(PreviewControls(Dummy).Name)
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2023 Samuel Gomes
|
Copyright (c) 2023-2024 Samuel Gomes
|
||||||
Copyright (c) 2016-2019 Fellippe Heitor
|
Copyright (c) 2023, George McGinn
|
||||||
|
Copyright (c) 2016-2022 Fellippe Heitor
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
|
@ -53,7 +53,7 @@ Frees resources used by the GIF file loaded previously using GIF_LoadFromFile or
|
||||||
FUNCTION GIF_IsLoaded%% (Id AS LONG)
|
FUNCTION GIF_IsLoaded%% (Id AS LONG)
|
||||||
```
|
```
|
||||||
|
|
||||||
Returns True if GIF file is completly loaded and ready for use.
|
Returns True if GIF file is completely loaded and ready for use.
|
||||||
|
|
||||||
```vb
|
```vb
|
||||||
FUNCTION GIF_GetWidth~& (Id AS LONG)
|
FUNCTION GIF_GetWidth~& (Id AS LONG)
|
Loading…
Reference in a new issue