Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Build outputs
bin/
obj/
publish/

# Installer output
Installer/
Expand Down
4 changes: 4 additions & 0 deletions .specstory/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# SpecStory project identity file
/.project.json
# SpecStory explanation file
/.what-is-this.md
18 changes: 18 additions & 0 deletions .specstory/history/2026-03-13_11-23Z-untitled.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!-- Generated by SpecStory, Markdown v2.1.0 -->

<!-- cursor Session ca3e6634-5472-4749-bc8f-1cd824b4bbe3 (2026-03-13 11:23Z) -->

# Untitled (2026-03-13 11:23Z)

_**User**_

"C:\Users\Dev\AppData\Local\Programs\Inno Setup 6\ISCC.exe" installer.iss

---

_**Agent (model composer-1.5, mode Agent)**_



---

278 changes: 278 additions & 0 deletions .specstory/history/2026-03-13_13-06Z-inno-setup-installer-script.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Audiomatic/Audiomatic.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<UseWinUI>true</UseWinUI>
<WindowsPackageType>None</WindowsPackageType>
<SelfContained>true</SelfContained>
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
18 changes: 18 additions & 0 deletions Audiomatic/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,11 @@
ToolTipService.ToolTip="Repeat" VerticalAlignment="Center">
<FontIcon x:Name="RepeatIcon" Glyph="&#xE8EE;" FontSize="14"/>
</Button>
<Button x:Name="SpeedButton" Background="Transparent" BorderThickness="0"
Padding="8,6" Click="Speed_Click"
ToolTipService.ToolTip="Playback Speed" VerticalAlignment="Center">
<TextBlock x:Name="SpeedText" Text="1x" FontSize="11" FontWeight="SemiBold"/>
</Button>
</StackPanel>

<!-- Row 3b: Volume bar (separate row) -->
Expand Down Expand Up @@ -285,6 +290,18 @@
TextTrimming="CharacterEllipsis" MaxLines="1"/>
</StackPanel>

<!-- Artist detail header (back + artist name) -->
<StackPanel x:Name="ArtistHeader" Grid.Column="0" Orientation="Horizontal"
Spacing="4" Visibility="Collapsed">
<Button Background="Transparent" BorderThickness="0" Padding="4,4"
Click="ArtistBack_Click" ToolTipService.ToolTip="Back to artists">
<FontIcon Glyph="&#xE72B;" FontSize="12"/>
</Button>
<TextBlock x:Name="ArtistNameText" VerticalAlignment="Center"
FontSize="12" FontWeight="SemiBold"
TextTrimming="CharacterEllipsis" MaxLines="1"/>
</StackPanel>

<!-- New playlist button -->
<Button x:Name="NewPlaylistBtn" Grid.Column="1" Background="Transparent"
BorderThickness="0" Padding="6,4" Click="NewPlaylist_Click"
Expand Down Expand Up @@ -329,6 +346,7 @@
<ToggleMenuFlyoutItem x:Name="SortArtist" Text="Artist" Click="Sort_Click" Tag="artist"/>
<ToggleMenuFlyoutItem x:Name="SortAlbum" Text="Album" Click="Sort_Click" Tag="album"/>
<ToggleMenuFlyoutItem x:Name="SortDuration" Text="Duration" Click="Sort_Click" Tag="duration"/>
<ToggleMenuFlyoutItem x:Name="SortBpm" Text="BPM" Click="Sort_Click" Tag="bpm"/>
<MenuFlyoutSeparator/>
<ToggleMenuFlyoutItem x:Name="SortAscending" Text="Ascending" IsChecked="True" Click="SortDirection_Click"/>
</MenuFlyout>
Expand Down
Loading