Matt Ward
a500e37ef8
Fix debugger hang in snippet compiler sample.
13 years ago
Matt Ward
de6619b247
Fix snippet compiler sample.
...
Remaining problems:
Application can hang after debugging.
Selecting item in Errors list does not jump to text editor line.
13 years ago
Daniel Grunwald
a7047035c4
Fixed performance bug when pressing Backspace - we were unnecessarily building the visual line for the intermediate state where the previous character is selected but not deleted.
13 years ago
Daniel Grunwald
9ff68ecaed
Fix "InvalidOperationException: Trying to build visual line from collapsed line" when the start of a folding section is hidden by a different element generator than the FoldingElementGenerator. (e.g. TruncateLongLines)
13 years ago
Daniel Grunwald
72d01bd043
Fix some more crashes reported by UDC.
13 years ago
Daniel Grunwald
10a368a382
Fix NullReferenceException in PropertyPad.SetSelectableObjects
13 years ago
Daniel Grunwald
9cc8c5248d
Fix various crashes reported by UDC.
13 years ago
Daniel Grunwald
57124599a0
Fix OverflowException in VB lexer when a double literal is too large.
13 years ago
Daniel Grunwald
b7c439bb97
Disable IME while the caret is within a read-only section.
13 years ago
Siegfried Pammer
0dec5058bf
fixed IME: IME context is properly restored when returning from a toolbar or button.
13 years ago
Matt Ward
8bc8fb1e18
Fix C++ backend binding sample.
13 years ago
Matt Ward
0463ff4a40
Remove code completion sample.
...
Add readme that links to two third party code completion samples
that use AvalonEdit and SharpDevelop DOM and NRefactory.
13 years ago
Matt Ward
245c2bd9ca
Fix Gallio sample.
...
Compile Gallio extension with AnyCPU so it works on x64 Windows.
13 years ago
Matt Ward
73744272ed
Fix line counter sample.
13 years ago
Matt Ward
cedc68b9ca
Fix image viewer sample.
13 years ago
Matt Ward
a7557c0c4e
Fix alternate editor display binding sample.
13 years ago
Matt Ward
80915541cc
Fix codon creation sample.
13 years ago
Daniel Grunwald
50475d75a6
Update AvalonEdit.nuspec for 4.3 release.
13 years ago
Daniel Grunwald
b080736e84
Update AvalonEdit.shfbproj for new version of Sandcastle Help File Builder.
13 years ago
Matt Ward
4b284c60c6
Fix unable to create display binding message in SDA sample.
13 years ago
Christoph Wille
73abd1c97b
Publish to x64 IIS
13 years ago
Christoph Wille
8bd353ee16
Fix dynamic languages conversion
13 years ago
Christoph Wille
666df3adf9
Upgrade project files
13 years ago
Daniel Grunwald
e0365b101c
Update StringResources
13 years ago
Daniel Grunwald
1769d6e0e9
Fix SD-1914 - InvalidOperationException "Trying to build visual line from collapsed line"
...
This exception was caused by FoldingManager.UpdateFolding() re-using FoldingSections and adjusting their end offset.
If those FoldingSections were folded, the corresponding CollapsedLineSection was not updated for the new end position.
This inconsistency would cause visual glitches (such as fold markers not updating properly), and in some cases the InvalidOperationException during rendering.
FoldingSection now handles when its StartOffset or EndOffset is changed, and updates the CollapsedLineSection accordingly.
13 years ago
Matt Ward
0f78edb8bb
Fix web project options panel behaviour when IIS and IIS Express is not installed.
...
Allow modification of IIS and IIS Express settings in a project
even if IIS or IIS Express is not found.
13 years ago
Matt Ward
eafe04b069
Allow external program to be run when starting web project.
...
Do not force the use of IIS or IIS Express to debug or run a web project.
Fix IIS Express always being debugged even if Run without debugger was
selected.
13 years ago
Daniel Grunwald
3841dbf8a1
Fix NullReferenceException when hovering over ChangeMarkerMargin in a text file without syntax highlighting.
13 years ago
Daniel Grunwald
7a58188249
Fix MSBuildBasedProject.FindExistingPropertyInAllConfigurations()
13 years ago
Peter Forstmeier
cd214611d6
Fix FormattingFixture.cs and DateTimeFunctionsFixture.cs
13 years ago
Peter Forstmeier
6bb341616a
Merge branch 'master' of github.com:icsharpcode/SharpDevelop
13 years ago
Peter Forstmeier
57c02cf767
add more formatting tests
13 years ago
Daniel Grunwald
7ed3cf8a5c
Fix infinite loop in WPF designer.
13 years ago
Daniel Grunwald
52e595eb16
Handle IOException (network path not available) in AbstractProject.get_ReadOnly
13 years ago
Daniel Grunwald
a457ec6278
VB code completion: fix bug that caused code completion to omit local variables when typing near the end of a block.
...
http://community.sharpdevelop.net/forums/t/16643.aspx
The VB parser was using the end of the last statement as the EndLocation for the block. This made local variables
declared in that block unavailable when typing another statement at the end of the block.
We now use the location of the 'End' or 'Next' token instead.
13 years ago
Matt Ward
ef5d2930e9
Fix output name in Application settings project panel.
...
The output assembly name was always has the extension of .exe when
the project options is opened.
13 years ago
Matt Ward
2c197e33c7
Update NuGet to version 2.2.1
13 years ago
Peter Forstmeier
736665a00d
Merge branch 'master' of github.com:icsharpcode/SharpDevelop
13 years ago
Peter Forstmeier
92e6511ec9
Add some Test for Formatting results
13 years ago
Matt Ward
2a4af3b94b
Remove highlight when search panel closed.
13 years ago
Peter Forstmeier
7ebf7f6881
Merge branch 'master' of github.com:icsharpcode/SharpDevelop
13 years ago
Peter Forstmeier
3036889042
add DateSubtract.cs function to SDR syntax DateSubtract(endDate,startDate)
13 years ago
Matt Ward
5ff1f88f1f
Fix null reference when creating new EF data model file.
...
Do not add an EntityTypeMapping element if it already exists.
Fix intermittent error were the EF data model view content
does not have a workbench window when the file is renamed
on save.
13 years ago
Matt Ward
14592816aa
Reformat code.
13 years ago
Matt Ward
bad935c416
Fix null reference exception on disposing EDM View.
...
When an exception is thrown when loading a .edmx file
the EDMDesignerViewContent's Dispose method was not
handling the EDMView being null and causing the
underlying exception to be hidden.
13 years ago
Matt Ward
cdfd000f36
Fix null reference exception in database connection dialog.
...
The Add button was being enabled when the selected database
changed but on connecting to the server again the selected
database was cleared but the Add button was not disabled.
13 years ago
Peter Forstmeier
36942a8c9a
http://community.sharpdevelop.net/forums/t/16600.aspx (3. Item)
13 years ago
Matt Ward
a59c26f744
FxCop - Return default strings if resources cannot be found.
13 years ago
Christoph Wille
c33a9c3cc5
GetMajorVersion() assumes VersionInfo string to be either null or non-empty
13 years ago
Christoph Wille
a3f5374769
Remove "alpha" designation
13 years ago