Jump to content
FHannes

3.26.01 Cancelled

Recommended Posts

I've decided to cancel the release of SCAR Divi 3.26.01 and move on directly to 3.27.00 in the near future, I'm hoping to push out this release this week. The reason for doing this is that 3.26.00 has so far not shown any major issues that need immediate resolving. All issues that have been found will of course be fixed in 3.27.00. The first beta release of 3.27.00 will be uploaded today. The current changelog:

Bugfixes:
- TPAChain and TPAChainEx did not always return the correct result

Improvements:
- Some noob-proofing
- Tweaked parts of the core library
- Additional stability

Additions:
- Shortkey for the bitmap picker
- SCAR327_UP directive
- Deprecated keyword for regular functions

 

As you can see in the changelog, I've added in the deprecated keyword for regular functions. This means that if you have a function you're leaving in for backwards compatibility, you can tell the user that it is no longer preferred to use it by adding "deprecated;".

 

procedure Asdf; deprecated;

begin

end;

 

If a function like this is used, it will show a compiler warning:

Symbol 'Asdf' is deprecated

 

You can also add a deprecation message:

 

procedure Asdf; deprecated 'The function is outdated, use AsdfNew';

begin

end;

 

Which will display as:

Symbol 'Asdf' is deprecated: 'The function is outdated, use AsdfNew'

 

~Freddy

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
  • Create New...