Bit Che > Bugs & Feature Requests
[Old] - Bit Che 2.0 Release Candidate 4 - Build 35
chip!:
Here is my log of progress towards the next release.
here is a list of things I will be implementing for the next released version (2.0 build 1+):
Confirmed:
1) Support for downloading .torrents that are GZIP compressed (fixes Kickasstorrents.com / etc) *implemented and working: 4/7/2011
2) New script engine language, easier to understand variables / functions *implemented and working: 4/15/2011
2a) Script Debugger enhancements *Some debugger enhancements completed 4/19/2011
3) Improved support for Windows 7 standard user accounts (done!)
4) New script tab that shows the number of results *WIP 2.0 build 12+.. needs a little polishing and popup menus
5) Numerous bug fixes: improving site/script compatibility *HTTP 1.1 headers problem solved, gzip requests/chunked responses support.
6) Maintenance updates (language translations updates, etc)
7) Script information and settings.ini restructured (moving site configs out of settings.ini and into dedicated site.profile.ini, allowing easier individual script updating and cleaning)*completed 3/16/2012
8 ) Support for SSL sites (adds compatibility for a few private sites) AND removed MSWinsock.ocx dependency *completed 5/14/2011
11) Incorporation of x.exe and update.exe into Bit_Che.exe *x.exe and update.exe have been incorporated to Bit_Che.exe 5/15/2011
15) Script Engine now able to handle 2nd code section extract .torrent from a 2nd page *beta completed 5/24/2011
16) Cleaned up settings.ini and script.ini organization *beta completed 5/24/2011
17) Magnet link support *completed 2.0 build 12+
18) Fetch .torrents from known cache sites for Magnet links *completed 2.0 build 12+
19) Reduce dependencies and make portable *completed 2.0 build 14+
20) Support multiple Script Packs *completed 2.0 build 26+
21) Support multiple script Home URLs (mirrors) per scripts *completed 2.0 build 26+
22) Support for Private sites *completed 2.0 build 27+
Wishlist: (Possible, but not confirmed for next public release)
9) Script ranking system (initial framework has been started in a fork code)
10) Automatically add pre-configured public trackers to .torrents downloaded, increasing peers shared.
11) Incorporation of special.exe into Bit_Che.exe *completed 2.0 build 31+
12) Improved script update engine (allowing for individual scripts to be updated, and downloading of additional packages) - 2.0 build 17+
13) Improvements to Bit Che searching for media types, coffee cups, keywords, etc
14) Real-time scraping of trackers for current seeders/leechers - 2.0 build 12+
beta's of the next build will be released to members of the forums with Bit Che Plus access first!! :)
Link to the latest beta: http://convivea.com/forums/index.php?topic=2131.msg19117
TheHalf™:
Looking forward, nice going chip.
TheHalf™
chip!:
update on todays progress:
more support for HTTP 1.1 requests, including GZIP page requests and Chunked data responses. this allows Bit Che to request the search HTML pages to be gzipped, thus allowing slightly faster searching speeds (because in theory, less data is being downloaded from the web, so the engine can start extracting the results sooner). this is a good thing ;)
chip!:
update on this todays progress:
the new script engine with easier to understand variables/functions was incorporated. in addition, the engine is faster to process the results. AND, enhancements to the Bit Che debugger were also included.
attached is a screen shot of the debugger with some of the changes pointed out. you will notice big red arrows pointing out sections that have changed.. compare it to the current script debugger and I am sure you will welcome the new changes!
chip!:
also, here is an example of the new script language in a script file:
--- Code: ---[script]
name=KickAssTorrents.com
source=KickAssTorrents
home=http://kickasstorrents.com/
author=CuF
modified=chip! 3/14/2011
main=http://www.kickasstorrents.com/torrents/search/?q=%SEARCH%
audio=http://www.kickasstorrents.com/torrents/search/?q=%SEARCH%&categories[]=music
video=http://www.kickasstorrents.com/torrents/search/?q=%SEARCH%&categories[]=movies&categories[]=tv
apps=http://www.kickasstorrents.com/torrents/search/?q=%SEARCH%&categories[]=games&categories[]=applications
[code]
x=findh(x,d,>seed<,</tr,>)
x=+(1)
z=find(x,d,</table>)
d=crop(d,x,z)
d=replace(d,</strong>,)
d=replace(d,<strong class="red">,)
d=replace(d,</td>,[-bc-]</td>)
d=vacuum(d)
r=split(d,</tr>)
start
q=split(r,</td>)
t=array(q,0)
z=find(z,t,title="Download,href=)
$torrent=xsave(t,z,",")
z=find(z,t,"torrentname",href=)
$page=xsave(t,z,",",http://www.kickasstorrents.com)
z=find(z,t,href=)
$name=xsave(t,z,>,</)
t=array(q,1)
z=find(1,t,")
$size=xsave(t,z,>,[-bc-])
t=array(q,4)
$seeds=xsave(t,1,>,[-bc-])
t=array(q,5)
$leeches=xsave(t,1,>,[-bc-])
aloop
[/'code]
--- End code ---
[/code]
Navigation
[0] Message Index
[#] Next page
Go to full version