From 546abb1cb2d68a7c8e6fffd42a08fb8beac9f178 Mon Sep 17 00:00:00 2001 From: Marcelo Lv Cabral Date: Thu, 25 Jan 2024 23:30:24 -0700 Subject: [PATCH] Fixed #13 - Menu Improvements and fixes --- Source/Class/MRUFileList.cls | 9 ++- Source/Docs/History.txt | 108 ++++++++++++++++++----------------- Source/Form/Post.frm | 32 +++++------ Source/Form/Post.frx | Bin 185871 -> 186511 bytes Source/Lang/1031.lng | Bin 181562 -> 181924 bytes Source/Lang/1033.lng | Bin 175448 -> 175782 bytes Source/Lang/1034.lng | Bin 177376 -> 177738 bytes Source/Lang/1046.lng | Bin 180004 -> 180366 bytes Source/Lang/3084.lng | Bin 181462 -> 181824 bytes Source/Lang/wbloggar.len | Bin 174614 -> 175254 bytes Source/wbloggar.vbp | 4 +- 11 files changed, 82 insertions(+), 71 deletions(-) diff --git a/Source/Class/MRUFileList.cls b/Source/Class/MRUFileList.cls index dfb1014..2cd0916 100644 --- a/Source/Class/MRUFileList.cls +++ b/Source/Class/MRUFileList.cls @@ -55,8 +55,13 @@ Public Property Get MenuCaption(ByVal iIndex As Long) As String Dim sOut As String sOut = CompressFileName(m_sFiles(iIndex)) - MenuCaption = "&" & iIndex & " " & sOut - + If (iIndex < 10) Then + MenuCaption = "&" & iIndex & " " & sOut + ElseIf (iIndex = 10) Then + MenuCaption = "1&0" & " " & sOut + Else + MenuCaption = iIndex & " " & sOut + End If End Property Public Function CompressFileName(ByVal sFileName As String) As String diff --git a/Source/Docs/History.txt b/Source/Docs/History.txt index 14b3f24..6e2d6a9 100644 --- a/Source/Docs/History.txt +++ b/Source/Docs/History.txt @@ -2,6 +2,12 @@ Software....: w.bloggar - Universal XML-RPC Weblog Interface File........: wbloggar.exe Document....: Log of changes and improvements +*** Release v4.06.0210 *** 25-Jan-2024 *** More Improvements and Bug Fixes +ADDED....: Shortcut for "Save as..." is Ctrl+Shift+S +CHANGED..: Increased number of recent files from 4 to 10 +CHANGED..: Default WordPress connection to HTTPS (port 443) +FIXED....: The question mark on titles was not being displayed on preview + *** Release v4.05.0209 *** 25-Jul-2021 *** Category Improvements and Bug Fixes CHANGED..: Categories window is resizeable and now shows 3 columns of items CHANGED..: Add Link window now shows https:// as default option @@ -26,9 +32,9 @@ ADDED....: Support to be used as a portable application, with no need to install to be stored on a usb pen drive; *** Release v4.02.0197 *** 28-Oct-2007 *** Version 4.02 -ADDED....: Support to new CMS tool: BlogEngine.NET; -ADDED....: Support to Upload images and files using API with: Wordpress, - MovableType, TypePad, Drupal, b2evolution, Nucleus CMS, Squarespace, +ADDED....: Support to new CMS tool: BlogEngine.NET; +ADDED....: Support to Upload images and files using API with: Wordpress, + MovableType, TypePad, Drupal, b2evolution, Nucleus CMS, Squarespace, Community Server and BlogEngine.NET; ADDED....: Option to select UTF-8 during the Add Account wizard; CHANGED..: Link to download Media Player plugin now opens w.bloggar download page; @@ -42,23 +48,23 @@ CORRECTED: Several API bugs and omissions were fixed; ADDED....: Support to page code UTF-8 (Unicode) to send and get posts and categories; ADDED....: Support to new CMS tool: Community Server; CHANGED..: Updated Drupal features support; -CORRECTED: Update Blogger API server and downgraded the API to 1.0; -CORRECTED: Preview ignore CSS field when was not changed by the user; +CORRECTED: Update Blogger API server and downgraded the API to 1.0; +CORRECTED: Preview ignore CSS field when was not changed by the user; CORRECTED: Loading posts now correctly uses the custom CMS tags; -*** Release v4.00.0193 *** 21-Mar-2006 *** +*** Release v4.00.0193 *** 21-Mar-2006 *** ADDED....: Support to new blog service: MSN Spaces; ADDED....: New Languages: Spanish, French (Canada) and Russian; ADDED....: Button to import the xml file with the saved settings and accounts directly from the "Add Account" wizard; -CHANGED..: The save post option now suggests the post title (when exists) +CHANGED..: The save post option now suggests the post title (when exists) as the .post file name; CORRECTED: Error "Invalid Tools Collection Index" during start up; CORRECTED: Error "Invalid Property Value" after selecting posts; -*** Release v4.00.0191 *** 11-Jan-2005 *** +*** Release v4.00.0191 *** 11-Jan-2005 *** ADDED....: Support to DearDiary.Net -ADDED....: German (Germany) language +ADDED....: German (Germany) language CORRECTED: Fixed editing post problems with TypePad; CORRECTED: Added workaround to a WordPress 1.2.2 issue; @@ -68,12 +74,12 @@ ADDED....: Support to the advanced MovableType options: Extended Entry, ADDED....: Support to Multiple Categories to blogs that uses metaWeblog API; ADDED....: New "Add Account" wizard to make easier setup new accounts; ADDED....: Ordered and Bullet List options to the HTML menu and toolbar; -ADDED....: New supported tools: Nucleus 3.0, Wordpress, SquareSpace, b2evolution, +ADDED....: New supported tools: Nucleus 3.0, Wordpress, SquareSpace, b2evolution, Blog:CMS, UBlog, .Text, BlogWare and Xaraya; ADDED....: Option to toggle the XHTML compliance to the tags; ADDED....: Option to change the interface language; ADDED....: New option to allow user to set the toolbar Blog List size; -ADDED....: Now is possible to ping not only Weblogs.com but Technorati, blo.gs +ADDED....: Now is possible to ping not only Weblogs.com but Technorati, blo.gs and ping-o-matic when a post is published; ADDED....: Pasting a formatted text is now converted to HTML tags; ADDED....: A new option at Edit menu to allow Paste as Plain Text; @@ -85,20 +91,20 @@ ADDED....: New Paragraph option on HTML menu and toolbar; CHANGED..: The .post files are now stored on a xml format; CHANGED..: The concept of a single default draft file is not used anymore, now you can save to multiple .post files; -CHANGED..: The Settings window was split in two: Options (with general app +CHANGED..: The Settings window was split in two: Options (with general app settings) and Blog Properties (with blog settings) -CHANGED..: The *.xml and *.chg files are now stored at the user�s +CHANGED..: The *.xml and *.chg files are now stored at the user�s Application Data folder; -CHANGED..: The HTTPS option at Account Properties now changes the +CHANGED..: The HTTPS option at Account Properties now changes the default port to 443 when checked and 80 when unchecked; -CHANGED..: The tray icon now is always visible if the "Minimize to Tray" +CHANGED..: The tray icon now is always visible if the "Minimize to Tray" option is selected; -CHANGED..: Now any option that would change the edit area will show up a +CHANGED..: Now any option that would change the edit area will show up a message box to ask if you want to save the current post; CHANGED..: The Recent Posts window now can be resized and maximized and it�s position and size are now saved; CHANGED..: The list at the Recent Posts window now displays the Title of posts - (when available) instead of the date/time; + (when available) instead of the date/time; CHANGED..: All Accounts and Settings are no longer stored on Windows Registry, now it's saved on a xml file; CHANGED..: More Text and Preview options moved from Tools menu to View menu; @@ -117,14 +123,14 @@ CORRECTED: Some minor bugs and interface enhancements. *** Release v3.03.0165 *** 16-Dec-2003 *** Version 3.03 ADDED....: A Preview menu option to make clear to the user the [F12] shortcut; -ADDED....: A More Text menu option to make easy to add the special tags to the +ADDED....: A More Text menu option to make easy to add the special tags to the extended text field on blogs that support it, the shortcut is [F4]; ADDED....: Three new supported tools: pMachine, TypePad and YACS; CHANGED..: Updated the Blog-City settings to the current API Server location. CORRECTED: Now the text between the More Text special tags is also converted when the "Auto-Convert Extended Characters" option is marked at settings window avoiding xml parser errors; -CORRECTED: Updated the special characters and symbols conversion table +CORRECTED: Updated the special characters and symbols conversion table to avoid errors on blog tools xml parser; CORRECTED: Now w.bloggar handles correctly the Category array on posts using metaWeblog API. @@ -133,14 +139,14 @@ CORRECTED: Problem with Windows XP that was not opening a .post CORRECTED: Some settings were not being correctly saved/restored to/from the Windows Registry. -*** Release v3.02.0158 *** 12-Jul-2003 *** -CHANGED..: Call a .post file using Explorer (or Shell Execute) when - w.bloggar is already running now activate it and also +*** Release v3.02.0158 *** 12-Jul-2003 *** +CHANGED..: Call a .post file using Explorer (or Shell Execute) when + w.bloggar is already running now activate it and also opens the file on Editor. CHANGED..: Category list is now sorted. -CHANGED..: The Blogger GetPostsMethod at CMS.INI now uses API 2.0 to +CHANGED..: The Blogger GetPostsMethod at CMS.INI now uses API 2.0 to avoid encoding problems. -CORRECTED: Title was not being retrieved when "Get Last Post" was +CORRECTED: Title was not being retrieved when "Get Last Post" was selected on Blogger Pro accounts. CORRECTED: Problems with Tab order on main window. @@ -151,11 +157,11 @@ ADDED....: The [Ctrl+Tab] keys was configured as the shortcut to toggle Preview the same way as [F12] key; ADDED....: Four new types of Blog Tools/Services are now supported: Blojsom, RollerWeblogger, LiveJournal and Lotus Domino (with blog API) -CHANGED..: Optimized the post process to MovableType blogs, to avoid +CHANGED..: Optimized the post process to MovableType blogs, to avoid publishing twice (internally) new posts with category. -CHANGED..: Now is possible to clear the "Extended Entry" field on +CHANGED..: Now is possible to clear the "Extended Entry" field on MovableType blogs just leaving empty the special tags. -CHANGED..: Now is possible to clear a Custom Tag entry, to do that just +CHANGED..: Now is possible to clear a Custom Tag entry, to do that just erase all fields. CHANGED..: Links and Images on Media String with relative paths now shows correctly on Preview. @@ -167,7 +173,7 @@ CORRECTED: The URL list on Add Link windows was being saved duplicating CORRECTED: In some cases the category was not being selected on combo box when the user edits a post. CORRECTED: All B2 method entries on CMS.ini now changed to B2 API. -CORRECTED: Blogalia GetPostsMethod entry on CMS.ini now changed to +CORRECTED: Blogalia GetPostsMethod entry on CMS.ini now changed to metaWeblog API to get title correctly on post edit. CORRECTED: Some minor bugs and interface enhancements. @@ -184,16 +190,16 @@ ADDED....: New Media tab on Settings window with options to configure ADDED....: Icon on Status Bar indicating if there is a music playing on Windows Media Player and a click on this icon or pressing F11 key will insert the Media Information on the post body -ADDED....: Support to the "Extended Entry" field on MovableType blogs +ADDED....: Support to the "Extended Entry" field on MovableType blogs thru the special tags ADDED....: New Custom tags to be accessed from Ctrl+F9 to Ctrl+F12 hotkeys -ADDED....: An empty alt parameter now is was added to the tag +ADDED....: An empty alt parameter now is was added to the tag that is inserted by image Upload CHANGED..: Now the last blog used on an account is recorded and automatically - selected the next time that a login is made on that account + selected the next time that a login is made on that account CHANGED..: Now both the Title and Category fields are resized proportionally when the main windows is resized, not only the title -CHANGED..: Enhanced the Preview engine to better convert the server-root-relative +CHANGED..: Enhanced the Preview engine to better convert the server-root-relative image url's when the blog is hosted on a sub-folder CHANGED..: Added new symbols to the special characters conversion table CHANGED..: When the user is on Preview mode and opens the Setting window @@ -206,7 +212,7 @@ CORRECTED: New verifications were added to the ParseValue routine to avoid the e XML-RPC parameters is returned empty by the server CORRECTED: Some minor bugs and interface enhancements -*** Release v3.00.0139 *** 17-Nov-2002 *** +*** Release v3.00.0139 *** 17-Nov-2002 *** ADDED....: Support for translation to other languages; CHANGED..: The AboutBox button "System Info" now shows the Windows Locale ID and the w.bloggar Locale ID @@ -221,10 +227,10 @@ CORRECTED: This file and the License file were not being installed *** Release v3.00.0132 *** 02-Nov-2002 *** Version 3.00 ADDED....: Title and Category fields on blogs that supports these features -ADDED....: Spell Checking +ADDED....: Spell Checking ADDED....: File and Image upload ADDED....: Custom Tags menu with ShortCut keys -ADDED....: Support to MetaWeblog API, MovableType API and b2 API +ADDED....: Support to MetaWeblog API, MovableType API and b2 API ADDED....: Toolbar Icons Skin Configuration ADDED....: Font Color Button ADDED....: Option to disable MessageBox on successfull posting (Silent Post) @@ -232,39 +238,39 @@ ADDED....: Option to Delete several posts on Recent Posts window ADDED....: Options to rename and delete accounts on Login Window ADDED....: Support to the Windows XP appearance and controls ADDED....: Two new Help menu options, a link to the FAQ and another to donations; -ADDED....: New field on Add Link window to type the text that will be placed +ADDED....: New field on Add Link window to type the text that will be placed between the tags and ADDED....: New field on Add Image window to set the border width; ADDED....: Option to set the post width on Preview -ADDED....: When the user clicks to open a Template will get an alert box if there +ADDED....: When the user clicks to open a Template will get an alert box if there are any non-saved changes on the current editing text; ADDED....: Treatment to the Tab key during post edit, and a new option on Settings window to set how many spaces the key will add; ADDED....: The file extension .post is associated with w.bloggar; ADDED....: Is possible to choose the file that saves the draft post; ADDED....: Is possible to choose the file with a default post; -ADDED....: An option to uninstall all settings saved on windows registry. - To activate just pass the command line parameter "-uninstall". +ADDED....: An option to uninstall all settings saved on windows registry. + To activate just pass the command line parameter "-uninstall". This option is auto-runned on w.bloggar uninstallation; ADDED....: Implemented the Save & Publish template button to Blogger.com accounts; -ADDED....: Created a button/menu option to insert the "Blockquote" tag with the +ADDED....: Created a button/menu option to insert the "Blockquote" tag with the shortcut key set to [Ctrl+J]; CHANGED..: The Auto conversion of special chars into HTML entities now is made in background, no more conversion as you type CHANGED..: The Account configuration now has a list of supported blog tools/services to make the setup easier CHANGED..: The context menu on Editor now has formatting options -CHANGED..: The "Reload Blog List" and "Ping Weblogs" options were moved from +CHANGED..: The "Reload Blog List" and "Ping Weblogs" options were moved from "Settings" window to the new "Account Properties" window -CHANGED..: Implemented a test to avoid several instances of w.bloggar +CHANGED..: Implemented a test to avoid several instances of w.bloggar loaded on memory CHANGED..: The blog list now is reloaded every time you change the current account -CHANGED..: The "System Info" button on About Box now shows the OS, IE and +CHANGED..: The "System Info" button on About Box now shows the OS, IE and XML parser versions CHANGED..: Now the Account alias and icon is shown on Status bar instead of - User Name. The click on this panel loads "Account Properties" window -CHANGED..: The proxy server configuration now has 3 options, no proxy, use Internet + User Name. The click on this panel loads "Account Properties" window +CHANGED..: The proxy server configuration now has 3 options, no proxy, use Internet Explorer proxy settings or custom proxy settings CHANGED..: The toolbars now can be moved to the bottom of the main window and the HTML toolbar can also float and can be docked on both sides; @@ -297,10 +303,10 @@ ADDED....: Option to automatically convert symbols and extended ADDED....: Support to a file name passed on command line. The file is opened on Code Editor CHANGED..: On Links inclusion window the text "http://" now appears - selected when the window opens, making easy the + selected when the window opens, making easy the URL copy/paste operation -CHANGED..: Now the most used ComboBox itens (Links, Images, - Classes...) are always moved to the top of the options +CHANGED..: Now the most used ComboBox itens (Links, Images, + Classes...) are always moved to the top of the options list, avoiding their exclusion CORRECTED: The way the PostID is handled on this release is totally compatible with the API definition and now accepts unique @@ -315,7 +321,7 @@ CORRECTED: Implemented a workaround to the java.lang.nullPointerException CORRECTED: Some minor bugs and inteface enhancements *** Release v2.00.0063 *** 29-Mar-2002 *** Version 2.00 -ADDED....: Credits to the translator on AboutBox +ADDED....: Credits to the translator on AboutBox CHANGED..: Now the first startup is much faster CHANGED..: All URL's now opens on a new IE window CHANGED..: Some common HTML error messages can be translated now @@ -326,7 +332,7 @@ CORRECTED: Some minor bugs and inteface enhancements ADDED....: Ping to Weblogs.Com CHANGED..: Improved the connection error handling CORRECTED: Some minor bugs and inteface enhancements -CORRECTED: Run-time error '5' (Invalid procedure call or argument) +CORRECTED: Run-time error '5' (Invalid procedure call or argument) on first start up. *** Release v2.00.0053 *** 11-Mar-/2002 *** Beta 1 @@ -353,7 +359,7 @@ CHANGED..: Connection settings now has separated window CHANGED..: Only Blog Admin users can access Template button CHANGED..: The post author name now appears on Recent Posts window CHANGED..: Post info trasfered from StatusBar to a big label above editor -CHANGED..: Doubleclick on a post in Recent Posts window open it +CHANGED..: Doubleclick on a post in Recent Posts window open it CHANGED..: Using now Ghost Setup a freeware smaller and better CORRECTED: Option to open w.bloggar page on help menu now opens correctly diff --git a/Source/Form/Post.frm b/Source/Form/Post.frm index ef76078..8d03154 100644 --- a/Source/Form/Post.frm +++ b/Source/Form/Post.frm @@ -168,7 +168,7 @@ Begin VB.Form frmPost FrameColor = -2147483628 FrameShadow = -2147483632 FloodStyle = 1 - _GridInfo = $"Post.frx":2C728 + _GridInfo = $"Post.frx":2C9A8 Begin SizerOneLibCtl.ElasticOne ElasticOne2 Height = 735 Left = 0 @@ -333,7 +333,7 @@ Begin VB.Form frmPost Italic = 0 'False Strikethrough = 0 'False EndProperty - MouseIcon = "Post.frx":2C797 + MouseIcon = "Post.frx":2CA17 End Begin wbloggar.HtmlEdit txtMore Height = 1485 @@ -353,7 +353,7 @@ Begin VB.Form frmPost Italic = 0 'False Strikethrough = 0 'False EndProperty - MouseIcon = "Post.frx":2C7B3 + MouseIcon = "Post.frx":2CA33 End End Begin SizerOneLibCtl.ElasticOne pnlEditor @@ -410,7 +410,7 @@ Begin VB.Form frmPost FrameColor = -2147483628 FrameShadow = -2147483632 FloodStyle = 1 - _GridInfo = $"Post.frx":2C7CF + _GridInfo = $"Post.frx":2CA4F Begin VB.CommandButton cmdCategories Caption = "..." Height = 315 @@ -456,7 +456,7 @@ Begin VB.Form frmPost Italic = 0 'False Strikethrough = 0 'False EndProperty - MouseIcon = "Post.frx":2C83F + MouseIcon = "Post.frx":2CABF End End Begin SHDocVwCtl.WebBrowser webPreview @@ -546,7 +546,7 @@ Begin VB.Form frmPost Height = 240 Index = 1 Left = 4020 - Picture = "Post.frx":2C85B + Picture = "Post.frx":2CADB Top = 6000 Width = 240 End @@ -554,14 +554,14 @@ Begin VB.Form frmPost Height = 240 Index = 0 Left = 3720 - Picture = "Post.frx":2CDE5 + Picture = "Post.frx":2D065 Top = 6000 Width = 240 End Begin VB.Image imgHand Height = 480 Left = 1440 - Picture = "Post.frx":2D36F + Picture = "Post.frx":2D5EF Top = 5880 Visible = 0 'False Width = 480 @@ -569,7 +569,7 @@ Begin VB.Form frmPost Begin VB.Image imgIcon16 Height = 240 Left = 1140 - Picture = "Post.frx":2D4C5 + Picture = "Post.frx":2D745 Top = 5940 Visible = 0 'False Width = 240 @@ -1381,7 +1381,7 @@ Dim strExcerpt As String, strKeywords As String OpenPost Case "miImportText" ImportText - Case "miFMRU1", "miFMRU2", "miFMRU3", "miFMRU4" + Case "miFMRU1", "miFMRU2", "miFMRU3", "miFMRU4", "miFMRU5", "miFMRU6", "miFMRU7", "miFMRU8", "miFMRU9", "miFMRU10" If Not CanContinue() Then Exit Sub Call LoadPostFile(objMRU.file(Tool.TagVariant)) Case "miSave" @@ -1751,15 +1751,15 @@ Dim strExcerpt As String, strKeywords As String DeletePost gPostID, (Tool.Name = "miDelPublish"), gSettings.Silent End If End If - Case "miHelp" - ' Call ShellExecute(Me.hwnd, "open", App.Path & "\wbloggar.chm", vbNullString, CurDir$, SW_SHOW) + Case "miFAQ" OpenWebPage "http://web.archive.org/web/20090330164700if_/http://wbloggar.com/faq.php" Exit Sub - Case "miWebPage" + Case "miHelp", "miWebPage" + ' Call ShellExecute(Me.hwnd, "open", App.Path & "\wbloggar.chm", vbNullString, CurDir$, SW_SHOW) OpenWebPage "https://github.com/lvcabral/w.bloggar" Exit Sub Case "miDonate" - OpenWebPage "https://www.paypal.com/xclick/business=paypal%40wbloggar.com&item_name=w.bloggar&item_number=1" + OpenWebPage "https://paypal.me/lvcabral" Exit Sub Case "miLicense" OpenDocument App.Path & "\License.txt" @@ -1886,7 +1886,7 @@ Dim objTool As Tool 'Load Most Recent Updated Files Set objMRU = New clsMRUFileList objMRU.Load - objMRU.MaxFileCount = 4 + objMRU.MaxFileCount = 10 DisplayMRU 'Initialize Music String strMusic = "*" @@ -2548,6 +2548,7 @@ Dim strPost As String, strTitle As String, strFName As String End Sub Private Sub DisplayMRU() +On Error Resume Next Dim iFile As Integer, iCount As Integer For iFile = 1 To objMRU.FileCount If (objMRU.FileExists(iFile)) Then @@ -2562,7 +2563,6 @@ Dim iFile As Integer, iCount As Integer iCount = iCount + 1 End If Next iFile - ' Debug.Print (objMRU.FileCount > 0) acbMain.Bands("bndPopFile").Tools("miFMRUSep").Visible = (iCount > 0) End Sub diff --git a/Source/Form/Post.frx b/Source/Form/Post.frx index ef17a8cb24ed3ab473d03c6049bd442d430cccdf..01ca1eaee14e0ca2ddc7514686d9beac8addd7f8 100644 GIT binary patch delta 859 zcmZvaUr19?9LLY^?9RJ3t!eXL=p56iWSBEtDk~*Op)9NnmY`_(5~4SbS8)`hO%yt~pS5w#3_ih(Oukc_p5=)s3tY`~CcW=Xby7jQLGt zFHMWvB?Sw9jGBg0zZ2&ox%X?)0=l?#Wy&v_OW)1n3pYtLFsOIGMF^2E$x_|>4MZS# zm|E|FQ6K-7k!M%S@OXkOt(54J+sq|fD@J`F4-le_PAJEfg~Te`@KP~pl8dmv%ontf z0ojNn4sus6(a$$z$j)Q97#B5?*K!4pw~(l8$0O~&pcU72ind^cGoYVu@>5+Qp2#~c z(GjXLakillFLr%=rFzxv%xfjR8xNpZ{IT)LMEg8oAg)b^r8YgO8|AupwDk+7MyXH> zc5dBzD2H}<;0WVfjGNfQ(SKYSx67SY`=Q-_)1$O$7^H~wu>3VEOcou3v36OlsX^g=}0@cB`zNx6*6u7JHuKtw=X3e zU{@sm!*C8G z1@9U!rDy0<&*?t1##6ZmT+;Cy@WjB7xt=tV)_iKC^=s*^X8`<~TfUb0uU5%(2SS`B z^S*?~3ZF^Up8gP;j#0A{D)9>-ZHh$_ywH))DM5voA``H6f)lb<`GuHg<}-Q3PrkFKgw^UO z0|Ue4+lOSCPhDh~%(!28xTwjM@7X|jt_jdS*IUhVl>;Vb3~7uWq}}& zdtnNr$mXK+^B^h=R3R#Srgzmda!t;=QpG5|`Q??1+?)424q*fvlHdqaBG@HBOA)L`>JDUV!mpDWl z+a0hoeLx|y{hdCe0Mv1k5OK5ZHYSV#OklMa1fgP+?|l^8{=kfJ0V~8@MVQ)sHjGao zE-Z+Hi1|$}*vGNWi?MKui&M0u)oLXEbBlz&JVJfXL(v`vbNg0*0w5%LCE7 ztlNRX{z{W2AmJ`+`@VgQ+xP8bO5vRTVJZ`cJ_CaYLkL4Y5auu#Gng_M0ihu<#ee`7 Und#LmjNVKVFSo0lV9FK%08H@j?*IS* diff --git a/Source/Lang/1031.lng b/Source/Lang/1031.lng index e5fd0e5df7f7ed7c8404b2699b485c35ae519848..f748427f1bf59eae06c70954302a1c59ce0c90c4 100644 GIT binary patch delta 3852 zcmZYCe@vA39l-JDIq*u5BDM6%RUgmuWR7fvpdOVPYG}s@ZICj`3~3lW5f$lyCq;*p zB5f(+&mtenorv^AOq`*X2@&R~qt;YoP2-lWWeqXT@CQ@YTnJm3BX;lSd9G;_F)u%# z@8|hG-{<>$pYL;UmkuuMJF;+*swm20C5HbMC0cpz_lwkxlAZ6C)O=0i@^uMs)a9=j z+31#DVhbvfzfqGEY8r8fenB*F-Zsv=m7k$%^5<8c9MoUl6o1TbkKJW+FusPtfl^I% zhEl)dXKj?C7}wu!Qxv0Z^$DfQ>8K3&eE9eZF*%}d>g*|d`pNBiFEx_pTX=tMnA@dCbl-7YDwYZ6QT zEw}#{T*Pf2UGpwY%63_E$|E<%O(VwdVhj1LrJL~UGDhCxcS~!e=A%|Xo=P;9*Fl`$ zX`O$EczGw=2rZ~YKGy7Xi_S5&Ogqg#VF*Dqz>91oBM#vjb`?g@jV6>M7b!@s53oFhMq8f?OPIAO!X19q9Nx7P6%@qE2o zg7vHm`K!bYa2t{Fl}kPWsF@vxSQI6# zBq0XVt*i}(5JUsK$VM{a5Z=$)Us&ZI=5sYU9L! z?Z@QbM>JWqWr2(nFCNjQ3&vVC(>CsHm^{cfLOuFE&Lj9#>$68TsI4eavv zc1>;{v+m&fF>43(({3ZL4n8Kkk1dsA+L>@68dGiTQVgJ@O_Lhp?cH`MAzx4Kgbmfy zrr+oH!~51#9wImHEJ(WnUSv~q6YaQnl$RM7(207K;svZiER6GOgVsEYgUpNESbZ0H zG^PU9v6}(rM}Cx86L3ojxzR6+b`oMR-N|n0Vr0UFXiW96yD`v{uzs@-79ittRWL4L*_7GjZ&p-Hcwfvs&eY|lZ%R|ZC3WuwPXpClmGrp%vomb3}dhQ={io0cVvOv$8JTx`XcreTBh{0e71-z5EM~20n^apSG>ZmAidO zQ4b4L`SkRYqMwP6Dl9cGDOqP?ZQAz1yfahLk1400i3(r#$m;OA!J2b33!}z*J%L}n ztv)r_aPf2Nu(#6_P`C08r1Ou>>eGQws@0DNZ;W;=RBPlP*VZPcGxbd6iA>|Wg7Gt} zb{-JdHFxwa=c300O&{8p$kerz#AnQI$9~i;@O`)C(LZ!sXN_il^RPw>9taftMop7} z&tf81%y^{F@kjbR`$(UzANmAFkJ@6Gl{0BE&tr#@!$v4neyyxl(jGbO#E(w%w{Y5> z&z*w@uji=d(zSJ^n`<+ebi?+zS;@MQZZ2l|*HcfJg@XS@x`h6js|G5aw%DiyWmO>H zvaOW(`wscpHOJtF`_tB1`=`oitWK3?MasYCL!>WGTE0#hPH?H`7MMq~>emi``V;kpHRFL`WWa&7 z>WozyyJ!u_m7lRLF?P+Uqzu29qaKg3W_RDL1gI<=cD<}>)~Vrm&+v04>L*sGaH?mR zz4NSf-S7ra;Q2~*o%-?c-b(dvTGUvfXPC|Q#m}R>>(loy|41EP{*i5kHazs1twsGm Do>AQN delta 3446 zcmY+`4@?y48OQON0VzR?bfqK30ddNC)>=xrb0Neaa)wwU$WcNpp$HTa5fKqML=F)V z5IK(92U(=ZA#j8eLa1w5L$Ab;JJRUoLNAT2#$JdqlzK=kHH45;`(>9VE#$Mmci(q* zW}f$b_fP)^>&KhcZ&VdUu_)d=DvGDF_jeoBMA@HY$c`jaEJ?aNPc-FWq9GILMSY?! zx#R)tf*<4K9M{3|wPY5rolc5UH_M-YvB_Z^O7oTJ6l%fpfcn=jgi%OhB z72ZcR&Z7nwP>YMG!zI+C0gbqf)xR@Z0FOFe^S9SSQC3SUVU(wDy#C+8n6<&v?!mRO zx)4Y0uXL3@>C6mVjj_xWDaWgFL0>$5p`jjSd!$apgJB+HI@N}E2zJL?R~j#}g)0b#IUsf1<61bR`A0wf^< zI#y1z?3ly=noxukSWoNXf7+B+l=+DA?ojFw?MB*#NPf?dw-JDE%MF>qXBb2?ijj(_ za>^&Y@U)C&$IUWbTFcn>Lv-}u=4dqBj3`}_8X%+S3CfZSnOvGV3e6Vni`Z0En^(QNkf!K4V>?D2Z zpQpa*3#|VIK3U1y3)GJUgu#NP8tTUcdQp!8Bq0JiR?f5jn8W~@P=pj%5r|jR_83zb zLJLZec8TqOiS2)h`Y~Ha{dKwwlFcYaDxzT288+g{MYcbN(RwjR$}Vn^!?gDx1fH0y zHRKD7q74iY%Bk%l1mcLP#D%x4J6KL-sE#&hCzL*+VezLcL@=<^! zL_o(%J>_E(1871KQeZ_OUQya(OkoHulwC;KQ_Z^cH=EMZ%yb|P(Flfy*(*#3MqooZ z(h+k-7vqX4UgVP|Q@(6sJD?qv$V42r!v_nO*$x;(C#sQiS(jKc6yBI`3=-A0MV@@b z{9+ibD8*syK?poC*UJ22wAGYOvKl$9oR18JH|9TNd*K#3P=%}ynO`yt7A&=}y)c1Z z)VJ`(-@+#=xr^t1c<}*mFMNs~)FB@S5e|PWGgprgYiE7!Y;P>K^Y+F#x>1WfBp?hH zEM4XLS6N@O3pL2S%JslkL{IM)tA9v6%tS4E5G(?Lo0rY9) zjE#>sn<*nUU7E>qo~P4}qHU5jU0lD5>yr`CvGNyuOz=YQ|_EQJ@sY91xvYjj?Gs!*V_73(F7VLbzFxO*b8*^Pj zJBM~x*Q`w4@RRNvJEY|X_kc7+BN!THd$KISWq z^u$~@dk~{&Lj^Jri_mVq*~!K0?1Afi#9!w)m8;*{%9$oo`7+pRsOcA1|<9*`WSFOO2OXeW6;&A$izmdX#3k z4wkS1A1&&rBe;Lg^E=b;SUqMUqeOiW>Dd3<#q}ODJEQDBy{LZQk@Wj1_i&AGlzrcB zew62r*QuKv&&Geg!S36qc{^h7=Blm}6c4+Pa4g@`zU%5~eH7(TA8fU_p7e~mh7U>i zptqy?n;3OtmU{+x^ipD!82bfN+br|*0qS1+zdqA8JB(-Z?rV>}bl+P1;+U`NT*^A@ z>b=@0-ch}rv8wuYfUA2n(dxQKXGx$M=YFZ*KG%`X#bC8qb074})tw`4ed^=x7uNRiIIi5do z_xw9q-R3?=*0)yYmQ3}J?(vYINcUW_22SfS_3>JnKZ&$&EmR}5QB}tK^PCffYLV{I z8XM_kDenE)qh~O(;pK?xd^w_R(|?rz|FgID%wPHMetb*WtwiwuGx^7SkQ(EfQZb(C K&fw3rdi6hJGa2;& diff --git a/Source/Lang/1033.lng b/Source/Lang/1033.lng index eb603d0e45ebde41b8f3958a5fee1175009e14e7..caaacf2be77678bc44d4487b91ce9ca781fbd23e 100644 GIT binary patch delta 3834 zcmZwJ4@{Kz8Nl)PJ&uzhMW*x>%PT$Kv4*yk-3)V#TpcyUvIZILm?4I_6RAZ+KzmxX zlrp7=iikXxyDG91>B1~?OlV=wIo8;QG^TS+*N~1e(=cnyg^-3V#4)$;@7}XEaV8(1 z=l8t7_kDl=-qZ0<FXrF$dargLlTNinOSGb#~4{> zNe{6ZRVZ3#NG3IdI7Gi7>bY+V_gyQ>(GB_YkCqIYKU|-9yw2s=;TY`O*rvEdPYay>jF|v_@`Avp=y2+Hw=s`28P=u8* zaNB3fB;NHcms($}^!p5{@wud(njfX`!u^6N&KC^%Y>OpVx7gzt*kZ~F>_Hjwkd8Qn zpEuGzO^gqHom}Kjkb{JB=!yZ#1xq7aLn7D%@RA(>U zM4c(4Vj@O9i_gNC$$GVVjAg+d`BF|5tc55$32N$5m+qKsocO&fz z6d)5xm}L#daS5S4e0i_hN44@*`+bG9JxHdl_HVAikWU)yKBMH_4IC}n)hI?bQZWAt zUmmWY53Q&}336b*Vs;Rw>N!g2M?3r|g%@r(5AgNvH{~h@Z~}W!hCHMr4&k41WH5vv z>fu8^GLV3oMve?d(1k`+pa7Xj!YorA$0eqF@>NTkn(b*)SHxETWtwXF0PGAqpkcV`{A>6{+U!2a~4q8${ ztU2J40&1D$@ziFSx2la3-)Xia6lpJze;zet(dJkgC%$vkl#@_v)kIs(rIL0bJV?e| zE1w-k(Tf&TqZrvp!Tb@9&=G!-j#$!1RPSx2R)-Sgz&v7h5T*`ujL?sE_)!Wk+=p2v zVJq;j4pTnGW%QsKRVczr7~qt5bQm&u+@8VMar*@H({3lP2`-Rb$5W-0wij+VakHIM ziUFKxH)JPqa+gcW$aBfl;6M$v@G<^|0GQst}$#C!>3n9VtRM0%=RQnMtOpa_wXV0@PQEV)x>A0sU^xLS6h@qdp^WaaRq&7MIB0z12bfH5T<_4P|=Te_)!Wk+;HM% zH>Vu~-AOAJYa1%mf1foiNh{ZCv0VwJM-%9MJ1FrX?rPL zP3G-^+NJt8Vsn>~%8HTYv16&KsJrzCV=k@G<;>X!rK>kCb}~zq|C6gPiyiW+^ymYQ zWw9Agsr1nTeMQXd4|MtC*(GAWnHbZyUfsAv^4^Shtoi9+;hTSQE?DS^nJIcaCU8Di zUo}{IE^DE4^ts1l1`oeI7`f)#61^tw8wQhY(wB+;)~UgP->q60m~L^z$&L3ilfT2L zz1r8k|Be2c)jJObLaDmtyq31;fxtwI{pGJos#1L9ZpD3LgC2-abi^-8 z(jMWZS=v*0R?CvW=idsPOVv{bCqI8Xvi^0!yEk16uSisn@pRfd;vLNX_mQQlGBf#= zJsMuTL{GK1?xSdVxN52XtRvF%*4@(FGJQB!mGW-iErlP}{}CDbKuYG96G~C1Y&h!) zeeVOR_vot3m|>2}_Q)GXpQhvV)B396((miX;#3FEHabv}$dhK;Xtk8+zlvO&Ie+iD z28VFru>3^7=v<etq0tj_2l7DxxV2+=jcZ~>&{F1tw)`{ b+$UlVhR^83;WLhkuQ^hthChDG(WL(m%T3rC delta 3486 zcmaLZe@xW(9mnzS_kpabbp0B!n1ah+`e@`91t&$&wv;@cP{6 z`}6(ze7<+r_r&+nW8c-Pq9``ShyRM=rELGhYIT=BLPqQk8c0a>%t;x(@L%!Xs$>3gHT4`6)&ZHfWQ21bOzabCz>oSZk)FKaw2!{;|xw<^Y2zpSD z0wg068W#8I@;8j34~-~73Zk$cOO*GN@3m(j#sHkCKnCJq zz>3)ex;(%Qw84QaBplErg!IBp9`)x@e;)Ot5}EYvpf8kMMUEHhaue-1foyz;O<0NN zhjjT1Zle=5$US68G8uVD6F>50fi9152i>ScK9Udtf4n*vBu@?o$|&_+LBm0&y+o63 zC58l-P&cNFsT%`uq5>JknnV{HViap;*HjVHj_YVa8PbakNhqRh+FrEh4{LJ&upzg| zRDuuw()Rhrx; zJ5hsN?8FxM;bkRLUunn~*;lDa9hr|LM8F@fsBZ$JxPk^0Vt2J6G1V-4STOww(~ki- zQGpD^!GIOBC#WAc&;|#xkbp4wV*WVw#;;_PjMIhXhtd0&anK?u>8+Z zKc?%bzfO~@WD`n|ifHI{x|5hX&GN@}w44r-^3#EmPCFJM@WM>3F848rR#YMr@wJp+ ztBDW!g0jaOc=8*V{sv7>(9WivNP81$BcGq;E9flKPxhRpd=wxVkVbyA{;g>T;%!}nP0LKHORfl z^~p$RSZrl}G1jU{H(7^#Bq0L+cqLpPqqri>Cs~R##E2$q>9dfNPCnk8h7340X(B6l zpFumCwn5f(a{W%OPeww+;_tXV#?XgG6d?ssSdXO+))(%gAI&I58e$L(3#LD1Jz)S& zR3HO!FktAJj0nlE!lNJ9*QVZn4acZ2~rQGpD^!GIOBpYef*8)$Nak?H5(5`FqX$v1a~W+xF)7n@wr7o9`9H zPq8aSO0Kd?*-w_!lk$81$p_a0Eb0B?*Ar}U3`+!2c~5rtgjjt3N~gaoIA8Vk4w*K0 zz0~(^$oL#BUjA=Rw?ipbN|nP(j#5T%_`l3!R;SXHqg2uHgN>`Zwy#q+t|$ml<>Q_; z64ATT@@k#L^{!np_pT~Gp{uah*L&4Z%{{+~Ro8h>#hA@Kt1aui)3=+=e}1HHu!QcE z$GygikyOtyE7O#NRC0`KlTMbPGR!@BZ>wsaY`3r7JXw-U->>?* z3%`DUrPfzBmtv(*d0+Xt63O4sA9)Ff;T7Yp5L&_bIm%t)m0s<#=5=!eLleKiTGyuE{2}^tAU<_ zvPYK>8j4w`erz%KdH!g*M=J*cH2C5gm%`NdWZ}z>jLH&p4{%gGVnN=lAQLoR? zQn*_6V{^Znjr*)aT=($uFmBstb&Y(aMh$KHK)v8&?l73n4s?m~zL)Z3MBNz(9GaT)c&TE@3gR1L!uIfKjlB;IC|3=gW*+4sEs zHs)H--sx3`?(|x6-*S~4xA<%|7uf#{;r|)js%Jr#xaGl>FP^<)nRq&6d~T^z{{xKj BG93T_ diff --git a/Source/Lang/1034.lng b/Source/Lang/1034.lng index ebfc7dd9870eb382dee6418d102c7a2b767a61ed..59a6987de0e132397f6cae835e4d75139ee343f0 100644 GIT binary patch delta 3825 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 diff --git a/Source/Lang/1046.lng b/Source/Lang/1046.lng index fa652ada8962afa925cdab95c0aedbe78970dda8..b0f87c7059b411eb5adcb3a14d95c238dec2020c 100644 GIT binary patch delta 3959 zcmZ|SaZHrw9l-JTJ>}J(YB%+Lf@w;pX}VWN>|| zgK%Yis;4{aOFlo2(=;`T?UYs9?%ACs&J9(b@cpW^GS;Qyzq*9)m(Ye(2Vr1CYOLpq zSkEp0+jD%wO7U!PNm{^=j!mZ2p%jlHtJEdlO@<_GvgB5&5p7>5CT()bXsIcEv04*( zB?{q#8?ze?`Dmjl=h1^kRGs276z3L0 zKHhA}mCg1z1~;2>6njvD9Hb*2Q%{?66~hRl76IfU1BsX}WBo9KPSm3edB{XEW|)I9 zoI`hoA$1j&loQqS=U15GRXOpqt!A`#eXAjFZndP3xR08eze;iy3u*h{#%#GMH*pdD zXht=PkPWlkY$c5I*q1SY5P~R%AI>UMCbk)JX`6lPLGqSuOXS&Yi=#s+p}mS@9ynrs zrYa5jbEPS#(Td$rLkmz>F_(4*5@}C9W6JwDgErJ)Js!dP&$uM>8AB4tKjHB|#97>6 z=^AzzQo6$)Q$D%6u9uj!gDq5TPu=xuQ%1?Vsx4`X)hekKl4lXs^ty?&+wJpj63=gE z8=(;uD8TaVmY5u4%e2xQXG$((03ifX3_sGUjOehPyX;F&1nqc*sBSkHWH-fXdt$W` zYB}Vdpe6C-Q_r%iFpMy25kM|7kcjD>>?(|)6ZI%V9x{=P8K!3p=g^IYJ*Jc+A6}&3 z)~`&tj#2cX36&^>4{prv<_+6z$wi`iYx;MylTeK!WW(gx7rR&*T!1I!k^$!65P21z z!09%Z_^G9m-+s=NkI}W?C0Cv^

=ecH$|lf(H)VKIoFE8hakE5>MAy60Tuh$k!29 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 delta 3587 zcmY+`4@_0(8OQN+F31Qnq)1N@k4VobGtN;)6$mrPuyck0V~i2P@Cpo(eB3cAQ zKxFjpJ_yJV5h-(o5Go8DZ3rP9amE;I7S}dvh#`boCBzwG$b$Rcd)X2pAAaw7-*eu> zbKdvLs&DooC-sPMQ>@4CS!kBUIoNDsdWT z@G+`z7S*UhEzY41=TVOaG~xp6KPOFo{MD44z}Nijb5Rs~X{C&E_}**hpyS|m^!nfl z=ivI7HCSp7h0`Syhx|<(J>ZD&GKWW5gYA=suU}X2#&ym)_pFcQzcI$;Rc3$toSg(m zV`j&kOJ;v5$~Gi5TbC#Vz?7}YT-G-ETh>;&k)=yBN|1s`=vlgrn9tPZHU?qMG^CO= zBNoB%$kb%u@&MULmgeh{iYNrYgoQj^?qCQuSdflr z7;wYWqq^L~O|+pBX2c%VB#?B)VlMUPQhzS>qXHT99iT6W^de`AbQwhl&L9&XVh232 zT&T-Ga0^|iMoyt2iDX!zCf?-B0$skw7wAD9@(_z~4~_XOdx<8y zOAHApp>8Z3r)~_v1`E=UYZ7_f5aYOJ@0u@W*)a$!%8*uUNNh1>({`o3bWD@G#|#-G zTgfUigFHY69b?(?jM8RL@|r!#vZEHch(ic`uu{shV-mfnM*$KM1`VqxSawXKA5ADm zGQv-2;(Nl7HOhQQc~g`+K)aE45t2UAWjFlrAB!$?_!2kJj1r_E(n9&98=jW4?6_I3 ziM5<U&VB$!Mh^-IdgjT*M&+K3F+L{iig! zMRuVYIXH-2@W#sumcGJ}X|lgUlR7dF@d$-4UQypeOrZ~rC_++|AyHLqdzi5BG0Tr3 z*kD0AqG7-dPtQ<4ZlVp9Fe4Vh@W9e(>c`k=)}O3E24YSdvXk_p{~7ho*0BCHyl0cO zHPnwdgun+Y)zptk^r9XGNJJPkte$24F^zsSp%}>shd~ z^<$xq`s*~gK{lfVDTst#r`w46b8LSM!g_9-l%LxwX|(qu5UyCP)#WaR(TWOWAf}e` zYc+8vUr_dJBd`2MmcLPxGqf{l$I;$F`jE>FeB?E-{A6zf<)Z+J2!n>zddkN%`q6}9 zBqJRDSfjKjn85&AD7%QVXPPzXYc`~%na6=tL?HksEL`MqUo-Y{!AFQ;ny)cPh)VJ`JqJ?)>au>(m zc=>x?Uibn%s6!s&5ei?t;#oaJOgrn_&i2NOHeTMCKsRcUi#UY92P>Dj|0UL!>_Rni zE^&V{3>sEjSzk=IYSKg2ArJ8gg)d$S_s10ag!Lp#k%}nM#E(7`IcMYT&1T4uO_OHQ z!f`t7NZJNj-NpU8xIY;N4Xc0T{+LETnox{ngu@?eo$N2nU;r&BMJl2Y023B2v!5^o z8!SjiGz_?1WeB6BZ6>;I z%gi-z>Ato@TCVZ0AQe#vfC&pd{3{rO4Hl#$8V20(^eXRkxQRAY!i?CfeA1DwSnOsi zVi>KcKn7wE)XfJx`Qi#&;R^5cS9qyk(UMN7_U~}^Z-w?RhPz=u_EC!S?Z=AZtz;|3 zN{*7C93ji;N&eI^!1rV4NQ!ct-y-EC-6aF!-5X#U{aiwcraO|<8)%yUC!N01dBbCa z$5T#{&-%9q-dc9f;=4Y}0p=)GjwxA683RSH?U!syp({%{MMt0?|Bk%%*B`jt)K&Ra z?`8?T?rBQfF45QhT;|?W<*nY$?cRG-j}7_N?mKUQO^O*1I-*RQl`DVM1Qil`>G?h9&1Ww=FKByV z@p4Y*5^kS=JWf?DevY2%cxTVr7B$6r(X!duV+~OAOpbG6((FA6_NOO61qhw7TAbFTA_9(nwopJe{YecXSKI_WH<`nvO6ZND16{=`P@J-f!w{zAR(?znpR zYe!EzJsZa}lhi)vq;sp`;~NjDe|Me~x;4UHfckSoGX3lAgL!X0xAh}m<$pW!17(jA#_vxU*{fXo eseNbLe_pDWF8u#eCED?%rRljgKJlfgUi~j|gImo2 diff --git a/Source/Lang/wbloggar.len b/Source/Lang/wbloggar.len index 1f6a517b57f759ff79a3b86ecbda9a36084eb515..665efa66980020cb3ccaede238ac7da2028ec4d6 100644 GIT binary patch delta 3360 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 U9Qn@&F~Rx#xNyQ>OzrCb06b*gasU7T diff --git a/Source/wbloggar.vbp b/Source/wbloggar.vbp index f18323a..349f5b6 100644 --- a/Source/wbloggar.vbp +++ b/Source/wbloggar.vbp @@ -68,14 +68,14 @@ HelpContextID="0" Description="w.bloggar - Universal Weblog Interface" CompatibleMode="0" MajorVer=4 -MinorVer=5 +MinorVer=6 RevisionVer=210 AutoIncrementVer=1 ServerSupportFiles=0 VersionComments="The best interface between you and your blog." VersionCompanyName="RainDrops Freeware Project" VersionFileDescription="w.bloggar - Universal Weblog Interface" -VersionLegalCopyright="© 2001-2021 Marcelo Lv Cabral" +VersionLegalCopyright="© 2001-2024 Marcelo Lv Cabral" VersionLegalTrademarks="https://github.com/lvcabral/w.bloggar" VersionProductName="w.bloggar" CondComp="compIE = -1"