Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbf0640e

Browse files
committed
v5.1 - added updated localization and fctb project
1 parent3c33dc2 commitbf0640e

28 files changed

+210
-42
lines changed

‎CHANGE.md‎

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,3 +195,35 @@
195195
- Transitioned to the new and improved Assembly Launcher 2.0.
196196
- Upgraded the previously used version of FastColoredTextBox to the latest forked version for enhanced performance.
197197
- Upgraded to the new and improved guiTasmX64 based on DOSBox 0.74-3, featuring silent execution capabilities.
198+
199+
##Version 5.0 (Build time: 19th October 2023, 02:27:15 Hrs.)
200+
**Compatible with upgrade and fresh install**
201+
202+
- Version 5.0 | Built on : 19th October 2023, 02:27:15 Hrs.
203+
- Added support for docking code editors and other tabs for maximum developer efficiency
204+
- Added Terminal to allow users to directly type and run commands in the IDE
205+
- Added support for debugging code using Turbo Debugger
206+
- Added support to customize the Visual Studio 2015-based theme in the IDE. Supported themes include Blue, Dark, and Light
207+
- Added support for macros
208+
- Added support to open and edit .INC file
209+
- Added support to customize the code editor mode for Dark and Light.
210+
- Added support to preserve the docked layout
211+
- Enhanced the update notification to prompt the user before navigating to the download page
212+
- Removed support for Font Family and editor color customization
213+
- Removed the 'View Usage Info' functionality
214+
- Removed Custom Assemble and Custom Build feature
215+
- Revamped the About section
216+
- Updated icons and fonts
217+
218+
##Version 5.1 (Build time : 23rd November 2023, 00:28:03 Hrs.)
219+
**Compatible with upgrade and fresh install**
220+
221+
- Added support for Turbo 32-bit using TASM32, TLINK32, and TD32, expanding development possibilities
222+
- Added support for commonly used keyboard shortcuts in the Terminal for an intuitive user experience
223+
- Code optimization for improved performance
224+
- Expanded the examples library
225+
- Fixed directory permission issues during installation
226+
- Introduced 'Command History' support in the Terminal
227+
- Incorporated a BuyMeACoffee link in the About section to make donations
228+
- Included original Turbo Docs for comprehensive reference and documentation
229+
- Re-designed preference dialog

‎FastColoredTextBox/FastColoredTextBox.csproj‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
16+
<SonarQubeExclude>True</SonarQubeExclude>
1617
</PropertyGroup>
1718
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1819
<DebugSymbols>true</DebugSymbols>

‎FastColoredTextBox/FindForm.cs‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public FindForm(FastColoredTextBox tb, Texts localizedText)
2222
{
2323
currentLocalizedText=localizedText;
2424
InitializeComponent();
25+
this.MaximumSize=this.MinimumSize=this.Size;
2526
this.tb=tb;
2627

2728
btClose.Text=currentLocalizedText.IDE.Close;

‎FastColoredTextBox/GoToForm.cs‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public GoToForm(Texts localizedText)
1919
{
2020
currentLocalizedText=localizedText;
2121
InitializeComponent();
22+
this.MaximumSize=this.MinimumSize=this.Size;
2223

2324
this.Text=currentLocalizedText.IDE.GoToLine;
2425
btnOk.Text=currentLocalizedText.Others.Ok;

‎FastColoredTextBox/ReplaceForm.cs‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ public partial class ReplaceForm : Form
1515

1616
publicReplaceForm(FastColoredTextBoxtb)
1717
{
18-
InitializeComponent();
18+
InitializeComponent();
1919
this.tb=tb;
2020
}
2121

2222
publicReplaceForm(FastColoredTextBoxtb,TextslocalizedText)
2323
{
2424
currentLocalizedText=localizedText;
2525
InitializeComponent();
26+
this.MaximumSize=this.MinimumSize=this.Size;
27+
2628
this.tb=tb;
2729

2830
btClose.Text=currentLocalizedText.IDE.Close;

‎LICENSE‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ to attach them to the start of each source file to most effectively
631631
state the exclusion of warranty; and each file should have at least
632632
the "copyright" line and a pointer to where the full notice is found.
633633

634-
GUI Turbo Assembler - an essentialIntegrated Development Environment for Assemblylanguage with TASM & TLINK
634+
GUI Turbo Assembler - an essential32-64bit localized IDE for AssemblyLanguage with TASM, TASM32, TLINK, TLINK32, TD and TD32
635635
Copyright (C) 2013-2023 Lakhya's Innovation Inc., Lakhya Jyoti Nath (ljnath)
636636

637637
This program is free software: you can redistribute it and/or modify
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
652652
If the program does terminal interaction, make it output a short
653653
notice like this when it starts in an interactive mode:
654654

655-
GUI Turbo Assembler - an essentialIntegrated Development Environment for Assemblylanguage with TASM & TLINK
655+
GUI Turbo Assembler - an essential32-64bit localized IDE for AssemblyLanguage with TASM, TASM32, TLINK, TLINK32, TD and TD32
656656
Copyright (C) 2013-2023 Lakhya's Innovation Inc., Lakhya Jyoti Nath (ljnath)
657657
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
658658
This is free software, and you are welcome to redistribute it

‎Localization/Common/Constants.cs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* GUI Turbo Assembler - an essentialIntegrated Development Environment for Assemblylanguage with TASM & TLINK
2+
* GUI Turbo Assembler - an essential32-64bit localized IDE for AssemblyLanguage with TASM, TASM32, TLINK, TLINK32, TD and TD32
33
* Copyright (C) 2013-2023 Lakhya's Innovation Inc., Lakhya Jyoti Nath (ljnath)
44
*
55
* This program is free software: you can redistribute it and/or modify

‎Localization/Handlers/Exceptions/LocalizationException.cs‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* GUI Turbo Assembler - an essentialIntegrated Development Environment for Assemblylanguage with TASM & TLINK
2+
* GUI Turbo Assembler - an essential32-64bit localized IDE for AssemblyLanguage with TASM, TASM32, TLINK, TLINK32, TD and TD32
33
* Copyright (C) 2013-2023 Lakhya's Innovation Inc., Lakhya Jyoti Nath (ljnath)
44
*
55
* This program is free software: you can redistribute it and/or modify
@@ -24,7 +24,7 @@
2424
namespaceGUITurboAssembler.Localization.Handlers.Exceptions
2525
{
2626
[Serializable]
27-
classLocalizationException:Exception
27+
publicclassLocalizationException:Exception
2828
{
2929

3030
publicLocalizationException():base(){}

‎Localization/Handlers/LocaleFileHanlder.cs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* GUI Turbo Assembler - an essentialIntegrated Development Environment for Assemblylanguage with TASM & TLINK
2+
* GUI Turbo Assembler - an essential32-64bit localized IDE for AssemblyLanguage with TASM, TASM32, TLINK, TLINK32, TD and TD32
33
* Copyright (C) 2013-2023 Lakhya's Innovation Inc., Lakhya Jyoti Nath (ljnath)
44
*
55
* This program is free software: you can redistribute it and/or modify

‎Localization/Localization.csproj‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,5 +88,10 @@
8888
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
8989
</None>
9090
</ItemGroup>
91+
<ItemGroup>
92+
<SonarQubeSettingInclude="sonar.coverage.exclusions">
93+
<Value>ZeroDepJson.cs</Value>
94+
</SonarQubeSetting>
95+
</ItemGroup>
9196
<ImportProject="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
9297
</Project>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp