Skip to content

Commit

Permalink
version 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dmvieira committed Jul 10, 2014
1 parent d2af91d commit cf39f80
Show file tree
Hide file tree
Showing 7 changed files with 801 additions and 0 deletions.
59 changes: 59 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,61 @@
randomcopy
==========

## Requirements

Needs wxpython. If you want make exe or deb have more requirements

## English:

One day I was wanting to spend some of my music folders to my phone when I noticed that could not stand to hear the same things they always listened and had many more songs not heard for centuries. When choosing the old songs would realize he did not remember them by name and to listen to a one to know whether they are good and then record the location of them was complicated.

So I decided to make this program that ended up having its 7th edition and getting good enough to want to disclose and allow others to copy what they want. It works with images, pdf documents, videos, etc. .. anything that is a file.

Quite simply, you choose the folder where are the files you want to make the selection, choose how many files will copy, choose the file types you want to copy, and finally the output folder.

Everything under control and always telling the most problems for you.

So, did you? Help to implement or simply working with NGOs that I help: elp.org.br .

Enjoy!



## Português:

Certo dia estava querendo passar algumas músicas das minhas pastas para meu celular, quando me reparei que não aguentava mais escutar sempre as mesmas coisas que escutava sempre e que tinha muito mais músicas que não escutava a séculos. Quando ia escolhendo as músicas antigas percebia que não lembrava delas pelo nome e ficar escutando uma a uma pra saber se são boas e depois gravar a localização delas era meio complicado.

Então decidi fazer esse programa que acabou tendo sua 7ª edição e ficando bom o suficiente para querer divulgar e possibilitar outras pessoas de copiarem o que quiserem. Funciona com imagens, documentos em pdf, vídeos, etc.. qualquer coisa que seja um arquivo.

Bem simples, você escolhe a pasta aonde estão os arquivos que deseja fazer a seleção; escolhe quantos arquivos irá copiar; escolhe os tipos de arquivo que deseja copiar; e por último a pasta de saída.

Tudo bem controlado e sempre informando ao máximo os problemas à você.

Então, gostou? Ajude a implementar ou simplesmente colabora com a ONG que ajudo: elp.org.br .

Aproveite!

### Modo de Usar

1. Escolher pasta aonde estao arquivos a serem copiados

2. Escolher tipos de arquivo como exemplo:

> Um formato: avi
> Varios formatos: avi;mp3;jpeg
> Todos os formatos:
3. Escolher quantos arquivos deseja copiar (numero inteiro)

4. Apertar em (Copie agora!) e escolher pasta de destino que deseja copiar arquivos

5. Ficar Feliz ;)

## Problems

* Windows and Linux/Mac application need some unified module
* Better translate
* Modularize app
* It was my first python project ;)
22 changes: 22 additions & 0 deletions make_deb.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from py2deb import Py2deb

##p=Py2deb("randomcopy")
##p["/usr/lib/python2.7/dist-packages"] = ["source.py",]
##p.generate("0.1")
from glob import glob

version="0.7"

p=Py2deb("randomcopy")
p.author="Diogo"
p.mail="[email protected]"
p.description=u"Program to copy random files."
p.depends="bash, python, python-wxversion"
p.license="gpl"
p.section="utils"
p.arch="all"

p["/usr/share/applications"]=["randomcopy.desktop|randomcopy.desktop"]
p["/usr/bin"]=["source.py|randomcopy"]
p["/usr/share/icons/hicolor/48x48/apps"]=["randomcopy.png|randomcopy.png"]
p.generate(version,rpm=True,src=True)
11 changes: 11 additions & 0 deletions make_exe.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from distutils.core import setup
import py2exe

setup(
windows = [
{
"script": "sourcewin.py",
"icon_resources": [(1, "randomcopy.ico")]
}
],
)
Binary file added randomcopy.ico
Binary file not shown.
Binary file added randomcopy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit cf39f80

Please sign in to comment.