Skip to content

Commit b904885

Browse files
author
bugfish\bugfishtm
committed
1.6
1 parent 3742aeb commit b904885

File tree

14 files changed

+14
-8
lines changed

14 files changed

+14
-8
lines changed

_changelogs/1.6.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<b>Release 1.6</b><br /> - Support for Suitefish Windows Software by moving Configuration File data.db to __Config/data.db
2+
3+

_packages/_swnuke-1.6.zip

42.2 MB
Binary file not shown.

_releases/_executable/1.6.zip

42.2 MB
Binary file not shown.

_releases/_source/1.6.zip

32.3 MB
Binary file not shown.

_screenshots/deletion.png

-35 KB
Loading

_screenshots/software.png

-61.6 KB
Loading

_source/Interface.Designer.cs

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_source/Interface.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,11 @@ public Interface()
6262
this.Text = "Bugfish-Nuke";
6363

6464
// Initialize SQLite
65-
sqlite = new Sqlite("data.db");
65+
string exePath = AppContext.BaseDirectory;
66+
string configDir = Path.Combine(exePath, "__Config");
67+
Directory.CreateDirectory(configDir); // Ensures folder exists
68+
string configDbPath = Path.Combine(configDir, "config.db");
69+
sqlite = new Sqlite(configDbPath);
6670
sqlite.CreateTable("CREATE TABLE IF NOT EXISTS Items (Id INTEGER PRIMARY KEY AUTOINCREMENT, Name TEXT NOT NULL, Shortcode TEXT NOT NULL UNIQUE, IsActive INTEGER NOT NULL);");
6771
sqlite.CreateTable("CREATE TABLE IF NOT EXISTS Folders (Id INTEGER PRIMARY KEY AUTOINCREMENT, Path TEXT NOT NULL, IsActive INTEGER NOT NULL);");
6872
sqlite.CreateTable("CREATE TABLE IF NOT EXISTS Cmds (Id INTEGER PRIMARY KEY AUTOINCREMENT, Path TEXT NOT NULL, IsActive INTEGER NOT NULL);");

_source/Properties/PublishProfiles/FolderProfile.pubxml.user

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- https://go.microsoft.com/fwlink/?LinkID=208121. -->
33
<Project>
44
<PropertyGroup>
5-
<History>True|2025-06-16T01:43:07.0469269Z||;True|2025-06-09T04:12:33.0726408+02:00||;True|2025-05-16T00:56:03.3555113+02:00||;True|2025-05-16T00:27:44.9887761+02:00||;True|2025-05-12T17:20:44.0227225+02:00||;True|2025-05-12T00:22:56.3363341+02:00||;True|2025-05-12T00:10:21.9736662+02:00||;</History>
5+
<History>True|2025-07-21T23:34:26.2864172Z||;True|2025-07-22T01:32:32.8394488+02:00||;True|2025-07-22T01:29:05.1127268+02:00||;True|2025-06-16T03:43:07.0469269+02:00||;True|2025-06-09T04:12:33.0726408+02:00||;True|2025-05-16T00:56:03.3555113+02:00||;True|2025-05-16T00:27:44.9887761+02:00||;True|2025-05-12T17:20:44.0227225+02:00||;True|2025-05-12T00:22:56.3363341+02:00||;True|2025-05-12T00:10:21.9736662+02:00||;</History>
66
<LastFailureDetails />
77
</PropertyGroup>
88
</Project>

_source/bugfish-nuke.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
<ImplicitUsings>enable</ImplicitUsings>
1010
<ApplicationIcon>1305831.ico</ApplicationIcon>
1111
<ApplicationManifest>app.manifest</ApplicationManifest>
12-
<AssemblyVersion>1.5</AssemblyVersion>
13-
<FileVersion>1.5</FileVersion>
12+
<AssemblyVersion>1.6</AssemblyVersion>
13+
<FileVersion>1.6</FileVersion>
1414
<Title>Bugfish Nuke</Title>
1515
<Company>Bugfish Industries</Company>
1616
<Product>Bugfish Nuke</Product>
1717
<Description>Software to securely delete files and logins in case of unexpected warrants.</Description>
1818
<Copyright>Open Source License</Copyright>
1919
<PackageProjectUrl>https://github.com/bugfishtm/bugfish_nuke</PackageProjectUrl>
2020
<PackageIcon>1305831.png</PackageIcon>
21-
<Version>1.5</Version>
21+
<Version>1.6</Version>
2222
<Authors>Bugfish</Authors>
2323
</PropertyGroup>
2424

0 commit comments

Comments
 (0)