From 4e6a167f151ab4a0fff2f4bdccfbeebd26104971 Mon Sep 17 00:00:00 2001 From: Samuel Gomes Date: Wed, 10 Jan 2024 05:29:38 +0530 Subject: [PATCH] Add wiki as git submodule --- .gitignore | 2 ++ InForm/UiEditor.bas | 2 +- LICENSE.md | 5 +++-- {InForm/docs => docs}/GIFPlay.md | 2 +- {InForm/docs => docs}/frmbin format.txt | 0 5 files changed, 7 insertions(+), 4 deletions(-) rename {InForm/docs => docs}/GIFPlay.md (98%) rename {InForm/docs => docs}/frmbin format.txt (100%) diff --git a/.gitignore b/.gitignore index 3d026e2..d60640e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,8 @@ !*.* # Unignore all dirs !*/ +# Unignore wiki +!docs/wiki # Ignore all exe files *.exe # Ignore all ini files diff --git a/InForm/UiEditor.bas b/InForm/UiEditor.bas index a69e363..8894b5c 100644 --- a/InForm/UiEditor.bas +++ b/InForm/UiEditor.bas @@ -4421,7 +4421,7 @@ SUB SaveForm (ExitToQB64 AS _BYTE, SaveOnlyFrm AS _BYTE) IF AddGifExtension = TRUE AND TotalGifLoaded > 0 THEN PRINT #TextFileNum, 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) IF PreviewAnimatedGif(Dummy) THEN PRINT #TextFileNum, " GIF_Draw " + RTRIM$(PreviewControls(Dummy).Name) diff --git a/LICENSE.md b/LICENSE.md index b23502f..43c0bd1 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,7 +1,8 @@ MIT License -Copyright (c) 2023 Samuel Gomes -Copyright (c) 2016-2019 Fellippe Heitor +Copyright (c) 2023-2024 Samuel Gomes +Copyright (c) 2023, George McGinn +Copyright (c) 2016-2022 Fellippe Heitor Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/InForm/docs/GIFPlay.md b/docs/GIFPlay.md similarity index 98% rename from InForm/docs/GIFPlay.md rename to docs/GIFPlay.md index f63a6f6..d88d0ef 100644 --- a/InForm/docs/GIFPlay.md +++ b/docs/GIFPlay.md @@ -53,7 +53,7 @@ Frees resources used by the GIF file loaded previously using GIF_LoadFromFile or 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 FUNCTION GIF_GetWidth~& (Id AS LONG) diff --git a/InForm/docs/frmbin format.txt b/docs/frmbin format.txt similarity index 100% rename from InForm/docs/frmbin format.txt rename to docs/frmbin format.txt