mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
Prep for release
This commit is contained in:
parent
8d6bc283d0
commit
708f052153
4 changed files with 11 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
=== Deluge 1.2.0_rc4 (In Development) ===
|
=== Deluge 1.2.0_rc4 (24 November 2009) ===
|
||||||
==== Core ====
|
==== Core ====
|
||||||
* Fix deleting old .fastresume files with fresh configs
|
* Fix deleting old .fastresume files with fresh configs
|
||||||
* Fix files list when using magnet uris
|
* Fix files list when using magnet uris
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -397,7 +397,7 @@ _data_files = [
|
||||||
# Main setup
|
# Main setup
|
||||||
setup(
|
setup(
|
||||||
name = "deluge",
|
name = "deluge",
|
||||||
version = "1.2.0_rc3",
|
version = "1.2.0_rc4",
|
||||||
fullname = "Deluge Bittorrent Client",
|
fullname = "Deluge Bittorrent Client",
|
||||||
description = "Bittorrent Client",
|
description = "Bittorrent Client",
|
||||||
author = "Andrew Resch, Damien Churchill",
|
author = "Andrew Resch, Damien Churchill",
|
||||||
|
|
|
@ -1,12 +1,19 @@
|
||||||
build_version = "1.2.0_rc3"
|
build_version = "1.2.0_rc4"
|
||||||
python_path = "C:\\Python26\\"
|
python_path = "C:\\Python26\\"
|
||||||
|
|
||||||
import shutil
|
import shutil
|
||||||
shutil.copy(python_path + "Scripts\deluge-script.py", python_path + "Scripts\deluge.py")
|
shutil.copy(python_path + "Scripts\deluge-script.py", python_path + "Scripts\deluge.py")
|
||||||
shutil.copy(python_path + "Scripts\deluged-script.py", python_path + "Scripts\deluged.py")
|
shutil.copy(python_path + "Scripts\deluged-script.py", python_path + "Scripts\deluged.py")
|
||||||
|
shutil.copy(python_path + "Scripts\deluge-web-script.py", python_path + "Scripts\deluge-web.py")
|
||||||
|
shutil.copy(python_path + "Scripts\deluge-gtk-script.py", python_path + "Scripts\deluge-gtk.py")
|
||||||
|
shutil.copy(python_path + "Scripts\deluge-console-script.py", python_path + "Scripts\deluge-console.py")
|
||||||
|
|
||||||
|
|
||||||
from bbfreeze import Freezer
|
from bbfreeze import Freezer
|
||||||
f = Freezer("..\\build-win32\\deluge-bbfreeze-" + build_version, includes=("libtorrent", "gzip", "zipfile", "re", "socket", "struct", "cairo", "pangocairo", "atk", "pango"))
|
f = Freezer("..\\build-win32\\deluge-bbfreeze-" + build_version, includes=("libtorrent", "gzip", "zipfile", "re", "socket", "struct", "cairo", "pangocairo", "atk", "pango"))
|
||||||
f.addScript(python_path + "Scripts\deluge.py", gui_only=False)
|
f.addScript(python_path + "Scripts\deluge.py", gui_only=False)
|
||||||
f.addScript(python_path + "Scripts\deluged.py", gui_only=False)
|
f.addScript(python_path + "Scripts\deluged.py", gui_only=False)
|
||||||
|
f.addScript(python_path + "Scripts\deluge-web.py", gui_only=False)
|
||||||
|
f.addScript(python_path + "Scripts\deluge-gtk.py", gui_only=False)
|
||||||
|
f.addScript(python_path + "Scripts\deluge-console.py", gui_only=False)
|
||||||
f() # starts the freezing process
|
f() # starts the freezing process
|
||||||
|
|
|
@ -37,7 +37,7 @@ SetCompressor lzma
|
||||||
|
|
||||||
# Deluge program information
|
# Deluge program information
|
||||||
!define PROGRAM_NAME "Deluge"
|
!define PROGRAM_NAME "Deluge"
|
||||||
!define PROGRAM_VERSION "1.2.0_rc3"
|
!define PROGRAM_VERSION "1.2.0_rc4"
|
||||||
!define PROGRAM_WEB_SITE "http://deluge-torrent.org"
|
!define PROGRAM_WEB_SITE "http://deluge-torrent.org"
|
||||||
|
|
||||||
# Python files generated with bbfreeze (without DLLs from GTK+ runtime)
|
# Python files generated with bbfreeze (without DLLs from GTK+ runtime)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue