5 Commits
2.89 ... 2.90

Author SHA1 Message Date
d5edbc058c Update 'Modules/Post-To-Bastyon.ahk'
Added error handling to failed tag input
2024-01-15 00:19:08 +00:00
f70498afce add newline after fdrpodcasts URL for post body 2024-01-15 00:18:13 +00:00
Yuriy
a3f16aa6f2 changed back mewe always being unchecked by default 2024-01-12 22:25:59 -05:00
982f857640 add newline after fdrpodcasts URL for post body 2024-01-02 12:33:04 -07:00
Yuriy
0597c90144 Added error handling if freedomain.dev or chrome-for-testing API is not reachable 2023-12-18 23:33:35 -05:00
2 changed files with 5 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ global UpdateVersionNumber
#Include %A_ScriptDir%\Lib\Freedomain-Posters-Shared-Functions\JSON.ahk
#Include %A_ScriptDir%\Lib\Freedomain-Posters-Shared-Functions\RunCMD.ahk
#Include %A_ScriptDir%\Lib\Freedomain-Posters-Shared-Functions\Zip.ahk
#Include %A_ScriptDir%\Lib\Freedomain-Posters-Shared-Functions\URLDownloadToVar.ahk
@@ -122,7 +122,7 @@ ScriptSettingsSection := "SocialMediaPoster"
FileInstall, Version.ini, %A_ScriptDir%\Lib\Version.ini, 1
IniRead, ScriptVersion, %A_ScriptDir%\Lib\Version.ini,Social-Media-Poster, Version, 0.0 ; , Key [, Default]
IniRead, ScriptVersion, %A_ScriptDir%\Lib\Version.ini,Social-Media-Poster, Version, 0.0
ScriptName = Freedomain Social Media Poster
FullScriptName := ScriptName . " " . ScriptVersion
@@ -272,7 +272,7 @@ if(StrLen(ErrorLoggingDirectory) > 5 and !InStr(ErrorLoggingDirectory, ".exe")){
VideoURL := BitChuteURL
if(PodcastNumber != ""){
PodcastURL := "https://fdrpodcasts.com/" . PodcastNumber . "`n"
PodcastURL := "https://fdrpodcasts.com/" . PodcastNumber . "`n`n"
}
; Append bitchute url to bottom of description
@@ -306,7 +306,7 @@ if(StrLen(ErrorLoggingDirectory) > 5 and !InStr(ErrorLoggingDirectory, ".exe")){
(Telegram != "")?(TelegramCheckStatus := 0) : (TelegramCheckStatus := 1)
(Minds != "")?(MindsCheckStatus := 0) : (MindsCheckStatus := 1)
(Gab != "")?(GabCheckStatus := 0) : (GabCheckStatus := 1)
(MeWe != "")?(MeWeCheckStatus := 0) : (MeWeCheckStatus := 0) ; UNCHECKED ALWAYS as of 2022/04/08
(MeWe != "")?(MeWeCheckStatus := 0) : (MeWeCheckStatus := 1)
(Gettr != "")?(GettrCheckStatus := 0) : (GettrCheckStatus := 0)
(Steemit != "")?(SteemitCheckStatus := 0) : (SteemitCheckStatus := 1)
(Locals != "")?(LocalsCheckStatus := 0) : (LocalsCheckStatus := 1)