Skip to content

Commit c1dfcc1

Browse files
committed
Major release [v1.0.0.0]
1 parent fa7aaee commit c1dfcc1

5 files changed

Lines changed: 78 additions & 32 deletions

File tree

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,23 @@ FFmpeg: https://ffmpeg.org
2424

2525
---
2626

27+
# Installation
28+
29+
1. Ensure you have Python 3.9 or newer installed \
30+
You can check your version by typing this command:
31+
```powershell
32+
python --version
33+
```
34+
2. Download the bootstrapper from https://github.com/o7q/Scribe/releases
35+
3. Select your preferred device type (CPU or CUDA) \
36+
You can check your CUDA version by typing this command:
37+
```
38+
nvidia-smi
39+
```
40+
4. Click install and wait for it to complete
41+
42+
---
43+
2744
## **Interface**
2845

2946
<details>

src/Scribe/Scribe/Includes/Setup/SetupMenu.Designer.cs

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

src/Scribe/Scribe/Includes/Setup/SetupMenu.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,19 @@ private void InstallButton_Click(object sender, EventArgs e)
7878
Close();
7979
}
8080

81+
private void CloseButton_Click(object sender, EventArgs e)
82+
{
83+
Environment.Exit(0);
84+
}
85+
8186
private void SetupMenu_MouseDown(object sender, MouseEventArgs e)
8287
{
8388
MoveForm(Handle, e);
8489
}
90+
91+
private void DeviceLabel_MouseDown(object sender, MouseEventArgs e)
92+
{
93+
MoveForm(Handle, e);
94+
}
8595
}
8696
}

src/Scribe/Scribe/MainMenu.Designer.cs

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

src/Scribe/Scribe/MainMenu.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,6 +563,7 @@ private void ProcessModelComboBox_SelectedIndexChanged(object sender, EventArgs
563563

564564
private void ProcessCleanStorageButton_Click(object sender, EventArgs e)
565565
{
566+
ProcessEnableAutoUpdateCheckBox.Checked = false;
566567
willAbort = true;
567568

568569
DialogResult prompt = MessageBox.Show("Are you sure?\n\nThis will delete all storage data that does not have a corresponding media file.\nIt will also clean temporary files.", "", MessageBoxButtons.YesNo);
@@ -577,7 +578,7 @@ private void ProcessCleanStorageButton_Click(object sender, EventArgs e)
577578
string storeFile = File.ReadAllText(storeFiles[i]);
578579
string[] mediaPath = storeFile.Split('ʃ');
579580

580-
if (!File.Exists(mediaPath[0]))
581+
if (!File.Exists(mediaPath[0]) || mediaPath.Length != 2)
581582
{
582583
File.Delete(storeFiles[i]);
583584
count++;

0 commit comments

Comments
 (0)