Raised This Month: $51 Target: $400
 12% 

RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: Object-Browser/Translations


Post New Thread Reply   
 
Thread Tools Display Modes
Miu
Veteran Member
Join Date: Nov 2013
Old 04-12-2015 , 06:15   Re: RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: Lysis & Disassembler
Reply With Quote #51

being able to only replace inside selected text would be nice
Miu is offline
_AeonOne_
Member
Join Date: Nov 2012
Location: Berlin, Germany
Old 04-12-2015 , 11:39   Re: RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: RCon Querys
Reply With Quote #52

A new Update is available.
The RCon Update.
Quote:
New/Added:
- Added a Toolbar
- Safe argument (-safe) + New Crashlogs
- Jump-To dialog
- RCon Querying
- Line reformatting

Improved:
- Improved overall-UI
- Better Indentation
- Better Intellisense
- Line-exact scrolling
- Added Closebuttons
- Better updating-system
- Nonblocking Serverstart
- Line ending normalization
- Opening/Focusing of the Find/Replace
- Failsafe config reading

Fixed:
- No Autocomplete/Intellisense on preprocessor-lines
- Fixed various Syntaxreformatter issues
- Lagging while closing configwindow with no changes
- Crash on editing language files
- Allow FTP upload of copied files.
- DASM-Editor now uses the Global-Scrollspeed
- Forced safe in UTF8-without BOM
- Wrong saving when focus on split windows
How to Update:


EDIT:
@Miu I'll see what i can do.

Last edited by _AeonOne_; 04-12-2015 at 17:46.
_AeonOne_ is offline
nergal
Veteran Member
Join Date: Apr 2012
Old 04-12-2015 , 12:55   Re: RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: RCon Querys
Reply With Quote #53

when will linux?
__________________
nergal is offline
_AeonOne_
Member
Join Date: Nov 2012
Location: Berlin, Germany
Old 04-12-2015 , 17:48   Re: RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: RCon Querys
Reply With Quote #54

Quote:
Originally Posted by nergal View Post
when will linux?
probably never.
I'll add this to the faq.

SPEdit cannot run in Linux/Mac because WPF isn't implemented in Wine/Mono.
_AeonOne_ is offline
mukunda
Member
Join Date: Sep 2012
Old 04-15-2015 , 00:30   Re: RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: RCon Querys
Reply With Quote #55

Let us disable the auto formatting

try typing:
Code:
float alpha;
int   bravo;
I also get caught by the autocomplete window when I am navigating with the arrows, it will stop if I land on any term with a space in front of it
__________________

Last edited by mukunda; 04-15-2015 at 00:31.
mukunda is offline
_AeonOne_
Member
Join Date: Nov 2012
Location: Berlin, Germany
Old 04-15-2015 , 05:48   Re: RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: RCon Querys
Reply With Quote #56

Quote:
Originally Posted by mukunda View Post
Let us disable the auto formatting

try typing:
Code:
float alpha;
int   bravo;
I also get caught by the autocomplete window when I am navigating with the arrows, it will stop if I land on any term with a space in front of it
I let you all.
Tools->Options->Editor->Reformatting Line after semicolon *uncheck*

More or less intended.
That the autocomplete does not show up on
'func-token space-token (-token' is a bug. But lets be honest, i've never thought that someone would write it that strange way.
I'll fix this.

Last edited by _AeonOne_; 04-15-2015 at 05:50.
_AeonOne_ is offline
Miu
Veteran Member
Join Date: Nov 2013
Old 04-15-2015 , 07:56   Re: RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: RCon Querys
Reply With Quote #57

it crashes when you ctrl+s but the file doesn't exist anymore

edit: the reformatter also removes the spaces in ternary expressions

Last edited by Miu; 04-15-2015 at 10:50.
Miu is offline
Kolapsicle
Senior Member
Join Date: Oct 2014
Old 04-15-2015 , 09:33   Re: RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: RCon Querys
Reply With Quote #58

Great release, I've been using this since I found out about it and I find it to be a much better alternative to Notepad++ which I was previously using. I was going to note any and all bugs I come across, but I've only found two one of which I wouldn't really call a bug.

After having spedit open for a few hours I noticed a lot of input lag which I believe to be directly related to the parsed API and possibly UI Animations, though I haven't been able to recreate it. This isn't much to go on, so I'll hit you up with a reply if I can narrow it down.

The only other issue I've had is with the reformatter in that it doesn't format the bitwise AND operator between expressions.

Thank you for releasing this for the community.

Last edited by Kolapsicle; 04-15-2015 at 09:33.
Kolapsicle is offline
_AeonOne_
Member
Join Date: Nov 2012
Location: Berlin, Germany
Old 04-15-2015 , 12:15   Re: RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: RCon Querys
Reply With Quote #59

Quote:
Originally Posted by Miu View Post
it crashes when you ctrl+s but the file doesn't exist anymore

edit: the reformatter also removes the spaces in ternary expressions
This is strange..but i fixed it.

Also fixed.

Quote:
Originally Posted by Kolapsicle View Post
Great release, I've been using this since I found out about it and I find it to be a much better alternative to Notepad++ which I was previously using. I was going to note any and all bugs I come across, but I've only found two one of which I wouldn't really call a bug.

After having spedit open for a few hours I noticed a lot of input lag which I believe to be directly related to the parsed API and possibly UI Animations, though I haven't been able to recreate it. This isn't much to go on, so I'll hit you up with a reply if I can narrow it down.

The only other issue I've had is with the reformatter in that it doesn't format the bitwise AND operator between expressions.

Thank you for releasing this for the community.
Thank you ^^

Well, if you experience it again, try to open the option menu and disable the animations. Perhaps this will help. And report it here ;)

So, the AND operator is a little bit problematic.
Following operators are able:
Code:
word &word;  //addressof
word & word;  //bitwise and
word &= word; //binary and + assign
word && word; //binary and
it's a very tough task to determine between addressof and bitwise int.
If you really want to have the bitwise and operator you should add at least one whitespace after the &.
Some Example mappings:
Code:
a&b    -->  a &b;
a &b   -->  a &b;
a& b   -->  a & b;
a & b  -->  a & b;

Last edited by _AeonOne_; 04-15-2015 at 12:15.
_AeonOne_ is offline
mukunda
Member
Join Date: Sep 2012
Old 04-15-2015 , 14:47   Re: RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: RCon Querys
Reply With Quote #60

Quote:
Originally Posted by _AeonOne_ View Post
I let you all.
Tools->Options->Editor->Reformatting Line after semicolon *uncheck*
I didn't even realize that Editor was a button.

One other gripe is that tabs are counted as only 1 column
__________________
mukunda is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 10:05.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode