Skip to content

Commit 20b0800

Browse files
Release version 0.2
1 parent 59eed0b commit 20b0800

File tree

8 files changed

+22
-15
lines changed

8 files changed

+22
-15
lines changed

Publish-App.ps1

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
if (Test-Path .\bin\MovieList\)
22
{
3-
Remove-Item -Path .\bin\MovieList\ -Recurse
3+
Get-Childitem .\bin\MovieList\ -Recurse | ForEach-Object {
4+
Remove-Item $_.FullName -Force -Recurse
5+
}
6+
7+
Remove-Item -Recurse -Force -Path .\bin\MovieList\
48
}
59

6-
dotnet publish . --configuration Release --runtime win10-x64 --self-contained true --output .\bin\MovieList --nologo -p:Platform=x64 -p:PublishTrimmed=true
10+
dotnet publish .\MovieList\MovieList.csproj --configuration Release --runtime win10-x64 --self-contained `
11+
--output .\bin\MovieList --nologo -p:Platform=x64 -p:PublishSingleFile=true
712

813
Remove-Item -Path .\bin\MovieList\ -Include *.pdb, *.xml
914

@@ -14,4 +19,8 @@ if (Test-Path .\bin\MovieList.zip)
1419

1520
Compress-Archive -Path .\bin\MovieList\ -DestinationPath .\bin\MovieList.zip
1621

17-
Remove-Item -Path .\bin\MovieList\ -Recurse
22+
Get-Childitem .\bin\MovieList\ -Recurse | ForEach-Object {
23+
Remove-Item $_.FullName -Force -Recurse
24+
}
25+
26+
Remove-Item -Recurse -Force -Path .\bin\MovieList\

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,9 @@ how to use the app.
2020
## Project Status
2121

2222
I've been working on this app for more than a year and a half (as of November 2020) and it's not nearly done. I've
23-
released version 0.1, because now the app is at least usable, although it lacks lots of features yet. Versions 0.x
24-
should be considered pre-release and as such probably shouldn't be used in general since there will be breaking changes.
25-
26-
Currently I'm working on version 0.2 which will include the ability to search/filter/sort the list in various ways.
27-
Also, adding tags to movies and series will be available, to make searching/filtering more powerful.
23+
released versions 0.1 and 0.2, because now the app is at least usable, although it lacks lots of features yet. Versions
24+
0.x should be considered pre-release and as such probably shouldn't be used in general since there will be breaking
25+
changes.
2826

2927
I'm actively working on the app, although sometimes I take breaks to work on other projects, so expect more versions
3028
soon.

docs/_v0_1/11-about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ I've been working on this app for a year and a half (as of July 2020) and it's n
1515
0.1, because now the app is at least usable, although it lacks lots of features yet. Versions 0.x should be considered
1616
pre-release and as such probably shouldn't be used in general since there will be breaking changes.
1717

18-
I'm actively working on the app, although sometimes a take breaks to work on other projects, so expect more versions
18+
I'm actively working on the app, although sometimes I take breaks to work on other projects, so expect more versions
1919
soon.

docs/_v0_2/07-miniseries-form.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ period subform and it comes before the RT link of the miniseries. The RT link fo
5656
below the poster, and the RT link for the season is contained at the top of the period subform. Maybe I'll change it
5757
in a future version, but for now I will leave it as-is.
5858

59-
The rules for tags are also the same as in the full series form.
59+
The rules for tags are the same as in the full series form.
6060

6161
## Other Actions
6262

docs/_v0_2/09-search-filter-sort.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ shade of purple. Here's how it looks:
1111

1212
![Screen with search]({{ '/assets/v0.2/images/screen-search.png' | absolute_url }})
1313

14-
When the search is activated, the list of all items will appear in the search panel, and you can click on them to jump
15-
to those items. To stop searching, click on the 'Stop searching' button. Afterwards, if you click on the 'Find next' or
16-
'Find previous' button again, the search will start from the top. If you want to stop searching and clear the criteria,
17-
then click on the 'Clear search' button.
14+
When the search is activated, the list of all found items will appear in the search panel, and you can click on them to
15+
jump to those items. To stop searching, click on the 'Stop searching' button. Afterwards, if you click on the 'Find
16+
next' or 'Find previous' button again, the search will start from the top. If you want to stop searching and clear the
17+
filters, then click on the 'Clear search' button.
1818

1919
Here's the list of all possible search filters:
2020

docs/_v0_2/13-about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ released versions 0.1 and 0.2, because now the app is at least usable, although
1616
Versions 0.x should be considered pre-release and as such probably shouldn't be used in general since there will be
1717
breaking changes.
1818

19-
I'm actively working on the app, although sometimes a take breaks to work on other projects, so expect more versions
19+
I'm actively working on the app, although sometimes I take breaks to work on other projects, so expect more versions
2020
soon.
-19 KB
Loading
-19.8 KB
Loading

0 commit comments

Comments
 (0)