Acertos na documentação e texto de licença
This commit is contained in:
parent
9d28272642
commit
2f89ab3d01
|
|
@ -6,7 +6,7 @@ Codifica e decodifica arquivos em forma de nome de pastas vazias
|
||||||
## Instalação
|
## Instalação
|
||||||
|
|
||||||
#### Executável windows
|
#### Executável windows
|
||||||
Baixe o último zip na seção de releases e extraia (pode estar desatualizado)
|
Baixe o último zip na [seção de versões](https://fontes.dasua.casa/nosklo/zipasta/releases) e extraia (pode estar desatualizado).
|
||||||
|
|
||||||
#### Código fonte
|
#### Código fonte
|
||||||
Faça um clone do repositório e rode no python; O código não tem dependências externas.
|
Faça um clone do repositório e rode no python; O código não tem dependências externas.
|
||||||
|
|
@ -26,3 +26,10 @@ compõem o conteúdo deste arquivo serão excluídas do dispositivo sem confirma
|
||||||
|
|
||||||
> **Seja paciente, arquivos grandes podem demorar bastante para processar e o programa pode não responder por um tempo.**
|
> **Seja paciente, arquivos grandes podem demorar bastante para processar e o programa pode não responder por um tempo.**
|
||||||
|
|
||||||
|
## `setup.py`
|
||||||
|
|
||||||
|
Permite criar executável com o `cx_freeze`:
|
||||||
|
|
||||||
|
pip install cx_freeze
|
||||||
|
python setup.py build
|
||||||
|
|
||||||
|
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -7,11 +7,11 @@ zipasta is free software: you can redistribute it and/or modify it under the ter
|
||||||
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
|
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
|
||||||
version.
|
version.
|
||||||
|
|
||||||
Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
zipasta is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
||||||
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
|
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU Affero General Public License along with zipasta. If not,
|
You should have received a copy of the GNU Affero General Public License along with zipasta. If not,
|
||||||
see <https://www.gnu.org/licenses/>.
|
see https://www.gnu.org/licenses/
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
|
||||||
|
|
@ -7,11 +7,11 @@ zipasta is free software: you can redistribute it and/or modify it under the ter
|
||||||
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
|
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
|
||||||
version.
|
version.
|
||||||
|
|
||||||
Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
zipasta is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
||||||
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
|
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU Affero General Public License along with zipasta. If not,
|
You should have received a copy of the GNU Affero General Public License along with zipasta. If not,
|
||||||
see <https://www.gnu.org/licenses/>.
|
see https://www.gnu.org/licenses/
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import base64
|
import base64
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue