- Nr 2211 by ofTheo : Bugfix glfw fullscreen fix
- Nr 2200 by julapy : ios external display mirror mode is now default
- Nr 2198 by ofTheo : bugfix GLFW delete/backspace/return keys were not coming in. also ctrl-click alt-click were not coming in as left right click. closes #2197
- Nr 2193 by tgfrerer : Fix rpi compilation issues
- Nr 2192 by ofTheo : Bugfix glfw fixes - work in progress.
- Nr 2188 by tgfrerer : rename programmable GL shader attributes
- Nr 2187 by admsyn : AVFoundation API for iOS Audio Sessions
- [Nr 2182](https
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> | |
<storageModule moduleId="org.eclipse.cdt.core.settings"> | |
<cconfiguration id="cdt.managedbuild.toolchain.gnu.base.105645087"> | |
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.toolchain.gnu.base.105645087" moduleId="org.eclipse.cdt.core.settings" name="Default"> | |
<externalSettings/> | |
<extensions> | |
<extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> | |
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> | |
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
A set of small helper functions for interacting with Github repositories | |
(primarily openFrameworks) via PyGithub. | |
""" | |
import webbrowser, os, inspect | |
from github import Github | |
def get_repo(user='openframeworks', repo='openFrameworks', | |
token='Github_token.txt', timeout=20): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import sys | |
with open(sys.argv[1],'r') as input_file: | |
print input_file.read() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
< this uses https://github.com/bilderbuchi/ofStateManager/tree/5a61f2159fe6d4da6b3a60521e9e62c82b634cae | |
clone the repo and try it out> | |
ofStateManager$ cd tests/ | |
ofStateManager/tests$ ./run_coverage.py | |
============================= test session starts ============================== | |
platform linux2 -- Python 2.7.4 -- pytest-2.3.5 | |
plugins: cov | |
collected 34 items | |
test_archive.py ..... |
- Nr 2879 by jedahan : fix tr1/memory compile issue on OS X 10.9 for makefiles
- Nr 2878 by jvcleave : re-enabling the uniqueShader for the RPi due to large texture performanc...
- Nr 2877 by NickHardeman : Fix for mesh resolution parameters.
- Nr 2876 by NickHardeman : Fix for the drawing of ofDrawArrow
- Nr 2870 by sphaero : debian/install_dependencies.sh: fixed -n option not being respected in apt-cache show
- Nr 2868 by danoli3 : Fixes #2832 iOSVideoGrabber
- Nr 2865 by bakercp : SFCI Doc-Sprint PR.
- [Nr 2852]( https://github.c
openFrameworks is a C++ toolkit for creative coding. If you are new to OF, welcome!
This release of OF comes with several folders:
- Nr 3038 by danthemellowman: Fixing Assimp Example errors
- Nr 3035 by danoli3 : Android Windows missing zip fix
- Nr 3032 by admsyn : Add missing "case" for left alt key release in events example
- Nr 3031 by admsyn : Use non-deprecated startThread() in ofOpenALSoundPlayer
- Nr 3021 by superlukas : Fixed typo
- Nr 3015 by arturoc : fix glfw keys on non english keyboards
- Nr 3011 by ofTheo : blob support for ofxOsc.
- Nr 3010 by ofTheo : Bugfix with ofxKi
Fetching tags... Selected tag 0.8.4, date: 2014-09-09 09:01:02 Fetching data...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from github import Github # uses https://github.com/PyGithub/PyGithub | |
mytoken = '' # insert your GH API token here | |
g = Github(login_or_token=mytoken) | |
repo = g.get_repo('pytest-dev/pytest') | |
candidates = {} | |
for m in (pr for pr in repo.get_pulls(state='closed') if pr.merged==True): | |
pr_number = m.number | |
print('Checking PR {}'.format(pr_number)) | |
issuenr = None | |
files = m.get_files() |