Giter Site home page Giter Site logo

sabconnect's People

Contributors

sw1tch avatar

sabconnect's Issues

Added support for binsearch (I wrote the patch)

Wasn't sure how to contribute back to the project so I made this as an issue.

I added support for binsearch.info.

I've attached the zipped plugin with the needed changes. I modified 
manifest.json, settings.html and 
added a script under content_scripts.

I started working on another function in common.js but didn't get very far.

Original issue reported on code.google.com by [email protected] on 5 Apr 2010 at 9:16

Attachments:

Better NZBMatrix integration

On NZBMatrix.com:

1. The Download button on the details page should be a Send to SABnzbd button.
2. NZBMatrix categories should be sent to SABnzbd.

Original issue reported on code.google.com by guillaume.boudreau on 24 Jun 2010 at 7:54

nzbmatrix function findNZBId(elem) broken

Download from nzbmatrix broken.  The function returns 
"http://nzbmatrix.com" + url, but the variable "url" already has 
"http://nzbmatrix.com" in it, so it duplicates the URL.


This function:
function findNZBId(elem)

Needs to be changed to be: (for all versions)

function findNZBId(elem) {
    var url = $(elem).attr('href');

    // 0.5a6 needs nzb-details not nzb-download in url
    url = url.replace('nzb-download', 'nzb-details');
    url = url.replace('http://nzbmatrix.com', '');

    return 'http://nzbmatrix.com' + url;

}



Please change this soon.

Original issue reported on code.google.com by [email protected] on 20 May 2010 at 11:20

NZBsRus - plugin only works if use side bar search box

What steps will reproduce the problem?
1. Run a search using the side bar
2. The sabconnect button shows beside the nzb results
3. type a search into the box in the centre above the search results.  Re-run 
search.  Search results will not have SABconnect button anymore.  
4.  If you run the search again using the side (left hand) search box, it will 
come up with the search results with the SABconnect button.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?

SABconnect++ - Version: 0.4.10 on Google Chrome 10.0.648.133

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 16 Mar 2011 at 2:23

Background.html is no longer parsed by Chrome

What steps will reproduce the problem?
1. Using Chrome 7.0.517.41 or better
2. Select "Manage Extensions"
3. Inspect the Background.html for SABConnect

What is the expected output? What do you see instead?
The <script> tags in the header should be rendered 1 after the next, as such:
<script type="text/javascript" src="...."></script>
<script type="text/javascript" src="...."></script>
<script>_</script>

Instead, the script tags are not terminated as per the XHTML standard, so the 
script tags are embedded within eachother like so:

<script type="text/javascript" src=".....">
  <script type="text/javascript" src="....">
    <script>_</script>

This prevents the innermost script from running ( which prevents refreshes from 
happening in the background )



What version of the product are you using? On what operating system?
Version 1.0.2 of SABConnect
Version 7.0.517.41 of Chrome
Windows XP 

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 24 Oct 2010 at 5:15

{FeatureRequest}

I think we need the option to send multiple selected nzb's to Sab as a single 
download.

because often a file and its Par's are posted separately, but you like them to 
download them together as one.


Original issue reported on code.google.com by [email protected] on 14 Jan 2014 at 9:21

Newzbin IMDB integration

I saw a requested feature on the SA forums was to add IMDB movie info to 
newzbin movie pages. I hacked this together using the latest head from SVN. 
Let me know if you want to colaborate to make this a bit better.

Attached in both crx and zip format.

Original issue reported on code.google.com by [email protected] on 20 Dec 2009 at 8:44

Attachments:

seems to not work when ssl is enabled unless you first open sabnzbd in the browser

What steps will reproduce the problem?
1. restart chrome
2. click on sabconnect

using sabnzbd 0.5.0 on opensuse 11.2 x64
client system: server 2008R2 x64

latest version of sabconnect

seems to not work, gives error:

Could not connect to SABnzbd - Check it is running, the details in this 
plugin's settings are correct and that you are running at least SABnzbd 
version 0.5!

This error goes away if you open up sabnzbd. could this be related to the 
fact that the ssl certificate is untrusted?

Original issue reported on code.google.com by [email protected] on 15 Mar 2010 at 1:47

1 Click button broken in Chromium

What steps will reproduce the problem?
1. Click 1-click download button
2. ????
3. Profit

What is the expected output? What do you see instead?
Expected: Information sent to the SABnzbd API.
Actual: Nothing apart from filename errors 

What version of the product are you using? On what operating system?
OSX 10.6.2, Chromium    5.0.336.0 (Developer Build 39577)

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 22 Feb 2010 at 7:41

The icon with the number of que'd nzb's stays at 1 after all downloads are completed

What steps will reproduce the problem?
1. Que up something
2. Let it finish
3. Stare at the little green box with the 1 in it

I'm assuming it should just disappear, but the 1 just sticks there, and when 
i click it still says Downloading for Status and has the report name, even 
though time and speed are both 00.

google-chrome-unstable (reports 4.0.266.0) on ubuntu 9.10.

Original issue reported on code.google.com by [email protected] on 20 Dec 2009 at 9:42

Middle click to open SABnzbd+

As a few people have mentioned on the Extension's page it would be great to 
have a middle click on the icon open a new tab with SABnzbd+ in.


Original issue reported on code.google.com by [email protected] on 9 Jun 2010 at 1:26

16px wide icons break newzbin layout

The 'download nzb' icon being replaced in Newzbin is 13x15, but it's replaced 
by 
16x16 icons.  This causes the icons to be too wide for their container, 
overflow 
onto a new line, and makes the entire listing of Newzbin results much longer to 
scroll through.

I threw together some simple 13x15 icons that will fix this issue with minor 
changes to the source javascript.

Attachments:
ubuntu-16-wide.png - broken layout
ubuntu-normal.png - normal layout without sabconnect installed
ubuntu-sab-mod.png - modified 13x15 icon for sabconnect
sab2_13*.png - modified icons
sabconnect.psd - source file
sabconnect-cfg.crx - modified plugin using the new icons for the 
impatient/lazy. 
Packed with my key so it won't have access to any settings from the original 
sabconnect.

Original issue reported on code.google.com by [email protected] on 6 Mar 2010 at 1:38

Attachments:

newzbin: "Send To SABnzbd" button broken

If check a nzb file for download then press the aforementioned button it says 
something like this:

"you have reached an unfinished url - please tell an Admin
Array ( [ret_url] => /browse/category/p/movies/?ps_rb_video_format=512 
[sort_new] => date [order_new] => asc [nzb_mode] => 1 [nzb_name_auto] => on 
[x-action] => [postid] => Array ( [0] => 5254323 ) )"

Original issue reported on code.google.com by [email protected] on 29 Dec 2009 at 7:38

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.