Skip to content

Commit

Permalink
Merge pull request #47 from NickvisionApps/v2023.7.0
Browse files Browse the repository at this point in the history
V2023.7.0
  • Loading branch information
fsobolev authored Jul 24, 2023
2 parents c08e94a + c4bbae0 commit 886772a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cavalier.doap
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<shortdesc xml:lang="en">Visualize audio with CAVA</shortdesc>
<homepage rdf:resource="https://github.com/NickvisionApps/Cavalier" />
<bug-database rdf:resource="https://github.com/NickvisionApps/Cavalier/issues"/>
<download-page rdf:resource="https://github.com/NickvisionApps/Cavalier" /> <!-- replace with flathub link -->
<download-page rdf:resource="https://flathub.org/apps/org.nickvision.cavalier" />
<category rdf:resource="http://api.gnome.org/doap-extensions#apps" />
<programming-language>C#</programming-language>

Expand Down
9 changes: 3 additions & 6 deletions NickvisionCavalier.GNOME/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ public Program()
_mainWindowController.AppInfo.Name = "Nickvision Cavalier";
_mainWindowController.AppInfo.ShortName = _("Cavalier");
_mainWindowController.AppInfo.Description = $"{_("Visualize audio with CAVA")}.";
_mainWindowController.AppInfo.Version = "2023.7.0-rc1";
_mainWindowController.AppInfo.Changelog = "<ul><li>Cavalier is reborn as part of Nickvision apps family! Completely rewritten in C#, gaining better performance and solid base to grow in future!</li><li>New notable features comparing to previous stable release of Cavalier: Spine drawing mode, drawing direction selection and mirror.</li><li>Translations were moved to Weblate.</li><li>Compared to 2023.7.0-beta1: fixed an issue where CAVA was still running after Cavalier quits, added Reverse mirror option, fixed other minor issues.</li></ul>";
_mainWindowController.AppInfo.Version = "2023.7.0";
_mainWindowController.AppInfo.Changelog = "<ul><li>Cavalier is reborn as part of Nickvision apps family! Completely rewritten in C#, gaining better performance and solid base to grow in future!</li><li>New notable features comparing to previous stable release of Cavalier: Spine drawing mode, drawing direction selection and mirror.</li><li>Translations were moved to Weblate.</li></ul>";
_mainWindowController.AppInfo.GitHubRepo = new Uri("https://github.com/NickvisionApps/Cavalier");
_mainWindowController.AppInfo.IssueTracker = new Uri("https://github.com/NickvisionApps/Cavalier/issues/new");
_mainWindowController.AppInfo.SupportUrl = new Uri("https://github.com/NickvisionApps/Cavalier/discussions");
Expand Down Expand Up @@ -85,10 +85,7 @@ public int Run(string[] args)
{
try
{
var argv = new string[args.Length + 1];
argv[0] = $"{_mainWindowController.AppInfo.Name}.GNOME";
args.CopyTo(argv, 1);
return _application.Run(args.Length + 1, argv);
return _application.RunWithSynchronizationContext();
}
catch (Exception ex)
{
Expand Down
Binary file modified NickvisionCavalier.GNOME/Screenshots/Levels.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified NickvisionCavalier.GNOME/Screenshots/Spine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</screenshot>
</screenshots>
<releases>
<release type="stable" date="2023-07-13" version="2023.07.0-rc1">
<release type="stable" date="2023-07-24" version="2023.7.0">
<description translatable="no">
<p>New Cavalier!</p>
<ul>
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,21 @@
* Set any single color or a gradient for background and foreground.
* Configure smoothing, noise reduction and a few other CAVA settings.

# Installation

<a href='https://flathub.org/apps/org.nickvision.cavalier'><img width='140' alt='Download on Flathub' src='https://flathub.org/assets/badges/flathub-badge-en.png'/></a>

<a href="https://snapcraft.io/cavalier"><img width='140' alt="Get it from the Snap Store" src="https://snapcraft.io/static/images/badges/en/snap-store-black.svg"/></a>

<a href="https://aur.archlinux.org/packages/cavalier"><img width='140' alt="Download from AUR" src="https://aur.archlinux.org/static/css/archnavbar/aurlogo.png"/></a>

# Chat
<a href='https://matrix.to/#/#nickvision:matrix.org'><img width='140' alt='Join our room' src='https://user-images.githubusercontent.com/17648453/196094077-c896527d-af6d-4b43-a5d8-e34a00ffd8f6.png'/></a>

# Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md) for details on how can you help the project and how to provide information so we can help you in case of troubles with the app.


# Screenshots

<details>
Expand Down

0 comments on commit 886772a

Please sign in to comment.