repo
string
commit
string
message
string
diff
string
dchelimsky/rspec-tmbundle
8ea84aadbc0f805c670e536e51713b9dde5761a1
extract method
diff --git a/rspec/lib/spec/mocks/message_expectation.rb b/rspec/lib/spec/mocks/message_expectation.rb index d52f857..d7ab63c 100644 --- a/rspec/lib/spec/mocks/message_expectation.rb +++ b/rspec/lib/spec/mocks/message_expectation.rb @@ -1,275 +1,279 @@ module Spec module Mocks class BaseExpectation at...
dchelimsky/rspec-tmbundle
6111eeeb8ad02cf94d0652863abc4ad9c90d71e4
Added pending example for http://rspec.lighthouseapp.com/projects/5645-rspec/tickets/352.
diff --git a/rspec/spec/spec/mocks/mock_spec.rb b/rspec/spec/spec/mocks/mock_spec.rb index f728a73..180e535 100644 --- a/rspec/spec/spec/mocks/mock_spec.rb +++ b/rspec/spec/spec/mocks/mock_spec.rb @@ -1,475 +1,486 @@ require File.dirname(__FILE__) + '/../../spec_helper' module Spec module Mocks describe Moc...
dchelimsky/rspec-tmbundle
d7b7a31c92457b1329b9feea32c4b7bbaa740585
mock.should_not_receive(:anything) fails fast (once again)
diff --git a/rspec/CHANGES b/rspec/CHANGES index c2517a3..bfcea0f 100644 --- a/rspec/CHANGES +++ b/rspec/CHANGES @@ -1,519 +1,520 @@ == Version 1.1.4 (trunk) Maintenance release. Note: we've removed the metaclass method from Object. There were some generated specs that used it, and they will now break. Just repla...
dchelimsky/rspec-tmbundle
b113612a8fadefe53bec67972f6d7ac00a802c3d
Added vendor_rails? method to boot.rb in rails app to support older and newer versions of rails simultaneously. Closes #351.
diff --git a/example_rails_app/config/boot.rb b/example_rails_app/config/boot.rb index 479b7fd..be578d5 100644 --- a/example_rails_app/config/boot.rb +++ b/example_rails_app/config/boot.rb @@ -1,36 +1,44 @@ # Don't change this file. Configuration is done in config/environment.rb and config/environments/*.rb unless de...
dchelimsky/rspec-tmbundle
8561531fd8dc85acddb92a09a30dca57fd612610
oops. gotta slow down :)
diff --git a/rspec/spec/spec/extensions/main_spec.rb b/rspec/spec/spec/extensions/main_spec.rb index 8e41589..aabb616 100644 --- a/rspec/spec/spec/extensions/main_spec.rb +++ b/rspec/spec/spec/extensions/main_spec.rb @@ -1,80 +1,76 @@ require File.dirname(__FILE__) + '/../../spec_helper.rb' module Spec module Ex...
dchelimsky/rspec-tmbundle
23b532c15c3c1e6092c036e9beed5a9992b13296
removed accidental puts
diff --git a/rspec/lib/spec/story/runner.rb b/rspec/lib/spec/story/runner.rb index 62faed6..3d7ed59 100644 --- a/rspec/lib/spec/story/runner.rb +++ b/rspec/lib/spec/story/runner.rb @@ -1,61 +1,60 @@ require 'spec/story/runner/scenario_collector.rb' require 'spec/story/runner/scenario_runner.rb' require 'spec/story/r...
dchelimsky/rspec-tmbundle
438bad354b85e3f26fe194ae19e3b0aef470b627
fixed bug where stories (in rails only) were loading two copies of options (and therefore losing the command line options, leaving only defaults).
diff --git a/rspec/lib/spec/runner/formatter/profile_formatter.rb b/rspec/lib/spec/runner/formatter/profile_formatter.rb index 3784f3a..8671d72 100644 --- a/rspec/lib/spec/runner/formatter/profile_formatter.rb +++ b/rspec/lib/spec/runner/formatter/profile_formatter.rb @@ -1,47 +1,51 @@ require 'spec/runner/formatter/p...
dchelimsky/rspec-tmbundle
57f9ef29162c10bc1438d1d41f063471fdf4c11d
rdoc tweaks
diff --git a/rspec/lib/spec/example/configuration.rb b/rspec/lib/spec/example/configuration.rb index 6741847..cd3f469 100755 --- a/rspec/lib/spec/example/configuration.rb +++ b/rspec/lib/spec/example/configuration.rb @@ -1,144 +1,158 @@ module Spec module Example class Configuration # Chooses what mock ...
dchelimsky/rspec-tmbundle
690590b10eb1890e161aa8f1c9eb9191b1978ba9
removed webby from pre-commit (it requires the rspec gem so we've got an unfortunate cycle)
diff --git a/rspec/lib/spec/version.rb b/rspec/lib/spec/version.rb index d28deb9..c4e54ae 100644 --- a/rspec/lib/spec/version.rb +++ b/rspec/lib/spec/version.rb @@ -1,22 +1,22 @@ module Spec module VERSION unless defined? MAJOR MAJOR = 1 MINOR = 1 TINY = 3 RELEASE_CANDIDAT...
dchelimsky/rspec-tmbundle
2a606a4a4366ce305fcfc05f4ed7cd4d41931f76
rename default matcher symbol
diff --git a/rspec/lib/spec/expectations/extensions/object.rb b/rspec/lib/spec/expectations/extensions/object.rb index 84bdfdd..2091c29 100644 --- a/rspec/lib/spec/expectations/extensions/object.rb +++ b/rspec/lib/spec/expectations/extensions/object.rb @@ -1,63 +1,63 @@ module Spec module Expectations # rspec ...
dchelimsky/rspec-tmbundle
09d9b55816f6a15f2270f3fd84e4cbf931953db8
removed unnecessary require
diff --git a/rspec/lib/spec/example.rb b/rspec/lib/spec/example.rb index 39ff76b..a566fcd 100644 --- a/rspec/lib/spec/example.rb +++ b/rspec/lib/spec/example.rb @@ -1,12 +1,11 @@ require 'timeout' -require 'forwardable' require 'spec/example/pending' require 'spec/example/module_reopening_fix' require 'spec/example...
dchelimsky/rspec-tmbundle
883d2f28845a65fce7bd05931f988079a09fb4de
minor refactoring
diff --git a/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb b/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb index 764ae44..8f85ee0 100644 --- a/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb +++ b/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb @@ -1,130 +1,130 @@...
dchelimsky/rspec-tmbundle
b299ac775e92c788c06a36381fdcb1277149b761
enhanced stub_model rdoc
diff --git a/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb b/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb index ec1c360..764ae44 100644 --- a/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb +++ b/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb @@ -1,122 +1,130 @@...
dchelimsky/rspec-tmbundle
09bed09fbdcafffcb0fb46403c2746d2ae8f6cdf
Added as_new_record to stub_model e.g. stub_model(Foo).as_new_record
diff --git a/rspec/CHANGES b/rspec/CHANGES index 1d85b1d..c2517a3 100644 --- a/rspec/CHANGES +++ b/rspec/CHANGES @@ -1,519 +1,520 @@ == Version 1.1.4 (trunk) Maintenance release. Note: we've removed the metaclass method from Object. There were some generated specs that used it, and they will now break. Just repla...
dchelimsky/rspec-tmbundle
a1f453766ebd3bf1193fd327c8278b9a99258607
Improved stub_model such that new_record? does "the right thing"
diff --git a/rspec/CHANGES b/rspec/CHANGES index 144d83d..1d85b1d 100644 --- a/rspec/CHANGES +++ b/rspec/CHANGES @@ -1,519 +1,520 @@ == Version 1.1.4 (trunk) Maintenance release. Note: we've removed the metaclass method from Object. There were some generated specs that used it, and they will now break. Just repla...
dchelimsky/rspec-tmbundle
014e5f81a36ffd807972cf7baef85dd3e5199aa9
fix doc typo
diff --git a/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb b/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb index 4c45469..aa4976c 100644 --- a/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb +++ b/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb @@ -1,98 +1,98 @@ ...
dchelimsky/rspec-tmbundle
e6812e0a7047ca412a1f4109a4bf89695f42a510
attribution
diff --git a/doc/src/community/index.page b/doc/src/community/index.page index ec0f2d3..a94f435 100644 --- a/doc/src/community/index.page +++ b/doc/src/community/index.page @@ -1,320 +1,321 @@ --- title: Community order: 6 filter: - erb - coderay - textile --- h2. The Core Team * "Dave Astels":htt...
dchelimsky/rspec-tmbundle
6d22b4b85eec6524b27f3065cc8f09f180e8f569
More documentation in spec_helper.rb template regarding fixtures and also where to look for more information about configuration options.
diff --git a/rspec_on_rails/generators/rspec/templates/spec_helper.rb b/rspec_on_rails/generators/rspec/templates/spec_helper.rb index 210d9d1..938dd7b 100644 --- a/rspec_on_rails/generators/rspec/templates/spec_helper.rb +++ b/rspec_on_rails/generators/rspec/templates/spec_helper.rb @@ -1,39 +1,47 @@ # This file is c...
dchelimsky/rspec-tmbundle
deaa80dc49d57189ccf3ceb2bdeb30ed5b564e34
fixed example for include_text matcher
diff --git a/rspec_on_rails/spec/rails/matchers/include_text_spec.rb b/rspec_on_rails/spec/rails/matchers/include_text_spec.rb index 8dba38c..1ac3fd7 100644 --- a/rspec_on_rails/spec/rails/matchers/include_text_spec.rb +++ b/rspec_on_rails/spec/rails/matchers/include_text_spec.rb @@ -1,64 +1,70 @@ require File.expand_...
dchelimsky/rspec-tmbundle
2dd2e9fa4b1ee392a2e1f56860203cb46169a923
tiny tidy
diff --git a/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb b/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb index e35446e..0c220dd 100644 --- a/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb +++ b/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb...
dchelimsky/rspec-tmbundle
a6c3dc3827dc4dcc25bd6192789fad046993978f
propogate controller_name in nested controller specs
diff --git a/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb b/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb index 2a1378b..e35446e 100644 --- a/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb +++ b/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb...
dchelimsky/rspec-tmbundle
4df2c72157a36da905827c946cc7098c2124a9c7
got nested integrate_views working
diff --git a/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb b/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb index 8c6acfb..2a1378b 100644 --- a/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb +++ b/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb...
dchelimsky/rspec-tmbundle
6f2c4cf4741bef610bc23982b2c9fcf6d96d8b07
Patch from Corey Haines to add include_text matcher (rspec_on_rails). Closes #343
diff --git a/doc/src/community/index.page b/doc/src/community/index.page index 3117467..ec0f2d3 100644 --- a/doc/src/community/index.page +++ b/doc/src/community/index.page @@ -1,318 +1,320 @@ --- title: Community order: 6 filter: - erb - coderay - textile --- h2. The Core Team * "Dave Astels":htt...
dchelimsky/rspec-tmbundle
886e979bd505c95b6e6f6ce764f2249fa288c40e
pushed operator matcher invocation down to ExpectationMatcherHandler
diff --git a/rspec/lib/spec/expectations/extensions/object.rb b/rspec/lib/spec/expectations/extensions/object.rb index a3925bb..84bdfdd 100644 --- a/rspec/lib/spec/expectations/extensions/object.rb +++ b/rspec/lib/spec/expectations/extensions/object.rb @@ -1,71 +1,63 @@ module Spec module Expectations # rspec ...
dchelimsky/rspec-tmbundle
734652dc1ef492e636b4434688640dc3f1dec801
Patch from Antti Tarvainen to load files only once when running spec with heckle. Closes #333
diff --git a/doc/src/community/index.page b/doc/src/community/index.page index 60f888c..3117467 100644 --- a/doc/src/community/index.page +++ b/doc/src/community/index.page @@ -1,317 +1,318 @@ --- title: Community order: 6 filter: - erb - coderay - textile --- h2. The Core Team * "Dave Astels":htt...
dchelimsky/rspec-tmbundle
e000331f40f0da5f8891369db8bfa9c30d69b2a8
Added the rest of the changes from Rick's patch (previous commit)
diff --git a/rspec/lib/spec/matchers/raise_error.rb b/rspec/lib/spec/matchers/raise_error.rb index d8d7167..c003849 100644 --- a/rspec/lib/spec/matchers/raise_error.rb +++ b/rspec/lib/spec/matchers/raise_error.rb @@ -1,129 +1,132 @@ module Spec module Matchers class RaiseError #:nodoc: def initialize(er...
dchelimsky/rspec-tmbundle
d90b6abcfbec67c5ebe05c14768808c624eb9e76
Patch from Rick DeNatale to add a hash_including mock-argument matcher. Closes #332.
diff --git a/rspec/spec/spec/mocks/hash_including_matcher_spec.rb b/rspec/spec/spec/mocks/hash_including_matcher_spec.rb new file mode 100644 index 0000000..29fae31 --- /dev/null +++ b/rspec/spec/spec/mocks/hash_including_matcher_spec.rb @@ -0,0 +1,32 @@ +require File.dirname(__FILE__) + '/../../spec_helper.rb' + +modu...
dchelimsky/rspec-tmbundle
17b3f3d5c6bde93646bf61f1d894c8f6e1a19d5d
removed unnecessary call to gem 'heckle'
diff --git a/rspec/lib/spec/runner/heckle_runner.rb b/rspec/lib/spec/runner/heckle_runner.rb index 0ce46fa..7695fe7 100644 --- a/rspec/lib/spec/runner/heckle_runner.rb +++ b/rspec/lib/spec/runner/heckle_runner.rb @@ -1,73 +1,72 @@ begin require 'rubygems' - gem 'heckle' require 'heckle' rescue LoadError ; rais...
dchelimsky/rspec-tmbundle
c306874a65ba9e63afbc5abbc5013ba7e7024de0
Removed unnecessary require 'rubygems' in world.rb
diff --git a/rspec/lib/spec/story/world.rb b/rspec/lib/spec/story/world.rb index 93b6e1d..a27d3dd 100644 --- a/rspec/lib/spec/story/world.rb +++ b/rspec/lib/spec/story/world.rb @@ -1,125 +1,124 @@ -require 'rubygems' require 'spec/expectations' require 'spec/matchers' require 'spec/example/pending' module Spec ...
dchelimsky/rspec-tmbundle
097d63dfaa903fda1973c3cbad600af44097fcab
Fixed bug in which session object in example was not the same instance used in the controller. Closes #331.
diff --git a/rspec/CHANGES b/rspec/CHANGES index be19874..1202a42 100644 --- a/rspec/CHANGES +++ b/rspec/CHANGES @@ -1,519 +1,520 @@ == Version 1.1.4 (trunk) Maintenance release. Note: we've removed the metaclass method from Object. There were some generated specs that used it, and they will now break. Just repla...
wmcbrine/tivoremote
bfd2709c67b808a54455c9aa2ef15714c6faa4ba
Set Windows icon from any startup directory; change "OS X" references to "macOS".
diff --git a/Network Remote.pyw b/Network Remote.pyw index e8379d9..dc915a1 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1243 +1,1253 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.32 # Copyright 2008-2020 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
eed9e148b8f2f9dcb515b4c550d0e689ed349e40
Align with current pyzeroconf.
diff --git a/zeroconf.py b/zeroconf.py index f55e5c1..653d7c8 100644 --- a/zeroconf.py +++ b/zeroconf.py @@ -1,1414 +1,1414 @@ """ Multicast DNS Service Discovery for Python, v0.16-wmcbrine Copyright 2003 Paul Scott-Murphy, 2014-2020 William McBrine This module provides a framework for the use of DNS Servi...
wmcbrine/tivoremote
314f97446383e474c3021fcfe764e858cea8bb21
Revert 41529a -- latest Tkinter in Brew works properly in Dark Mode.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 6f2fa66..e8379d9 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1250 +1,1243 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.32 # Copyright 2008-2020 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
2da0b4af2b6b702a0aa1e4c07c70ba5a8c690bfb
Another flag for the App Store.
diff --git a/setup.py b/setup.py index dc76ffe..91b8bdd 100644 --- a/setup.py +++ b/setup.py @@ -1,32 +1,33 @@ """ This is a setup.py script originally generated by py2applet. It is ONLY good for building a Mac OS X applet bundle. Usage: python setup-dmg.py py2app """ from setuptools import setup from ...
wmcbrine/tivoremote
c5385807e2912ad2a925a241943c58d9292c41a1
Finally got it uploaded to the App Store (not accepted yet).
diff --git a/mkpkg b/mkpkg index 7437e6f..33ded07 100755 --- a/mkpkg +++ b/mkpkg @@ -1,8 +1,10 @@ source version.py -rm -rf build dist *.pkg *.dmg -python3 setup-pkg.py py2app +rm -rf __pycache__ build dist *.pkg *.dmg +python3 setup.py py2app cd "dist/Network Remote.app/Contents/Resources/lib/python3.9/lib-dynload" ...
wmcbrine/tivoremote
e5c18420a12f8218a5f87b58f4873ea452a48e4b
setup-dmg.py and setup-pkg.py are the same now.
diff --git a/mkapp b/mkapp index 0e35ee7..cf0ae88 100755 --- a/mkapp +++ b/mkapp @@ -1,13 +1,13 @@ source version.py rm -rf __pycache__ build dist *.dmg *.pkg -python3 setup-dmg.py py2app +python3 setup.py py2app cd "dist/Network Remote.app/Contents/Resources/lib/python3.9/lib-dynload" for f in *.so; do echo $f; co...
wmcbrine/tivoremote
8a6beb7d0905663c767d06794788d43513dafc1d
Abandon semi-standalone for full, in DMG ("mkapp") packages. Note that this eliminates the need for hardened runtime exceptions. (But it raises the package size to ~12 megs.)
diff --git a/entitlements.plist b/entitlements.plist index cbf40af..e2ae37c 100644 --- a/entitlements.plist +++ b/entitlements.plist @@ -1,16 +1,12 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <...
wmcbrine/tivoremote
a7d76eec80a72adeb360952b314470e76e2c8594
Building notarized apps is now working.
diff --git a/entitlements.plist b/entitlements.plist index e2ae37c..cbf40af 100644 --- a/entitlements.plist +++ b/entitlements.plist @@ -1,12 +1,16 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <...
wmcbrine/tivoremote
001617e25d947b79817684351e49b960fe86e846
Whoops, still need these.
diff --git a/mkpkg b/mkpkg index 588dd2d..7437e6f 100755 --- a/mkpkg +++ b/mkpkg @@ -1,8 +1,8 @@ source version.py rm -rf build dist *.pkg *.dmg python3 setup-pkg.py py2app cd "dist/Network Remote.app/Contents/Resources/lib/python3.9/lib-dynload" -for f in *.so; do echo $f; codesign --force -s "Developer ID Applica...
wmcbrine/tivoremote
48b9ee8ab1a815d6eeccd40e0ab7febf4464dc09
Tweaks for py2app
diff --git a/mkapp b/mkapp index 58f9e11..79a3379 100755 --- a/mkapp +++ b/mkapp @@ -1,6 +1,6 @@ source version.py -rm -r build dist *.dmg *.pkg +rm -rf build dist *.dmg *.pkg python3 setup-dmg.py py2app codesign --deep --force -s "Developer ID Application: William McBrine" --entitlements entitlements.plist "dist/Ne...
wmcbrine/tivoremote
cd7705a46406e0b128c4ebdbeedc01fce070b9c8
A few more doc updates.
diff --git a/Network Remote.help/0.html b/Network Remote.help/0.html index 18ec3cb..5ed451b 100644 --- a/Network Remote.help/0.html +++ b/Network Remote.help/0.html @@ -1,31 +1,31 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="htt...
wmcbrine/tivoremote
e823a15e2237200a06dce0101e69bdef51325f47
Some more years
diff --git a/mkpkg b/mkpkg index 449ab25..0dccf84 100755 --- a/mkpkg +++ b/mkpkg @@ -1,8 +1,8 @@ source version.py rm -r build dist *.pkg *.dmg -/usr/local/bin/python setup-pkg.py py2app -cd "dist/Network Remote.app/Contents/Resources/lib/python2.7/lib-dynload" +python3 setup-pkg.py py2app +cd "dist/Network Remote.ap...
wmcbrine/tivoremote
2f82c96ce025af9ea5a70f1543cbb5ea56dbd9aa
Incoming status lines -> native strings
diff --git a/Network Remote.pyw b/Network Remote.pyw index eae7f2a..3e5e522 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -98,1024 +98,1026 @@ else: import thread as _thread tivo_address = '' tivo_port = 31339 tivo_name = '' tivo_ports = {} tivo_swversions = {} landscape = False use_gtk = ...
wmcbrine/tivoremote
41529a4791ceca6802f05e7c13489f84af2096cb
Tkinter in Python 3.9.1 for macOS, from python.org, does a kind of half-support of Dark Mode, where it turns the text white, but doesn't change the background colors (nor allow them to be changed); i.e. it's worse than useless. (And macOS 11.1 breaks Tkinter altogether in all (?) previous versions of Python, including ...
diff --git a/Network Remote.pyw b/Network Remote.pyw index ec240e6..eae7f2a 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1240 +1,1247 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.31 # Copyright 2008-2014 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
884ced82b1d7c984eb0e1b5ac5eceb37a981cf42
Support for Python 3.x. (Still compatible with 2.6+.)
diff --git a/Network Remote.pyw b/Network Remote.pyw index 1c5fad2..ec240e6 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1224 +1,1240 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.31 # Copyright 2008-2014 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
760f03f151df1edf5bf4e106f4ef44ba8fc9d8f3
Just raise the last exception.
diff --git a/zeroconf.py b/zeroconf.py index a0162f0..f6bf8b2 100644 --- a/zeroconf.py +++ b/zeroconf.py @@ -313,1025 +313,1025 @@ class DNSHinfo(DNSRecord): def __eq__(self, other): """Tests equality on cpu and os""" return (isinstance(other, DNSHinfo) and self.cpu == other.cpu ...
wmcbrine/tivoremote
b009ce8c8412686104afbe7ef529e00737b6110e
Some Python 3-compatible changes for zeroconf.
diff --git a/zeroconf.py b/zeroconf.py index 41f0003..a0162f0 100644 --- a/zeroconf.py +++ b/zeroconf.py @@ -1,1552 +1,1553 @@ """ Multicast DNS Service Discovery for Python, v0.14-wmcbrine Copyright 2003 Paul Scott-Murphy, 2014 William McBrine This module provides a framework for the use of DNS Service Di...
wmcbrine/tivoremote
2ace58407b02e0765848388bd617fd309e90fa2b
Short delay between each key press
diff --git a/Network Remote.pyw b/Network Remote.pyw index 1c5fad2..115bc76 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,883 +1,884 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.31 # Copyright 2008-2014 William McBrine # # This program is free software; you can redi...
wmcbrine/tivoremote
73305cae7e6579e96ca3f607012d8da05fa5bd4f
Netflix IR code.
diff --git a/Network Remote.pyw b/Network Remote.pyw index be94bd0..1c5fad2 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,678 +1,680 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.31 # Copyright 2008-2014 William McBrine # # This program is free software; you can redi...
wmcbrine/tivoremote
6886fec18e30505c5c05c5698ad536109546d793
Added "find remote", renamed "Mcr" as "Misc".
diff --git a/Network Remote.pyw b/Network Remote.pyw index b8e67e1..be94bd0 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,678 +1,678 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.31 # Copyright 2008-2014 William McBrine # # This program is free software; you can redi...
wmcbrine/tivoremote
e9b9c319a911f78d61d180a891da91ef200e5099
Maybe 2.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 4ad2da3..b8e67e1 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -133,1025 +133,1025 @@ http://wmcbrine.com/tivo/""" % (__version__, __author__) ASPECT_CODES = ['ASPECT_CORRECTION_ZOOM', 'ASPECT_CORRECTION_PANEL', 'ASPECT_CORRE...
wmcbrine/tivoremote
93ce6d623da39bc283f0f79f32f6fde6ec476fe9
Timeout get_namever() after five seconds -- often, when the TiVo isn't responding to the tivo-remote MDNS, it isn't answering on 2190, either. That meant long waits on manual connections. To Do: Even shorter?
diff --git a/Network Remote.pyw b/Network Remote.pyw index 1b5b1ee..4ad2da3 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -133,1027 +133,1029 @@ http://wmcbrine.com/tivo/""" % (__version__, __author__) ASPECT_CODES = ['ASPECT_CORRECTION_ZOOM', 'ASPECT_CORRECTION_PANEL', 'ASPECT_CORRE...
wmcbrine/tivoremote
41a0bb9387012ba890d2b3878a0d3b4fcbb964f1
Reformatted history for restructured text.
diff --git a/README.rst b/README.rst index 524cf24..1fbe792 100644 --- a/README.rst +++ b/README.rst @@ -1,435 +1,459 @@ Network Remote Control for TiVo Series 3+ ========================================= :Author: William McBrine <wmcbrine@gmail.com> :Version: 0.31 :Date: July 6, 2014 An on-screen ...
wmcbrine/tivoremote
fb5037bedd5cee8c843a6129d8f50219a2b2b26c
And here.
diff --git a/mkzip b/mkzip index 778aa0e..fb1fba4 100755 --- a/mkzip +++ b/mkzip @@ -1,3 +1,3 @@ source version.py rm *.zip -zip -9o network-remote-${VER}.zip README.txt "Network Remote.pyw" zeroconf.py +zip -9o network-remote-${VER}.zip README.rst "Network Remote.pyw" zeroconf.py
wmcbrine/tivoremote
b9b40f70a4d68b48927d4704c8f228ef8f782898
New, Bolt-based icons.
diff --git a/remote.icns b/remote.icns index 6befcde..3ef3f3b 100644 Binary files a/remote.icns and b/remote.icns differ diff --git a/remote.ico b/remote.ico index 5aff780..253c4b6 100644 Binary files a/remote.ico and b/remote.ico differ diff --git a/retina.icns b/retina.icns index 659589f..a95fc8f 100644 Binary files ...
wmcbrine/tivoremote
304fd142e033c7918c3c00b500d51268e57c469f
Since TiVo has started labelling the "D" button as "Skip", I've changed the non-graphical label of the Advance button to "Adv" to avoid confusion. I've also removed the "." from other key labels, since it was used inconsistently.
diff --git a/Network Remote.pyw b/Network Remote.pyw index e6566fa..1b5b1ee 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,711 +1,711 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.31 # Copyright 2008-2014 William McBrine # # This program is free software; you can redi...
wmcbrine/tivoremote
220fffe50c9304aaa2f0995020635527e907d6ce
Support for py2exe.
diff --git a/mkexe.cmd b/mkexe.cmd new file mode 100644 index 0000000..e67b939 --- /dev/null +++ b/mkexe.cmd @@ -0,0 +1,9 @@ +rd /s /q build +rd /s /q dist +\python27-32\python setup-exe.py py2exe +del dist\w9xpopen.exe +rd /s /q dist\tcl\tk8.5\demos +rd /s /q dist\tcl\tk8.5\images +rd /s /q dist\tcl\tcl8.5\http1.0 +rd...
wmcbrine/tivoremote
51a318eda8b016b1807ad183c9220c992b8efecc
Icon for Windows.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 75c6de5..e6566fa 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -294,925 +294,927 @@ SHIFT_SYMS = {'_': 'MINUS', '+': 'EQUALS', '{': 'LBRACKET', '$': 'NUM4', '%': 'NUM5', '^': 'NUM6', '&': 'NUM7', '*': 'NUM8', '(': '...
wmcbrine/tivoremote
e903fb202a1a0012369c68f2dd5cfae659a4503f
Exception for launchservicesd no longer needed? At least on 10.9 and 10.10. (I'm not sure why it was needed in the first place.)
diff --git a/entitlements.plist b/entitlements.plist index a0294ed..e2ae37c 100644 --- a/entitlements.plist +++ b/entitlements.plist @@ -1,16 +1,12 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <...
wmcbrine/tivoremote
dcee1d4e568248bf52abaf115fe149ba92e7f08d
Use the old .icns file for the .dmg (mkapp) build.
diff --git a/remote.icns b/remote.icns new file mode 100644 index 0000000..6befcde Binary files /dev/null and b/remote.icns differ diff --git a/Network Remote.icns b/retina.icns similarity index 100% rename from Network Remote.icns rename to retina.icns diff --git a/setup-dmg.py b/setup-dmg.py index d41ca06..1ffca1e 10...
wmcbrine/tivoremote
bc121aafb233f1be1f51137939e5a4702db48cdf
Allow building the semi-standalone app for the .dmg the old way (almost).
diff --git a/mkapp b/mkapp index 104b786..5ecd49b 100755 --- a/mkapp +++ b/mkapp @@ -1,6 +1,6 @@ source version.py rm -r build dist *.dmg *.pkg -python setup.py py2app -codesign -s "Developer ID Application: William McBrine" --deep --entitlements entitlements.plist "dist/Network Remote.app" +/usr/bin/python setup-dmg...
wmcbrine/tivoremote
08c8ceddaaf3dd152e257e49c4f41f22205f37ed
More App Store nonsense.
diff --git a/mkapp b/mkapp index c8d6cc1..104b786 100755 --- a/mkapp +++ b/mkapp @@ -1,6 +1,6 @@ source version.py rm -r build dist *.dmg *.pkg python setup.py py2app -codesign -s "Developer ID Application: William McBrine" --entitlements entitlements.plist "dist/Network Remote.app" +codesign -s "Developer ID Applic...
wmcbrine/tivoremote
23e010d55ded48e992aa438cdfdb737a8316e000
App Store builder.
diff --git a/mkapp b/mkapp index 3218c77..c8d6cc1 100755 --- a/mkapp +++ b/mkapp @@ -1,6 +1,6 @@ source version.py -rm -r build dist *.dmg +rm -r build dist *.dmg *.pkg python setup.py py2app codesign -s "Developer ID Application: William McBrine" --entitlements entitlements.plist "dist/Network Remote.app" ln -s /A...
wmcbrine/tivoremote
11b8eb5a4f168ba7611796bcd40e60a54a64e523
High-res (@2x) icon required by App Store rules.
diff --git a/Network Remote.icns b/Network Remote.icns index 6befcde..659589f 100644 Binary files a/Network Remote.icns and b/Network Remote.icns differ
wmcbrine/tivoremote
db46808588410c89fce52ada4df4cb2e5583f3af
New icon, reflecting new layout (as well as OS X 10.10). Better with the "-noLarge" option.
diff --git a/Network Remote.icns b/Network Remote.icns index 0362ff9..6befcde 100644 Binary files a/Network Remote.icns and b/Network Remote.icns differ
wmcbrine/tivoremote
c1add389e38b49eaa25a9af7d20f4f5ec6233cd2
Unified make_button(), make_ircode() and make_menubutton().
diff --git a/Network Remote.pyw b/Network Remote.pyw index d976df1..66f65d4 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1216 +1,1218 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.30 # Copyright 2008-2014 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
5e03bb55c2de83d6c7675e9db630078d5e4b6c78
Document new buttons (Mcr. and Vid.); tested only with 2.7.
diff --git a/Network Remote.help/2.html b/Network Remote.help/2.html index 22735c7..0cfbe4c 100644 --- a/Network Remote.help/2.html +++ b/Network Remote.help/2.html @@ -1,63 +1,71 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="htt...
wmcbrine/tivoremote
09d6b499c3b17ebd8b02fcf59c078f60222d4841
Whitespace reduction.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 75c07f9..d976df1 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,700 +1,699 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.30 # Copyright 2008-2014 William McBrine # # This program is free software; you can redi...
wmcbrine/tivoremote
4d89261a27e4f4795dd31b57254b5bedee13557c
Define menubuttons within BUTTONS; irsend() handles lists; add direct video mode switches, Macros menubutton (Clock and SPS30).
diff --git a/Network Remote.pyw b/Network Remote.pyw index 6486eb4..75c07f9 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1204 +1,1217 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.30 # Copyright 2008-2014 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
426be335f2ae9ba30a643bd3ddfbf96dd4c7dd96
Document "Back" shortcut ('b').
diff --git a/Network Remote.help/3.html b/Network Remote.help/3.html index b704208..216c77a 100644 --- a/Network Remote.help/3.html +++ b/Network Remote.help/3.html @@ -1,62 +1,63 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="htt...
wmcbrine/tivoremote
1ba5c686f40b30af76cfc93e5ab6c3e7d54dfd07
Bind shortcut key handler to menu buttons as well.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 95acbc5..6486eb4 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1023 +1,1025 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.30 # Copyright 2008-2014 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
bbb42e567b5744af7af39d241a6c86bfe3d111e6
I suppose, for completeness, I should include the new "Back" button.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 7bd26c1..95acbc5 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,733 +1,733 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.30 # Copyright 2008-2014 William McBrine # # This program is free software; you can redi...
wmcbrine/tivoremote
7e364715c56e1f3921a3805009e1f9c8d3e4c3e9
Bind keyboard shortcuts to all keys in Tkinter, instead of only the focus button. (This makes the Tkinter code much more like the Gtk version.)
diff --git a/Network Remote.pyw b/Network Remote.pyw index b9a1e5f..7bd26c1 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1206 +1,1202 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.30 # Copyright 2008-2014 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
4815a6341bf11896333ca2c182efa8bfeb7bcd47
Version 0.14 of zeroconf.py -- see the pyzeroconf project for details.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 20d5274..b9a1e5f 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -213,994 +213,994 @@ CC_CODES = ['CC_OFF', 'CC_ON'] MENUS = [['Aspt.', ['Zoom', 'Panel', 'Full', 'Stretch'], ASPECT_CODES], ['CC', ['Off', 'On'], CC_CODES]] # Keyboar...
wmcbrine/tivoremote
f7186791129510367aae5d6792d2b97419eb0199
New icon for OS X -- ttk look, Roamio background (also a smaller file).
diff --git a/Network Remote.icns b/Network Remote.icns index b8b3407..0362ff9 100644 Binary files a/Network Remote.icns and b/Network Remote.icns differ
wmcbrine/tivoremote
819ec442e51414ed52ef6350d9ef05fb037abab0
Skip over "Proxy(xx.xx.xx.xx)" originals as well as "Proxy(tivoname)".
diff --git a/Network Remote.pyw b/Network Remote.pyw index 013b107..ab7b81e 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -208,990 +208,999 @@ ASPECT_CODES = ['ASPECT_CORRECTION_ZOOM', 'ASPECT_CORRECTION_PANEL', CC_CODES = ['CC_OFF', 'CC_ON'] # Text, menu item names, and corresponding codes to sen...
wmcbrine/tivoremote
cbd9d7e5a8ee76ff1369bf54cc8149791b4a1ee9
Allow for announcements without swversion.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 4685fc7..013b107 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -236,959 +236,962 @@ KEYS = {'t': 'TIVO', '1': 'NUM1', '2': 'NUM2', '3': 'NUM3', '4': 'NUM4', '5': 'NUM5', '6': 'NUM6', '7': 'NUM7', '8': 'NUM8', '9': 'N...
wmcbrine/tivoremote
2dd19a43cc65a63577750206432b817a1c319d75
For Tivos proxied via rproxy, remove the entry for the original TiVo from the list of TiVos available to connect to (since you can't anyway).
diff --git a/Network Remote.pyw b/Network Remote.pyw index db69aad..4685fc7 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -220,966 +220,975 @@ KEYS = {'t': 'TIVO', 'z': 'WINDOW', 'i': 'INFO', 'l': 'LIVETV', 'g': 'GUIDE', 'Up': 'UP', 'Left': 'LEFT', 'Return': 'SELECT...
wmcbrine/tivoremote
c31f3d9a652eb38c22c0911561b4437413603e67
Comment.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 1b0f518..db69aad 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,818 +1,822 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.29 # Copyright 2008-2014 William McBrine # # This program is free software; you can redi...
wmcbrine/tivoremote
2befbb71aa81a76b66f7f03df3aa681325560f29
Documentation.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 7b996db..1b0f518 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1166 +1,1181 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.29 # Copyright 2008-2014 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
422275fc22312d2c2985c6beb9bc72ff2daec82e
Aspect/CC pop-ups for Gtk 2 (Pygtk).
diff --git a/Network Remote.pyw b/Network Remote.pyw index 1b14bdc..7b996db 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,995 +1,1002 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.29 # Copyright 2008-2014 William McBrine # # This program is free software; you can red...
wmcbrine/tivoremote
e04263984ae41230fdfed91e9359f74bf75f2fa6
Aspect/CC menus for Gtk 3. Doesn't work on 2 yet.
diff --git a/Network Remote.pyw b/Network Remote.pyw index ad304fc..1b14bdc 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,995 +1,1002 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.29 # Copyright 2008-2014 William McBrine # # This program is free software; you can red...
wmcbrine/tivoremote
649891a451747986629a240eacdf2e27fc507feb
Pull-down menus for Aspect and CC buttons; "Aspect" shortened to "Aspt." to fit.
diff --git a/Network Remote.pyw b/Network Remote.pyw index d1b8434..ad304fc 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1133 +1,1152 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.29 # Copyright 2008-2014 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
73bd64ad25f3a4ac66b14a992c74f022458ba6ac
Missed this date.
diff --git a/setup.py b/setup.py index c12350a..f37177b 100644 --- a/setup.py +++ b/setup.py @@ -1,29 +1,29 @@ """ This is a setup.py script originally generated by py2applet. It is ONLY good for building a Mac OS X applet bundle. Usage: python setup.py py2app """ from setuptools import setup from vers...
wmcbrine/tivoremote
194fa830082bd5bf54c28140341571a8f525c0bb
Unified list_tivos() and get_address() -- now the option to enter the address manually is always presented, alongside the list. This allows for cases where the beacons aren't propagating (not rare), and of course, for connectable systems that don't (yet) announce themselves, like my new remote proxy.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 0350bd3..d1b8434 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1135 +1,1133 @@ #!/usr/bin/env python -# Network Remote Control for TiVo Series 3+, v0.28 +# Network Remote Control for TiVo Series 3+, v0.29 # Copyright 2008-2014 William McB...
wmcbrine/tivoremote
0fec131c35dcfe482d52f52ff8735d5a747c2c08
Use the default Python (2.7) instead of 2.6. This is necessary to get the benefits of ttk, although it drops support for OS X 10.6 in the resulting app.
diff --git a/mkapp b/mkapp index ed65498..3218c77 100755 --- a/mkapp +++ b/mkapp @@ -1,6 +1,6 @@ source version.py rm -r build dist *.dmg -python2.6 setup.py py2app +python setup.py py2app codesign -s "Developer ID Application: William McBrine" --entitlements entitlements.plist "dist/Network Remote.app" ln -s /Appl...
wmcbrine/tivoremote
0887b42d8fec4db5408afa37e3194aab480782e0
Document that ports may be specified.
diff --git a/README.txt b/README.txt index b45fc11..a64273b 100644 --- a/README.txt +++ b/README.txt @@ -1,354 +1,354 @@ Network Remote Control for TiVo Series 3+, v0.28 by William McBrine <wmcbrine@gmail.com> January 5, 2014 An on-screen virtual remote control that can control your TiVo over the network. ...
wmcbrine/tivoremote
e5c324e81e51cb52c7d051fcf14c6dcca5dad5f3
Allow ports other than 31339 to be specified, either via Zeroconf, or the command line (colon notation).
diff --git a/Network Remote.pyw b/Network Remote.pyw index 4cf8d78..0350bd3 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1120 +1,1135 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.28 # Copyright 2008-2014 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
d80e10785456638f48496c2ce026436933a7c253
Not just S3/S4.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 060b59c..4cf8d78 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -112,1009 +112,1009 @@ first_size = True screen_width = 0 screen_height = 0 # Other globals: window, label, key_text, key_width (all widgets) # Colors for special buttons ...
wmcbrine/tivoremote
2d666d02891986847f2fce57abc78481d0ec1297
Option to disable ttk; rearranged option list.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 14dbb55..9c00832 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1104 +1,1108 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.27 # Copyright 2008-2013 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
a695b2253a6173c03e106c321f22f9e3687ac773
Redundant destroy()s.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 85f09e6..14dbb55 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -232,882 +232,873 @@ KEYS = {'t': 'TIVO', 'KP_7': 'NUM7', 'KP_8': 'NUM8', 'KP_9': 'NUM9', 'KP_0': 'NUM0', 'KP_Decimal': 'ENTER', 'bracketleft': 'REVERSE'...
wmcbrine/tivoremote
5692a614ae07f5fc31e8aecf04ed123a6256036d
Tighter.
diff --git a/Network Remote.pyw b/Network Remote.pyw index d7b4c1d..85f09e6 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -383,733 +383,731 @@ def kbd_direct(text): """ for ch in text.upper(): if 'A' <= ch <= 'Z': irsend(ch) elif ch in SYMBOLS: irs...
wmcbrine/tivoremote
14329f24c7ad95e16caaa78cbc217faf94c4718f
More like this.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 6731860..d7b4c1d 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -251,865 +251,865 @@ FUNCKEYS = {'q': 'go_away', 'a': 'aspect_change', 'c': 'closed_caption', SYMBOLS = {'-': 'MINUS', '=': 'EQUALS', '[': 'LBRACKET', ']': 'RBRACKET', '...
wmcbrine/tivoremote
acc9b5d6a95c2ebf8595ae184d851c645361415d
Gtk3 screen size fix.
diff --git a/Network Remote.pyw b/Network Remote.pyw index a0bbe2d..6731860 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -177,935 +177,939 @@ BUTTONS = [ {'t': 'B', 'val': ['ACTION_B'], 'width': 3, 's': 'blue'}, {'t': 'C', 'val': ['ACTION_C'], 'width': 3, 's': 'red'}, ...
wmcbrine/tivoremote
82087a51374094e23c3eacee9835eb226daf790f
Automatic landscape mode for Tk.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 63d3ee8..a0bbe2d 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -390,715 +390,722 @@ def kbd_direct(text): def kbd_direct_new(text): """ Send 'text' directly using the KEYBOARD command (Premiere only). Select this mode by setting...
wmcbrine/tivoremote
44a04735eca8af11c1b6877e622d6faa176875f5
If the initial rendering of the window is too tall, and the screen is wider than it is tall, then switch to landscape mode automatically. (Tk only, for the moment.)
diff --git a/Network Remote.pyw b/Network Remote.pyw index 1200083..63d3ee8 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -1,1087 +1,1104 @@ #!/usr/bin/env python # Network Remote Control for TiVo Series 3+, v0.27 # Copyright 2008-2013 William McBrine # # This program is free software; you can re...
wmcbrine/tivoremote
7fdaed393b43678d7d8f2420c79bef9eea4ca20f
In Gtk, the landscape toggle only expanded the window, never contracting it in either dimension.
diff --git a/Network Remote.pyw b/Network Remote.pyw index 08e2459..1200083 100755 --- a/Network Remote.pyw +++ b/Network Remote.pyw @@ -240,847 +240,848 @@ KEYS = {'t': 'TIVO', # Keyboard shortcuts for functions FUNCKEYS = {'q': 'go_away', 'a': 'aspect_change', 'c': 'closed_caption', 'L': 'orient_ch...
wmcbrine/tivoremote
74c698d651b16ca048ee88b000d09b28bcd888dd
Use the new GTK interface if available (with the option to revert).
diff --git a/Network Remote.help/0.html b/Network Remote.help/0.html new file mode 100644 index 0000000..18ec3cb --- /dev/null +++ b/Network Remote.help/0.html @@ -0,0 +1,31 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" +"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> + +<html xmlns="http://www...
wangqy/zbs
99b21feeff48965d1b331171522c7607a36ceb78
通过selenium测试 修正帮助信息框定位不正确的问题
diff --git a/app/views/conversations/index.haml b/app/views/conversations/index.haml index 9cf3bb2..87fecdf 100644 --- a/app/views/conversations/index.haml +++ b/app/views/conversations/index.haml @@ -1,61 +1,61 @@ -#help +#help{:title => '帮助信息'} %b 受理事件时,操作步骤如下: %ol - %li 先...
wangqy/zbs
3fefb1f8da26cfdefd3959ab7407da1694f12840
利用tooltip插件显示帮助信息
diff --git a/app/views/conversations/index.haml b/app/views/conversations/index.haml index 03a11f1..9cf3bb2 100644 --- a/app/views/conversations/index.haml +++ b/app/views/conversations/index.haml @@ -1,37 +1,61 @@ +#help + %b 受理事件时,操作步骤如下: + %ol + %li 先输入联系电话,查询以往...