<feed xmlns='http://www.w3.org/2005/Atom'>
<title>netflix-immersive/Makefile, branch master</title>
<subtitle>A user script that makes Netflix viewing more immersive, playing credits in full screen</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/netflix-immersive/'/>
<entry>
<title>Makefile: Always remove license headers from all JS files</title>
<updated>2020-05-08T21:56:10+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-05-08T21:56:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/netflix-immersive/commit/?id=173feca616980f4f8e9b38a0dee4c4d0fd30e3e6'/>
<id>173feca616980f4f8e9b38a0dee4c4d0fd30e3e6</id>
<content type='text'>
It turns out that the way I formulated it before, it wouldn't always
strip the license headers from all files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It turns out that the way I formulated it before, it wouldn't always
strip the license headers from all files.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add license (GNU GPLv3+)</title>
<updated>2020-05-08T20:36:40+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-05-08T20:36:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/netflix-immersive/commit/?id=998a674d6ddedf1e0f9f5f51843e0b4d72198975'/>
<id>998a674d6ddedf1e0f9f5f51843e0b4d72198975</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename project to "Immersive"</title>
<updated>2020-05-08T17:14:26+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-05-08T17:14:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/netflix-immersive/commit/?id=809f5d1cf6d312f38ffa34083f4c67e3ef02192a'/>
<id>809f5d1cf6d312f38ffa34083f4c67e3ef02192a</id>
<content type='text'>
Sounds better than "No Skip", and also reflects the fact that we want to
remove anything that hinders immersion while watching a video, not just
skipped credits.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Sounds better than "No Skip", and also reflects the fact that we want to
remove anything that hinders immersion while watching a video, not just
skipped credits.
</pre>
</div>
</content>
</entry>
<entry>
<title>Makefile: Only build `index.js` with Browserify</title>
<updated>2020-05-08T16:52:58+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-05-08T16:52:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/netflix-immersive/commit/?id=ade3c99305acb7798d727ad750bbc3b89118134f'/>
<id>ade3c99305acb7798d727ad750bbc3b89118134f</id>
<content type='text'>
Previously this rule was passing all inputs to Browserify. We only need
to pass `index.js`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously this rule was passing all inputs to Browserify. We only need
to pass `index.js`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Makefile: Move the compiled user script to the project root</title>
<updated>2020-05-08T16:44:50+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-05-08T16:44:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/netflix-immersive/commit/?id=3e9112713823c7fd59d54b33f1db2f898e897c31'/>
<id>3e9112713823c7fd59d54b33f1db2f898e897c31</id>
<content type='text'>
Makes it easier to find for distribution and removes a circular Make
dependency (which gets ignored).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Makes it easier to find for distribution and removes a circular Make
dependency (which gets ignored).
</pre>
</div>
</content>
</entry>
<entry>
<title>Makefile: Fix rebuild of non-index.js files</title>
<updated>2020-05-05T23:58:49+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-05-05T23:58:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/netflix-immersive/commit/?id=175cd65ca3fa906ab3d9b663ae932b7d01f071a5'/>
<id>175cd65ca3fa906ab3d9b663ae932b7d01f071a5</id>
<content type='text'>
Previously, if I modified any TypeScript file other than `index.ts`,
Make wouldn't rebuild. Depend on all JS files in build/ to ensure the
output script gets rebuilt on changes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, if I modified any TypeScript file other than `index.ts`,
Make wouldn't rebuild. Depend on all JS files in build/ to ensure the
output script gets rebuilt on changes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert from a web extension to a user script</title>
<updated>2020-05-05T23:00:59+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-05-05T22:57:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/netflix-immersive/commit/?id=50859155dff9a85645dbfddf166ed888756be107'/>
<id>50859155dff9a85645dbfddf166ed888756be107</id>
<content type='text'>
Since it looks like everything's going to happen in the content script,
might as well make this a user script instead.

Build with Browserify in order to get a compiled JS file compatible with
browsers.

For some reason I'm currently getting an error complaining that the
`stylesheet` variable is `null`. Need to look into that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since it looks like everything's going to happen in the content script,
might as well make this a user script instead.

Build with Browserify in order to get a compiled JS file compatible with
browsers.

For some reason I'm currently getting an error complaining that the
`stylesheet` variable is `null`. Need to look into that.
</pre>
</div>
</content>
</entry>
</feed>
