diff --git a/Freedomain Social Media Poster.ahk b/Freedomain Social Media Poster.ahk index 8df8ce5..5ca8ae2 100644 --- a/Freedomain Social Media Poster.ahk +++ b/Freedomain Social Media Poster.ahk @@ -136,7 +136,7 @@ IniRead, TelegramBotToken, %SettingsIniFilepath%, SocialMediaPoster, TelegramBot IniRead, TelegramBotChatID, %SettingsIniFilepath%, SocialMediaPoster, TelegramBotChatID, %A_Space% IniRead, DiscordErrorLoggingWebhookBotURL, %SettingsIniFilepath%, SocialMediaPoster, DiscordErrorLoggingWebhookBotURL, %A_Space% IniRead, DiscordParlerWebhookURL, %SettingsIniFilepath%, SocialMediaPoster, DiscordParlerWebhookURL, %A_Space% -; IniRead, ChromeFilepath, %SettingsIniFilepath%, SocialMediaPoster, ChromeFilepath, %A_Space% +IniRead, ChromeFilepath, %SettingsIniFilepath%, SocialMediaPoster, ChromeFilepath, %A_Space% diff --git a/Modules/Post-To-Locals.ahk b/Modules/Post-To-Locals.ahk index 3dc3d28..a24636e 100644 --- a/Modules/Post-To-Locals.ahk +++ b/Modules/Post-To-Locals.ahk @@ -2,18 +2,21 @@ ; -------------------------------Locals------------------------------- PostToLocals: CurrentSite := "Locals" -; DevModeMsgBox("clik ok to continue") ; @todo: Add auto-login to locals SaveOrPostProgress(Message:="Navigating to Post Creation Page",PostType:="Tooltip,ErrorLoggingTextFile,DiscordErrorLogging") IniRead, LocalsURL, %SettingsIniFilepath%, %ScriptSettingsSection%, LocalsURL, %A_Space% -if(LocalsURL = "" OR !InStr(LocalsURL, "/share/post")){ - Message = Please add your Locals Profile URL to the settings.ini file under`n`n[General]`nLocalsURL=`n`nURL Needs to end in: /share/post + +if(LocalsURL = ""){ + Message = Please add your Locals Profile URL to the settings.ini file under`n`n[General]`nLocalsURL= SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,ErrorSummaryVar,DiscordErrorLogging") Return } +; /share/post is the legacy new post page. +; Starting in 2024 all posts are published through the home page now. +LocalsURL := StrReplace(LocalsURL, "/share/post") Status := NavigateFromBaseURLTo(LocalsURL) if(Status = "Failed") diff --git a/Version.ini b/Version.ini index bd73b5d..24f4ad1 100644 --- a/Version.ini +++ b/Version.ini @@ -1,2 +1,2 @@ [Social-Media-Poster] -Version=2.89 +Version=2.90