Skip to content

Commit 9da896f

Browse files
committed
Merge branch 'feature/161-change-blog-link' into develop
Fixes #161
2 parents b9d2cf4 + 1b1f1b0 commit 9da896f

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
lines changed

Docs/ReadMe-portable.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ Updating the Program
144144
Updates are published on GitHub. See
145145
https://github.com/delphidabbler/codesnip/releases
146146

147-
News of new updates is published on the CodeSnip Blog:
148-
https://codesnip-app.blogspot.com/.
147+
News of new updates is published on the DelphiDabbler Blog:
148+
https://delphidabbler.blogspot.com/.
149149

150150

151151
Known Installation and Upgrading Issues

Docs/ReadMe-standard.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ Updating the Program
179179
Updates are published on GitHub. See
180180
https://github.com/delphidabbler/codesnip/releases
181181

182-
News of new updates is published on the CodeSnip Blog:
183-
https://codesnip-app.blogspot.com/.
182+
News of new updates is published on the DelphiDabbler Blog:
183+
https://delphidabbler.blogspot.com/.
184184

185185

186186
Known Installation and Upgrading Issues

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The following support is available to CodeSnip users:
3535
* A comprehensive help file.
3636
* A read-me file that discusses installation, configuration, updating and known issues. There are different versions of this file for each edition of CodeSnip: one for the [standard edition](https://raw.githubusercontent.com/delphidabbler/codesnip/master/Docs/ReadMe-standard.txt) and another for the [portable edition](https://raw.githubusercontent.com/delphidabbler/codesnip/master/Docs/ReadMe-portable.txt). [^1]
3737
* The [Using CodeSnip FAQ](https://github.com/delphidabbler/codesnip-faq/blob/master/UsingCodeSnip.md).
38-
* The [CodeSnip Blog](https://codesnip-app.blogspot.co.uk/).
38+
* The [DelphiDabbler Blog](https://delphidabbler.blogspot.co.uk/) that provides CodeSnip news.
3939
* CodeSnip's own [Web Page](https://delphidabbler.com/software/codesnip).
4040

4141
There's also plenty of info available on how to compile CodeSnip from source - see below.

Src/FmMain.dfm

+3-3
Original file line numberDiff line numberDiff line change
@@ -862,10 +862,10 @@ inherited MainForm: TMainForm
862862
end
863863
object actBlog: TBrowseURL
864864
Category = 'Help'
865-
Caption = 'CodeSnip News Blog'
865+
Caption = 'CodeSnip News On DelphiDabbler Blog'
866866
Hint =
867-
'Display CodeSnip news blog|Display the CodeSnip News Blog in the' +
868-
' default web browser'
867+
'Display CodeSnip news|Display the DelphiDabbler blog, containing' +
868+
' CodeSnip news, in the default web browser'
869869
ImageIndex = 6
870870
end
871871
object actDeleteUserDatabase: TAction

Src/Help/HTML/menu_help.htm

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,14 @@ <h1>
9797
<img alt="Menu icon" src="../images/WebLink.png" class="glyph">
9898
</td>
9999
<td class="item">
100-
CodeSnip News Blog
100+
CodeSnip News On DelphiDabbler Blog
101101
</td>
102102
<td class="desc">
103103
Displays the <a
104104
class="weblink"
105105
href="https://codesnip-app.blogspot.com/"
106106
target="_blank"
107-
>CodeSnip Blog</a> in the default web browser. The latest news about <em>CodeSnip</em> is posted in the blog.
107+
>DelphiDabbler Blog</a> in the default web browser. The latest news about <em>CodeSnip</em> is posted in this blog.
108108
</td>
109109
</tr>
110110
<tr>

Src/Res/HTML/dlg-whatsnew.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@
6363
You can no longer submit snippets for inclusion in the DelphiDabbler Code Snippets Database.
6464
</li>
6565
<li>
66-
The news feed has gone away. News will now be posted to the
66+
The news feed has gone away. News will now be posted to the <strike>CodeSnip blog</strike>
6767
<a
68-
href="https://codesnip-app.blogspot.com/"
68+
href="https://delphidabbler.blogspot.com/"
6969
class="external-link"
70-
>CodeSnip blog</a>. You can display the blog in your web browser from the <em>Help</em> menu.
70+
>DelphiDabbler blog</a>. You can display the blog in your web browser from the <em>Help</em> menu.
7171
</li>
7272
</ul>
7373
<p>

Src/Res/HTML/welcome-tplt.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ <h1>
189189
href="#"
190190
class="command-link"
191191
onclick="showNews();return false;"
192-
>News Blog</a>
192+
>News On DelphiDabbler Blog</a>
193193
|
194194
<a
195195
href="#"

Src/UUrl.pas

+3-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ TURL = record
5353
/// hosted.</summary>
5454
SWAGReleases = SWAGRepo + '/releases';
5555

56-
/// <summary>URL of the the CodeSnip blog.</summary>
57-
CodeSnipBlog = 'https://codesnip-app.blogspot.com/';
56+
/// <summary>URL of the DelphiDabbler blog containing CodeSnip news.
57+
/// </summary>
58+
CodeSnipBlog = 'https://delphidabbler.blogspot.com/';
5859

5960
end;
6061

0 commit comments

Comments
 (0)