Skip to content

Commit

Permalink
src
Browse files Browse the repository at this point in the history
  • Loading branch information
illuminatedwax committed Mar 5, 2011
1 parent 529dd00 commit a908935
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 55 deletions.
3 changes: 0 additions & 3 deletions linux_pesterchum.sh

This file was deleted.

2 changes: 1 addition & 1 deletion menus.py
Expand Up @@ -735,6 +735,6 @@ def showReconnect(self):
class AboutPesterchum(QtGui.QMessageBox):
def __init__(self, parent=None):
QtGui.QMessageBox.__init__(self, parent)
self.setText("P8STERCHUM V. 3.14 8eta 2 ::::)")
self.setText("P3ST3RCHUM V. 3.14")
self.setInformativeText("Programming by illuminatedwax (ghostDunk), art by Grimlive (aquaMarinist)")
self.mainwindow = parent
3 changes: 3 additions & 0 deletions pesterchum
@@ -0,0 +1,3 @@
#!/bin/sh

python2.6 pesterchum.py
45 changes: 45 additions & 0 deletions setup-win.py
@@ -0,0 +1,45 @@
# WINDOWS setup file!

from cx_Freeze import setup, Executable
import sys
import os
import os.path
import shutil

if sys.platform == "win32":
base = "Win32GUI"
else:
base = "Console"

setup(
name = "PESTERCHUM",
version = "3.14",
description = "P3ST3RCHUM",
executables = [Executable("pesterchum.py",
base=base,
compress=True,
icon="pesterchum.ico",
)])
os.rename("build/exe.win32-2.6", "build/pesterchum")
pcloc = "build/pesterchum"

shutil.copytree("themes", "%s/themes" % (pcloc))
shutil.copytree("imageformats", "%s/imageformats" % (pcloc))
shutil.copytree("smilies", "%s/smilies" % (pcloc))
f = open("%s/pesterchum.js" % (pcloc), 'w')
f.write("{\"tabs\":true, \"chums\":[]}")
f.close()
shutil.copy("C:/Dev/Py26MSdlls-9.0.21022.8/msvc/msvcm90.dll", "%s" % (pcloc))
shutil.copy("C:/Dev/Py26MSdlls-9.0.21022.8/msvc/msvcp90.dll", "%s" % (pcloc))
shutil.copy("C:/Dev/Py26MSdlls-9.0.21022.8/msvc/msvcr90.dll", "%s" % (pcloc))
shutil.copy("C:/Dev/Py26MSdlls-9.0.21022.8/msvc/x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_d08d0375.manifest",
"%s" % (pcloc))
shutil.copy("pesterchum.nsi", "%s/" % (pcloc))
shutil.copy("pesterchum-update.nsi", "%s/ % (pcloc)")
os.mkdir("%s/profiles" % (pcloc))
os.mkdir("%s/logs" % (pcloc))
shutil.copy("logs/chums.js", "%s/logs" % (pcloc))
shutil.copy("readme.txt", "%s/" % (pcloc))
shutil.copy("themes.txt", "%s/" % (pcloc))


51 changes: 0 additions & 51 deletions setup.py

This file was deleted.

0 comments on commit a908935

Please sign in to comment.