Skip to content

Commit

Permalink
Merge pull request #1194 from SeasideSt/versionnumberfix
Browse files Browse the repository at this point in the history
Fix forgotten seaside version increase in WAWelcome
  • Loading branch information
Johan Brichau authored May 16, 2020
2 parents d4e1f94 + b8a6bac commit 34570b0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
seasideVersion
"Answer the Seaside version"

^ (GRVersion major: 3 minor: 4 revision: 0)
^ (GRVersion major: 3 minor: 4 revision: 1)
yourself
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,18 @@ renderSideBarDivingInOn: html
with: 'JQuery UI'.
html text: ' integration.' ].
html listItem: [
html text: 'Seaside 3.3 '.
html text: 'Seaside ', GRPlatform current seasideVersion greaseString.
html anchor
url: 'https://github.com/SeasideSt/Seaside/wiki/Seaside330Changelog';
with: 'changes' ].
url: 'https://github.com/SeasideSt/Seaside/releases/tag/v',GRPlatform current seasideVersion greaseString;
with: ' changes' ].
GRPlatform current seasideVersion revision isZero ifFalse:[
| majorReleaseVersion |
majorReleaseVersion := GRPlatform current seasideVersion copy revision: 0; yourself.
html listItem: [
html text: 'Seaside ', majorReleaseVersion greaseString.
html anchor
url: 'https://github.com/SeasideSt/Seaside/releases/tag/v', majorReleaseVersion greaseString;
with: ' changes' ] ].
html listItem: [
html text: 'Seaside '.
html anchor
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
accessing
title
^ 'Welcome to Seaside 3.3'
^ 'Welcome to Seaside ', GRPlatform current seasideVersion greaseString

0 comments on commit 34570b0

Please sign in to comment.