Skip to content

Commit

Permalink
.gitignoreとREADME.mdの更新、Unityプロジェクトの一時ファイル削除機能の実装、不要な.specファイルの削除
Browse files Browse the repository at this point in the history
  • Loading branch information
yuki57-46 committed Jan 1, 2025
1 parent 6a14a5a commit 8c6df10
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 41 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,9 @@ Thumbs.db
# PyInstaller specific
build/
*.spec

dist/
*.build/
*.onefile-build/
*.dist/
dist/ipch_and_browser_vc_search.exe
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Visual_Studio_chace_del
# VS_Unity_chace_del

## 概要

Visual Studioで作業していたらプロジェクトフォルダの容量の大体を占めてしまうipchやBrowswe.VC.dbを半自動的に削除するプログラムです

オプションで`.vs`フォルダやUnityの一時ファイルも削除できます

Unityプロジェクトの対象物は`Library`, `Temp`, `Obj`, `Build`, `Builds`, `Logs`, `UserSettings`, `.gradle`です。

## 使い方

1. このリポジトリをクローンする
Expand All @@ -20,11 +26,11 @@ git clone https://github.com/yuki57-46/Visual_Studio_chace_del.git

## ライセンス

特に無いと思います(後日確認ライブラリなどのライセンス)
特に無いです。ご自由にお使いください。

## その他

- Python 3.12.0で作成しました
- Python 3.12.8で作成しました
- このプログラムは自己責任でお願いします
- このプログラムを使用したことによるいかなる損害も補償しません
- 改善点や要望があればissueに書いてください
Binary file modified dist/ipch_and_browser_vc_search.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion ipch_and_browser_vc_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def unity_cache_path_to_text(folder_path, output_file_path):
# チェックボックス
unity_var = tk.BooleanVar()
unity_var.set(False)
check = tk.Checkbutton(root, text="Unityのプロジェクトの一時ファイルを削除する(未実装)",
check = tk.Checkbutton(root, text="Unityのプロジェクトの一時ファイルを削除する",
variable=unity_var)
check.pack()

Expand Down
37 changes: 0 additions & 37 deletions ipch_and_browser_vc_search.spec

This file was deleted.

0 comments on commit 8c6df10

Please sign in to comment.