jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Moderator: gnozal
Re: jaPBe 3.8.10 [IDE for PB 4.xx]
Why I Cann't Download From
http://freenet-homepage.de/gnozal/jaPBeForPB400.zip
http://freenet-homepage.de/gnozal/jaPBeForPB400.zip
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Re: jaPBe 3.8.10 [IDE for PB 4.xx]
I don't know ; I just tried, the link is ok.shu7734 wrote:Why I Cann't Download From
http://freenet-homepage.de/gnozal/jaPBeForPB400.zip
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
@Gnozal: what do you recommend to disable or change settings, to improve the speed?gnozal wrote:Yes, with big projects and/or many folds, you may experience some lags/slow downs while folding or scrolling up/down [strangely mostly when using keys <up/down - pg up/pg down>, usually using mouse is ok].
If I use the same project on different computer, I've expierenced that JaPBe runs faster on Intel CPUs ... may be we need special compiled SciLexer.dlls
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Disabling syntax coloring would help, but that's not an option.dige wrote:@Gnozal: what do you recommend to disable or change settings, to improve the speed?
Most of the syntax coloring features aren't optional, so there isn't much to tweak.
Scintilla seems to slow down with big sources, I don't know why. I have spend many hours (days !) to find out how to speed up the syntax coloring without loosing features (and I can't keep myself from adding some new feature from time to time, like tooltips for prototyped functions lately).
jaPBe only does the syntax coloring in response to a #SCN_STYLENEEDED event, and only once (using a #Styled marker) for the same line (except editing of course). I tried to do the syntax coloring for the whole file while loading : the scrolling/folding was much faster, but the loading took forever.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
Re: jaPBe 3.8.10 [IDE for PB 4.xx]
Thanks!gnozal wrote:I don't know ; I just tried, the link is ok.shu7734 wrote:Why I Cann't Download From
http://freenet-homepage.de/gnozal/jaPBeForPB400.zip
Is OK,Because Your Server conductively-closed in China mainland
Use Proxy Download
Maybe this is related to jaPBe:
http://purebasic.fr/english/viewtopic.php?t=35197
PB4 does already support the /USER, /ADMIN and /XP switches and puts in a manifest.
And would it be possible to let the jaPBe Declare file generation also search includes and automatically put XIncludeFile "all.declare" at the top of the PB_EditorOutput.pb? I would also prefer it if PB_EditorOutput2.pb would be named like the original PB file, because of the OnError library.
Thanks in advance!
http://purebasic.fr/english/viewtopic.php?t=35197
PB4 does already support the /USER, /ADMIN and /XP switches and puts in a manifest.

And would it be possible to let the jaPBe Declare file generation also search includes and automatically put XIncludeFile "all.declare" at the top of the PB_EditorOutput.pb? I would also prefer it if PB_EditorOutput2.pb would be named like the original PB file, because of the OnError library.

Thanks in advance!
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
See Project -> Project Options [F8]mback2k wrote:PB4 does already support the /USER, /ADMIN and /XP switches and puts in a manifest.
[ ] Enable XP skin support
[ ] Request Admin mode on Vista
[ ] Request USer mode on Vista
On the todo list.mback2k wrote:And would it be possible to let the jaPBe Declare file generation also search includes
Could you elaborate ?mback2k wrote:I would also prefer it if PB_EditorOutput2.pb would be named like the original PB file, because of the OnError library.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
Yes, but jaPBe still adds it's own manifest. If I compile manually the PBCompiler does it. At least the "Your application description here." string in the manifest is only there if I use jaPBe's 'Create Executable' button.gnozal wrote:See Project -> Project Options [F8]
[ ] Enable XP skin support
[ ] Request Admin mode on Vista
[ ] Request USer mode on Vista
Thanksgnozal wrote:On the todo list.

I am using the OnError library to let my users submit bug reports if a runtime error occours. They can see all the data in a small window and the final email, I would prefer it if they see the real .pb filename instead of "PB_EditorOutput2.pb".gnozal wrote:Could you elaborate ?

-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
You want to customize the manifest, i.e. replace 'Your application description here.' with 'Product Info' from project options ?mback2k wrote:Yes, but jaPBe still adds it's own manifest. If I compile manually the PBCompiler does it. At least the "Your application description here." string in the manifest is only there if I use jaPBe's 'Create Executable' button.
I will add this on the todo list.
Currently I can't do anything about it. I would have to redefine all the jaPBe compilation system, as the 'SOURCEALIAS' compiler switch doesn't work with embedded files : http://www.purebasic.fr/english/viewtopic.php?p=214790mback2k wrote:I am using the OnError library to let my users submit bug reports if a runtime error occours. They can see all the data in a small window and the final email, I would prefer it if they see the real .pb filename instead of "PB_EditorOutput2.pb".This only effects the main project .pb file.
You will have to replace "PB_EditorOutput2.pb" with 'MyMainModule.pb" in your error handler code.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
It would be cool if it would just use the information that is already added to the project, e.g. version, product name, etc..gnozal wrote:Yes, but jaPBe still adds it's own manifest. If I compile manually the PBCompiler does it. At least the "Your application description here." string in the manifest is only there if I use jaPBe's 'Create Executable' button.You want to customize the manifest, i.e. replace 'Your application description here.' with 'Product Info' from project options ?
I will add this on the todo list.
Ok, no problem. But add it to your todo, pleasegnozal wrote:Currently I can't do anything about it. I would have to redefine all the jaPBe compilation system, as the 'SOURCEALIAS' compiler switch doesn't work with embedded files : http://www.purebasic.fr/english/viewtopic.php?p=214790
You just have to replace "PB_EditorOutput2.pb" with 'MyMainModule.pb".

-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
The jaPBe 'installer' is just a 7-ZIP selfextracting archive.mback2k wrote:And gnozal, would it be possible for you to drop the Includes into a seperate package and strip them from the jaPBe package?
If you don't want/need the whole package just open the installer with your favorite file manager (like TotalCMD) or in 7-ZIP itself and extract the files you need.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Update
Changes :
- ProductName, ProductVersion, CompanyName and FileDescription from project options are imported in the manifest (if any)
Changes :
- ProductName, ProductVersion, CompanyName and FileDescription from project options are imported in the manifest (if any)
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
Yes, but I am using your automatic Library updater toolgnozal wrote:The jaPBe 'installer' is just a 7-ZIP selfextracting archive.mback2k wrote:And gnozal, would it be possible for you to drop the Includes into a seperate package and strip them from the jaPBe package?
If you don't want/need the whole package just open the installer with your favorite file manager (like TotalCMD) or in 7-ZIP itself and extract the files you need.

Thanks for the update. BTW-- I have an updated Registry.pbi and an additional Service.pbi, do you want to include it? Both includes come with Vista support.