Skip to content

Commit

Permalink
colored "," for sources
Browse files Browse the repository at this point in the history
  • Loading branch information
vihdutta committed Mar 15, 2021
1 parent 96a2037 commit 537a7fd
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@
</p>

## Preview
![demo gif](/gif/demo.gif)

<div align="center">
<img src="gif/demo.gif" alt="demo.gif" />
</div>

## Installation

Download the latest .exe from the releases section of https://github.com/vihdutta/autosort. Since the file is an .exe, your anti-virus may prevent you from running the file.
Download the latest version of autosort from https://github.com/vihdutta/autosort/releases. Since autosort is an .exe, your anti-virus may prevent you from running autosort. Implementations to avoid this are being worked on.

## Usage

Expand Down
5 changes: 3 additions & 2 deletions autosortgui.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from PyQt5 import QtCore, QtGui, QtWidgets
from PyQt5.QtWidgets import QFileDialog, QMessageBox, QLabel
from autosort import copyfromdirs, srcdirs
import resources
from asfuncs import richtextfore, textback
import qtresources.resources
import os
import threading
import time
Expand Down Expand Up @@ -507,7 +508,7 @@ def source_button_click(self):
sourcedir = QFileDialog.getExistingDirectory()
if os.path.isdir(sourcedir):
srcdirs.append(sourcedir)
srcdirsstring = ', '.join(srcdirs)
srcdirsstring = f'{richtextfore}, {textback}'.join(srcdirs)
self.sourcedisplay.setText(srcdirsstring)
else:
pass
Expand Down
Binary file removed logo files/newlogo.ico
Binary file not shown.
Empty file added qtresources/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.

0 comments on commit 537a7fd

Please sign in to comment.