[squeak-dev] The Trunk: System-mt.856.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Aug 1 13:17:36 UTC 2016


Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.856.mcz

==================== Summary ====================

Name: System-mt.856
Author: mt
Time: 1 August 2016, 3:17:05.483063 pm
UUID: e9f7d2ad-81a0-1d4f-b553-31510a255316
Ancestors: System-mt.855

Revise the system version descriptions. Be not so talky in release versions.

=============== Diff against System-mt.855 ===============

Item was changed:
  ----- Method: SystemVersion>>description (in category 'printing') -----
  description
  
+ 	self isAlpha ifTrue: [^ 'ALPHA. New features which are not stable yet may come in\with each update. Also, existing features might not work reliably\due to updates and related changes.' translated withCRs].
- 	self isAlpha ifTrue: [^ 'This is an ALPHA version. It means that new features might be\introduced with each update or that very basic functions might\be quite buggy at the moment.\\Please refrain from using this version for important projects.' translated withCRs].
  	
+ 	self isFeatureFreeze ifTrue: [^ 'FEATURE FREEZE. A new release is being prepared.\There will be only bugfixes, but no new features.' translated withCRs].
- 	self isFeatureFreeze ifTrue: [^ 'This is a FEATURE FREEZE version. We are in the middle of preparing\a new release. It means that there will be no new features but only bugfixes.\\Please do not contribute new features at the moment. ;-)' translated withCRs].
  	
+ 	self isCodeFreeze ifTrue: [^ 'RELEASE CANDIDATE. The new release is almost ready.\There will be only bugfixes, if any.' translated withCRs].
- 	self isCodeFreeze ifTrue: [^ 'This is a RELEASE CANDIDATE version. It means that we are almost\done preparing the new release.\\Please do ONLY contribute URGENT fixes. Thank you. :-)' translated withCRs].
  		
+ 	self isRelease ifTrue: [^ ''].!
- 	self isRelease ifTrue: [^ self inform: 'This is a release version. It means that there will be only\bugfixes but no new features.\\Have fun. :-)' translated withCRs].!



More information about the Squeak-dev mailing list