Skip to content

Commit

Permalink
bump to v2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
erik.araojo committed May 10, 2024
1 parent 97a9818 commit 19aac65
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions source/Tefin/Tefin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<ApplicationIcon>Assets\fire.ico</ApplicationIcon>
<AssemblyName>FintX</AssemblyName>
<AssemblyVersion>2.1.0</AssemblyVersion>
<FileVersion>2.1.0</FileVersion>
<AssemblyVersion>2.2.0</AssemblyVersion>
<FileVersion>2.2.0</FileVersion>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<CFBundleName>FintX</CFBundleName> <!-- Also defines .app file name -->
<CFBundleDisplayName>FintX</CFBundleDisplayName>
<CFBundleIdentifier>com.erik.FintX</CFBundleIdentifier>
<CFBundleVersion>2.1.0</CFBundleVersion>
<CFBundleVersion>2.2.0</CFBundleVersion>
<CFBundlePackageType>APPL</CFBundlePackageType>
<CFBundleShortVersionString>FintX 2.0+</CFBundleShortVersionString>
<CFBundleShortVersionString>FintX 2.2+</CFBundleShortVersionString>
<CFBundleSignature>com.erik.FintX</CFBundleSignature>
<CFBundleExecutable>FintX</CFBundleExecutable>
<CFBundleIconFile>Resources/fire.icns</CFBundleIconFile>
Expand Down
3 changes: 3 additions & 0 deletions source/Tefin/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ public void Init() {
private void OnSponsor() => Core.Utils.openBrowser("https://github.com/sponsors/namigop");

private void StartAutoSave() {
#if DEBUG
return;
#endif
AutoSave.ClientParam[] Get() {
var methodTabs = this.TabHost.Items
.Where(t => t.CanAutoSave)
Expand Down
2 changes: 1 addition & 1 deletion source/Tefin/ViewModels/Tabs/TreeRequestEditorViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public MethodInfo MethodInfo {
this.CtsReq?.Dispose();
this.CtsReq = null;
this.CtsReq = new CancellationTokenSource();
mParams[mParams.Length - 1] = this.CtsReq.Token;
mParams[^1] = this.CtsReq.Token;
}

return (mParams.Any(), mParams);
Expand Down

0 comments on commit 19aac65

Please sign in to comment.