SMath Studio Forum
»
SMath Studio
»
Download SMath Studio
»
Nightly builds
»
Nightly build: SMath Studio 0.96.5146 (02 February 2014)
Rank: Administration Groups: Developers, Registered, Knovel Developers, Administrators, Advanced Member Joined: 11/07/2008(UTC) Posts: 1,622 Was thanked: 1983 time(s) in 668 post(s)
|
Nightly build: SMath Studio 0.96.5146 available Important notes - Custom Regions plug-ins created for previous versions of SMath Studio will not work. Please contact developers of such plug-ins and ask them to update plug-ins. Sorry for the inconvenience!
In the class inherited from IPluginCustomRegion change: Code:bool IPluginCustomRegion.IsCurrentClipboardSupported
{
get
{
IDataObject iData = Clipboard.GetDataObject();
return iData.GetDataPresent(DataFormats.UnicodeText);
}
}
to: Code:string[] IPluginCustomRegion.SupportedClipboardFormats
{
get { return new string[] { DataFormats.UnicodeText }; }
}
It is also required to add the following field (where tag name for your region must be specified instead of "combobox" text): Code:string IPluginCustomRegion.TagName
{
get { return "combobox"; }
}
In the class inherited from RegionBase signatures of the methods: Code:public override bool Copy()
public override bool Paste()
changed to: Code:public override bool Copy(IClipboardManager clipboard)
public override bool Paste(IClipboardManager clipboard)
So, you don't need to use System.Windows.Forms.Clipboard anymore. Just use clipboard object from method argument.
- No official portable version will be available for this release.
Download Edited by user 02 February 2014 16:42:31(UTC)
| Reason: Not specified
|
7 users thanked Andrey Ivashov for this useful post.
|
on 02/02/2014(UTC), on 02/02/2014(UTC), on 02/02/2014(UTC), on 02/02/2014(UTC), on 02/02/2014(UTC), on 03/02/2014(UTC), on 03/02/2014(UTC)
|
|
Rank: Advanced Member Groups: Registered
Joined: 15/04/2012(UTC) Posts: 2,036 Was thanked: 1168 time(s) in 747 post(s)
|
Andrey, thanks for the update.
For testing I recommend to use the Linux version. As usual it can be used under Windowsm as portable version when an empty file "portable.version" is added to the installation directory. Then you can keep all extensions and settings separate from your standard installation.
An unofficial portable version will certainly be available, depending on upgrade progress of custom regions.
Unfortunately, the Maxima plugin is affected by API changes as well, even if not providing a custom region, access to the insert menu or custom windows seem to be problematic as well. |
|
|
|
|
Rank: Administration Groups: Developers, Registered, Knovel Developers, Administrators, Advanced Member Joined: 11/07/2008(UTC) Posts: 1,622 Was thanked: 1983 time(s) in 668 post(s)
|
FYI: I've just added a spoiler about what to be done to update Custom Regions related plug-ins.
Best regards.
|
2 users thanked Andrey Ivashov for this useful post.
|
on 02/02/2014(UTC), on 02/02/2014(UTC)
|
|
Rank: Administration Groups: Developers, Registered, Knovel Developers, Administrators, Advanced Member Joined: 11/07/2008(UTC) Posts: 1,622 Was thanked: 1983 time(s) in 668 post(s)
|
The following plug-ins updated to support SMath Studio 0.96.5146: - Combobox Region
- Checkbox Region
- Modeller Region
- Export to PDF
|
2 users thanked Andrey Ivashov for this useful post.
|
on 02/02/2014(UTC), on 02/02/2014(UTC)
|
|
Rank: Advanced Member Groups: Registered
Joined: 15/04/2012(UTC) Posts: 2,036 Was thanked: 1168 time(s) in 747 post(s)
|
Originally Posted by: smath Any hint on how to use it? How about gallery example passwords? Might be really interesting and powerfull stuff... |
|
1 user thanked mkraska for this useful post.
|
|
|
SMath Studio Forum
»
SMath Studio
»
Download SMath Studio
»
Nightly builds
»
Nightly build: SMath Studio 0.96.5146 (02 February 2014)
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.