Send Notepad-plus-plus mailing list submissions to
        notepad-plus-plus@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Notepad-plus-plus digest..."


Today's Topics:

   1. [notepad-plus - Plugin Development]       PluginUpdate plugin
      update 0v21 (unicode) (SourceForge.net)
   2. [notepad-plus - Open Discussion] RE: Notepad++    v5.1 Release
      Candidate (SourceForge.net)
   3. [notepad-plus - Plugin Development] RE:   PluginUpdate plugin
      update 0v21 (unicode) (SourceForge.net)
   4. [notepad-plus - Help] RE: tab settings? (SourceForge.net)
   5. [notepad-plus - Plugin Development] RE:   PluginUpdate plugin
      update 0v21 (unicode) (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE: Notepad++    v5.1 Release
      Candidate (SourceForge.net)
   7. [notepad-plus - Help] RE: Doesnt "Remember last   operation
      dir" (SourceForge.net)
   8. notepad++ on bosnian (Branislav Djuricz)


----------------------------------------------------------------------

Message: 1
Date: Tue, 21 Oct 2008 18:42:49 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        PluginUpdate plugin update 0v21 (unicode)
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=5474611
By: fstellari

I have updated my plugin to include an unicode version that is compatible with
the new NPP unicode version.
 
You can download it here:  
http://fstellari.googlepages.com/npp_plugins  
 
The new version should also be visible through to those using the PluginUpdate
on the current or ASCII version of NPP.
 
Please tray it out and let me know how it works on unicode since this is only
my 4th unicode program.
 
Regards,  
 
Franco 

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=482781



------------------------------

Message: 2
Date: Tue, 21 Oct 2008 19:07:51 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       v5.1 Release Candidate
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=5474769
By: fstellari

Where can I download the sourcecode corresponding to the latest RC available?

Thanks,

Franco

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=331753



------------------------------

Message: 3
Date: Tue, 21 Oct 2008 19:13:22 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        PluginUpdate plugin update 0v21 (unicode)
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=5474792
By: fstellari

BTW, is any of the other plugin developers using or planning to use the facility
offered by this plugin?

If nobody find this useful I will abort it and incorporare the automatic update
in some other way in my plugins.

Thanks,

Franco

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=482781



------------------------------

Message: 4
Date: Tue, 21 Oct 2008 21:00:09 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: tab settings?
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=5475399
By: heravar

Yes, I thought by "spaces" you meant "lines"...

The option you said was changed to the "Edit Components" tab...
You should have search a little more...

I think that will affect all your langs, if that's ok with you

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=331754



------------------------------

Message: 5
Date: Tue, 21 Oct 2008 21:52:20 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        PluginUpdate plugin update 0v21 (unicode)
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=5475689
By: harrybharry

I like the idea, but the main problem I see with the current implementation
is the need for the ini and the dll to be available online for download, and
personally I am too lazy to maintain that. Wouldn't there be a way it could
read the Sourceforge file listing (I try to use consistent version numbers with
releases), download the zip and unpack the right dll? I can have the DLL write
its own version number to the local ini, the next restart it would be rewritten.
Another possibility is for the updater to have its own ini with a list of URLs
and versions (maybe with regex), that the user can define, for example a plugin
author gives an URL template and the updater uses that. Theoretically the plugin
doesnt have to do a thing (easy version access could be usefull, for example
with cross-plugin messages like NppExec supports, ini file and read the version
info from the DLL itself that explorer also displays (hard)).
Third option would be sole use of cross-plugin messages, requesting current
version and URL template.

The cross-plugin message could use a sort of linked-list datastructure so each
plugin can append to it (using a common header).

URL template could be something like
http://..../$(NAME)_$(MAJOR)_$(MINOR)_$(SOMETHING)_$(BUILD)_dll.zip , you could
retrieve RSS feeds and skim through them.

Anyway, what I'm talking about here is more of a whole new plugin that a little
change, I'm just throwing ideas here from my point of view (ie being lazy).

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=482781



------------------------------

Message: 6
Date: Tue, 21 Oct 2008 21:55:08 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       v5.1 Release Candidate
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=5475703
By: harrybharry

You have to retrieve it from the SVN for now.
Advantage is that with one click of a button, you can the latest and greatest
stuff :)

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=331753



------------------------------

Message: 7
Date: Tue, 21 Oct 2008 21:57:38 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Doesnt
        "Remember last  operation dir"
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=5475717
By: harrybharry

"Remember last operation directory" means that it will use the directory of
startup, and only change when you open a new file, or save in a new directory.
It doesnt change when you select another file.
In 5.1RC, you can force a specified directory instead by browsing to it, it
will always use that one instead then.

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=331754



------------------------------

Message: 8
Date: Wed, 22 Oct 2008 05:16:07 +0200
From: "Branislav Djuricz" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] notepad++ on bosnian
To: notepad-plus-plus@lists.sourceforge.net
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="utf-8"

Hi,
I'm Branislav student of Computer science in Belgrade.
In atachment you have Notepad ++ on BOSNIAN language.

Author: Branislav Djuric
File: bosnian.xml

Best Regards,
Branislav
-------------- next part --------------
An HTML attachment was scrubbed...
-------------- next part --------------
A non-text attachment was scrubbed...
Name: bosnian.xml
Type: text/xml
Size: 23738 bytes
Desc: not available

------------------------------

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/

------------------------------

_______________________________________________
Notepad-plus-plus mailing list
Notepad-plus-plus@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 29, Issue 42
*************************************************

Reply via email to