Browse Source

Set version to 2.1.0 and make identical to develop

2.1.x 2.1.0
Safihre 8 years ago
parent
commit
4605c3fd30
  1. 16146
      interfaces/smpl/templates/static/MochiKit/MochiKit.js
  2. 4
      interfaces/smpl/templates/static/MochiKit/__package__.js
  3. 22
      licenses/License-pynewsleecher.txt
  4. 16
      licenses/License-systrayicon.txt
  5. 3
      sabnzbd/misc.py
  6. 4
      sabnzbd/version.py
  7. 30
      scripts/Sample-PostProc.cmd

16146
interfaces/smpl/templates/static/MochiKit/MochiKit.js

File diff suppressed because it is too large

4
interfaces/smpl/templates/static/MochiKit/__package__.js

@ -1,2 +1,2 @@
dojo.hostenv.conditionalLoadModule({"common": ["MochiKit.MochiKit"]});
dojo.hostenv.moduleLoaded("MochiKit.*");
dojo.hostenv.conditionalLoadModule({"common": ["MochiKit.MochiKit"]});
dojo.hostenv.moduleLoaded("MochiKit.*");

22
licenses/License-pynewsleecher.txt

@ -1,11 +1,11 @@
The original author of SABnzbd based his work on Pynewsleecher by Freddy@madcowdesease.org.
Few parts of Pynewsleecher have survived the generations of SABnzbd in a
recognizable form.
Still, we wish to thank Freddy for his inspiration.
The home of the Pynewsleecher project:
http://www.madcowdisease.org/mcd/pynewsleecher
The software does not carry any license information.
The original author of SABnzbd based his work on Pynewsleecher by Freddy@madcowdesease.org.
Few parts of Pynewsleecher have survived the generations of SABnzbd in a
recognizable form.
Still, we wish to thank Freddy for his inspiration.
The home of the Pynewsleecher project:
http://www.madcowdisease.org/mcd/pynewsleecher
The software does not carry any license information.

16
licenses/License-systrayicon.txt

@ -1,8 +1,8 @@
On http://www.brunningonline.net/simon/blog/archives/001835.html,
the author licensed SysTrayIcon.py under a variant of the WTFPL:
> Any road up, help yourself. Consider SysTrayIcon.py to be under an
> "Aleister Crowley" style license - "Do what thou wilt shall be the
> only law".
>
> Err, but don't sue me if it doesn't work. ;-)
On http://www.brunningonline.net/simon/blog/archives/001835.html,
the author licensed SysTrayIcon.py under a variant of the WTFPL:
> Any road up, help yourself. Consider SysTrayIcon.py to be under an
> "Aleister Crowley" style license - "Do what thou wilt shall be the
> only law".
>
> Err, but don't sue me if it doesn't work. ;-)

3
sabnzbd/misc.py

@ -337,8 +337,7 @@ def sanitize_foldername(name, limit=True):
maxlen = cfg.folder_max_length()
if limit and len(name) > maxlen:
# Folders can't end on a dot in Windows
name = name[:maxlen].strip('.')
name = name[:maxlen]
# And finally, make sure it doesn't end in a dot
if name != '.' and name != '..':

4
sabnzbd/version.py

@ -4,5 +4,5 @@
# You MUST use double quotes (so " and not ')
__version__ = "2.0.1"
__baseline__ = "be5bebb5741eeaffed552807929248ee603e6bf1"
__version__ = "2.1.0"
__baseline__ = "443efb5eda00e165e7d0459824989a6300ec458c"

30
scripts/Sample-PostProc.cmd

@ -1,15 +1,15 @@
@echo off
rem Example of a post processing script for SABnzbd
echo.
echo Running in directory "%~d0%~p0"
echo.
echo The first parameter (result-dir) = %1
echo The second parameter (nzb-name) = %2
echo The third parameter (nice name) = %3
echo The fourth parameter (newzbin #) = %4
echo The fifth parameter (category) = %5
echo The sixth parameter (group) = %6
echo The seventh parameter (status) = %7
echo The eight parameter (failure_url)= %8
echo.
@echo off
rem Example of a post processing script for SABnzbd
echo.
echo Running in directory "%~d0%~p0"
echo.
echo The first parameter (result-dir) = %1
echo The second parameter (nzb-name) = %2
echo The third parameter (nice name) = %3
echo The fourth parameter (newzbin #) = %4
echo The fifth parameter (category) = %5
echo The sixth parameter (group) = %6
echo The seventh parameter (status) = %7
echo The eight parameter (failure_url)= %8
echo.

Loading…
Cancel
Save