Skip to content

Commit

Permalink
Bump Version to v0.5.0 and update Readme
Browse files Browse the repository at this point in the history
and moved assembly info file into properties folder
  • Loading branch information
romibi committed Oct 21, 2023
1 parent c23d331 commit 073973a
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 23 deletions.
4 changes: 2 additions & 2 deletions GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;

[assembly: AssemblyVersion("0.4.0.0")]
[assembly: AssemblyFileVersion("0.4.0.0")]
[assembly: AssemblyVersion("0.5.0.0")]
[assembly: AssemblyFileVersion("0.5.0.0")]
35 changes: 21 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,26 +224,33 @@ No other dependencies are needed.

---
## Todo (not strictly ordered by priority)
- [x] Create Project structure
- Command Line Interface
- [x] mostly done, see issue [#1](/../../issues/1)
- Graphical User Interface _(see also issue [#2](/../../issues/2))_
- [x] directory tree
- [x] folder content view
- [x] add file/folder
- [ ] replace warning
- [x] remove file/folder
- [x] extract file/folder
- [ ] rename file/folder
- [ ] search name
- [ ] search content (maybe)
- [ ] drag & drop
- [ ] drag & drop between 2 packed (maybe)
- [ ] icon
- [ ] nice loading animation
- [ ] direct vs prepare modes
_Re-create container on each change or prepare changes and then save_
- [ ] "modding" mode (maybe)
_Have huge gaps between files edited to not move around bits much inside container while constantly editing_
- [ ] file preview (maybe)
- GUI Milestone 1 "[Minimal Usable GUI](/../../milestone/2)"
- [x] icons
- [ ] add empty folder for adding file
- [ ] replace warning
- [ ] rename file/folder
- [ ] Open file with ScrapPackedExplorer [#4](/../../issues/4)
- [ ] Update README.MD GUI chapter
- GUI Milestone 2 "[Basic GUI finished](/../../milestone/3)"
- [ ] search name
- [ ] drag & drop
- GUI Milestone 2 or later
- [ ] dark theme
- [ ] nice loading animation
- [ ] direct vs prepare modes
_Re-create container on each change or prepare changes and then save_
- [ ] drag & drop between 2 packed (maybe)
- [ ] search content (maybe)
- Later
- [ ] "modding" mode (maybe)
_Have huge gaps between files edited to not move around bits much inside container while constantly editing_
- [ ] file preview (maybe)
- Misc: see [other issues](/../../issues/)
4 changes: 2 additions & 2 deletions ScrapPackedExplorer/ScrapPackedExplorer.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
Expand Down Expand Up @@ -36,7 +36,7 @@
</ItemGroup>

<ItemGroup>
<Compile Include="..\GlobalAssemblyInfo.cs" Link="GlobalAssemblyInfo.cs" />
<Compile Include="..\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion ScrapPackedExplorerCli/ScrapPackedExplorerCli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</PropertyGroup>

<ItemGroup>
<Compile Include="..\GlobalAssemblyInfo.cs" Link="GlobalAssemblyInfo.cs" />
<Compile Include="..\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>

<ItemGroup>
<Compile Include="..\GlobalAssemblyInfo.cs" Link="GlobalAssemblyInfo.cs" />
<Compile Include="..\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
<Compile Include="..\ScrapPackedExplorer\GuiApp.xaml.cs" Link="Gui\GuiApp.xaml.cs" />
<Compile Include="..\ScrapPackedExplorer\MainWindow.xaml.cs" Link="Gui\MainWindow.xaml.cs" />
<Compile Include="..\ScrapPackedExplorerCli\CliApp.cs" Link="Cli\CliApp.cs" />
Expand Down
4 changes: 2 additions & 2 deletions ScrapPackedLibrary/ScrapPackedLibrary.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
Expand All @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<Compile Include="..\GlobalAssemblyInfo.cs" Link="GlobalAssemblyInfo.cs" />
<Compile Include="..\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion ScrapPackedTests/ScrapPackedTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</PropertyGroup>

<ItemGroup>
<Compile Include="..\GlobalAssemblyInfo.cs" Link="GlobalAssemblyInfo.cs" />
<Compile Include="..\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 073973a

Please sign in to comment.