Skip to content
This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Commit 3325ab2

Browse files
committed
Ajout de themes et README.md
0 parents  commit 3325ab2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+535
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.vscode/
2+
build/
3+
__pycache__/

README.md

Lines changed: 38 additions & 0 deletions

TextEd.spec

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
block_cipher = None
4+
5+
6+
a = Analysis(['index.py'],
7+
pathex=['D:\\Programming Projects\\Teams\\SiProgramming\\virtualenv\\texted_app_version1'],
8+
binaries=[],
9+
datas=[],
10+
hiddenimports=[],
11+
hookspath=[],
12+
runtime_hooks=[],
13+
excludes=[],
14+
win_no_prefer_redirects=False,
15+
win_private_assemblies=False,
16+
cipher=block_cipher,
17+
noarchive=False)
18+
pyz = PYZ(a.pure, a.zipped_data,
19+
cipher=block_cipher)
20+
exe = EXE(pyz,
21+
a.scripts,
22+
a.binaries,
23+
a.zipfiles,
24+
a.datas,
25+
[],
26+
name='TextEd',
27+
debug=False,
28+
bootloader_ignore_signals=False,
29+
strip=False,
30+
upx=True,
31+
upx_exclude=[],
32+
runtime_tmpdir=None,
33+
console=False , icon='logo.ico')

dist/TextEd.exe

9.04 MB
Binary file not shown.

dist/icons/annuler.png

699 Bytes

dist/icons/barre.png

671 Bytes

dist/icons/coller.png

784 Bytes

dist/icons/copier.png

565 Bytes

dist/icons/couper.png

804 Bytes

dist/icons/dark.png

508 Bytes

0 commit comments

Comments
 (0)