Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - BaNoBi

Pages: [1] 2 3 4
1
Members Projects / Re: Sailplane Build using CAMBAM and Shapeoko CNC
« on: June 09, 2016, 12:44:46 pm »
Very nice project!

2
Scripts and Plugins / Re: Move multiple points in a polylines
« on: February 23, 2016, 16:37:41 pm »
Done!

Please find attached a new version in the first post.

Best regards,
Vasco Cruz

3
Scripts and Plugins / Re: CamBam Plugin Manager
« on: July 20, 2015, 15:14:44 pm »
Hi,

Sorry about the delay.

I did not suggest that you change the CamBam plugins directory.  What I suggested is that the SOURCE directory for the .zip (and hopefully .dll) files from which the manager draws its plugins be one that the user can set.
I don't understand this feature suggestion. Because the plugin manager gets information about the plugins from the David website.

Can you explain more?

Best regards,
Vasco Cruz

4
Scripts and Plugins / Re: CamBam Plugin Manager
« on: July 03, 2015, 09:37:05 am »
Hi All,

Thank you for your feedback.

At this moment the plugin installs the plugins on CamBamFOLDER\plugins.

It is possible change the plugin folder on CamBam? If is yes, I can change the plugin for to read this parameter.

Best regards,
Vasco Cruz

5
Scripts and Plugins / Re: CamBam Plugin Manager
« on: July 01, 2015, 22:18:31 pm »
Ok, it can cause pb with the last added, because there is 3 versions
http://www.atelier-des-fougeres.fr/Cambam/Aide/Plugins/View_Toolbar.html
The plugin is not yet ready for it. With this example the plugin fails. The plugin is only waiting for a link in the cell.

What happens if the dll is not the same for English and French ? (not yet added to french page, but there is 2 plugins that have FR and EN version ; print and numerical move/rotate)
For the plugin manager, a plugin in English is different to a plugin in French. You can install both (if the name of the dlls are different).

Best regards,
Vasco Cruz

6
Scripts and Plugins / Re: CamBam Plugin Manager
« on: July 01, 2015, 21:39:44 pm »
Thanks :)

It seems that it's not the same version in the download and on the pictures .. no Update button in the version I just install. (0.6.0.0)
Yes, is the same version. The button update is only visible if have an update for the plugin. Maybe in a new version, change the icon on left the title if have an update.

How do you detect what is the right file to download when there is more than one file in the folder ? (on the site)
The plugin downloads a zip file, unzip and copies all the content of the zip to the plugin folder.

Best regards,
Vasco Cruz

7
Scripts and Plugins / CamBam Plugin Manager
« on: July 01, 2015, 21:06:11 pm »
Hi,

Due to the large number of plugins that exist for CamBam, I thought fit to develop a Plugin Manager.

This plugin manager uses the David's site information (http://www.atelier-des-fougeres.fr/Cambam/Aide/Plugins/plugin_menu.html) (a great job).



Features:
  • Search by title; (Pic 1)
  • Search the description of plugins; (Pic 1)
  • Install a plugin; (Pic 2)
  • Uninstall a plugin; (Pic 3)
  • Update a plugin; (Pic 3)
  • View the page of each plugin; (Pic 4)
  • Browse the plugins list in English and French. (Pic 5)

1. Unzip and install the dll and the exe into your CamBam plugins folder, restart CamBam.
2. New menu entry: Plugins > Plugin Manager.


Note: The plugin does not detect the already installed plugins.

Pic 1:

Pic 2:

Pic 3:

Pic 4:

Pic 5:


Best regards,
Vasco Cruz

Change log:
v0.6 - First version

8
Scripts and Plugins / Re: Move multiple points in a polylines
« on: May 20, 2015, 15:38:44 pm »
Hello,

Can I add the translate code to this plugin?

Best regards,
Vasco Cruz

9
Scripts and Plugins / Re: Plugin Web page (in progress)
« on: May 15, 2015, 12:26:58 pm »
Hi David,

Is there any way to help you write the pages? Then you just needed to validate.

For example, the creator of the plugin could write their page.

Best regards,
Vasco Cruz

10
Hello,

Yes David, yes the Cyrillic font (http://www.cambam.co.uk/forum/index.php?topic=1557.msg12671#msg12671)

Best regards,
Vasco Cruz

11
Hello,

I attached a new zip with all fonts, because the zip referenced in the topic SCRIPT & PLUGIN SUMMARY not include all fonts.

File content:
  • 1CamBam_Stick_0C.ttf
  • 1CamBam_Stick_1.ttf
  • 1CamBam_Stick_2.ttf
  • 1CamBam_Stick_3.ttf
  • 1CamBam_Stick_4.ttf
  • 1CamBam_Stick_5.ttf
  • 1CamBam_Stick_6.ttf
  • 1CamBam_Stick_7.ttf
  • 1CamBam_Stick_8.ttf
  • 1CAMBam_Stick_9.ttf

Best regards,
Vasco Cruz

12
Scripts and Plugins / Re: Parametric Shapes Script
« on: May 09, 2015, 21:29:30 pm »
Hi Geoff,

Thank you for this script.

I've created a script for generate a mystic rose.

https://elplatt.com/demo/mystic-rose/
http://en.wikipedia.org/wiki/Complete_graph

Vasco Cruz

13
Hello,

I use this code for add the key (PluginName:TextKey) and get the translation.

In the rest of code I just need to call this method with TextKey.

Best regards,
Vasco Cruz

14
Good ideia.

In the plugin "Move multiple points in a polylines" I'll use this code:
Code: [Select]
       public static string Translate(string text)
        {
            string translateKey = string.Format("PointsMove:{0}", text);
            TextTranslationItem translate = TextTranslation.GetCacheItem(CamBamConfig.Defaults.Language, translateKey);
            string translateText = text;

            if (translate != null)
            {
                if (!string.IsNullOrEmpty(translate.Translation))
                {
                    translateText = translate.Translation;
                }
            }
            else
            {
                TextTranslation.SetCacheItem(CamBamConfig.Defaults.Language, translateKey, text, "");
            }

            return translateText;
        }

With this code I check if the key already exists, if not exists add a new key, if exists get the translation.

Best regards,
Vasco Cruz

15
Scripts and Plugins / Re: Move multiple points in a polylines
« on: May 07, 2015, 21:42:27 pm »
Thank you for your feedback.

Sorry about the translation.

New version 3.1 (Link):
  • Removed the translation until get ok from users about the stability of the plugin
  • Improved the engine of the selection/unselection and move points.

Pages: [1] 2 3 4