Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
70 commits
Select commit Hold shift + click to select a range
4d6270a
testing
hughsk Sep 14, 2014
1807eac
untest
hughsk Sep 14, 2014
973c810
testing again
hughsk Sep 14, 2014
57d9200
fixed!
hughsk Sep 14, 2014
f4f7840
first pass at boids
hughsk Sep 14, 2014
d7120f0
update all the things!
hughsk Sep 14, 2014
3fbab5d
update packages
hughsk Sep 14, 2014
b8c0b7b
update thumbs for packages
hughsk Sep 14, 2014
b2d5b0a
noise images
hughsk Sep 14, 2014
996e242
more thumbs
hughsk Sep 14, 2014
5be19ec
image fallback, minification
hughsk Sep 15, 2014
5ed69b3
disable mangling, was breaking templates
hughsk Sep 15, 2014
09ed0e5
updates!
hughsk Sep 15, 2014
b6074e0
Fix Chris' Twitter link
hughsk Sep 15, 2014
34c92a4
fix my own twitter link
hughsk Sep 15, 2014
c95c211
google analytics
hughsk Sep 15, 2014
6b131d0
Temporarily limit displays to Chrome
hughsk Sep 15, 2014
c6eace2
update bundle.js
hughsk Sep 15, 2014
24ddcd9
update package list
hughsk Sep 15, 2014
27dcd91
add favicon
hughsk Sep 15, 2014
17c844b
update bundle.js
hughsk Sep 15, 2014
af8100b
test: disable flock
hughsk Sep 15, 2014
0981941
update ndpack-image
hughsk Sep 15, 2014
31d9118
Fix error in Safari
hughsk Sep 15, 2014
960def5
add gl-texture2d-display
hughsk Sep 16, 2014
fb20a47
sync examples/packages from the wiki
hughsk Sep 16, 2014
17772aa
remove markdown files from git
hughsk Sep 16, 2014
c2f49c4
Fix data/sync.js
hughsk Sep 16, 2014
e475eda
Word choice
mikolalysenko Sep 17, 2014
4eeb845
update
hughsk Oct 3, 2014
fba0605
Merge branch 'master' of github.com:stackgl/stackgl.github.io
hughsk Oct 3, 2014
2c149ed
update bundle.js
hughsk Nov 1, 2014
86178fe
update bundle
hughsk Nov 1, 2014
0ac3e6f
fix #2 :)
hughsk Jan 5, 2015
ec01a4f
Add tracker for http://webglstats.com/
hughsk Jan 16, 2015
474b79c
remove packages display
hughsk Jan 17, 2015
dd852e9
move GA into index
hughsk Jan 17, 2015
9a963a9
only load background image if required
hughsk Jan 17, 2015
3f22151
Default to 100% viewport height for [data-fill] elements
hughsk Jan 17, 2015
6552e5d
update getting started links
hughsk Jan 17, 2015
f047178
add disc for file size checking
hughsk Jan 17, 2015
d1a2369
more junk trimming
hughsk Jan 17, 2015
b7dd0b0
remove splash-flock, update package.json
hughsk Jan 17, 2015
7207de0
Shuffle things around a bit
hughsk Jan 17, 2015
9411c7b
Change up the design of the site
hughsk Jan 17, 2015
6322a6a
update bundle
hughsk Jan 17, 2015
94e74f2
Fix invalid link.
olivierrr Jan 19, 2015
4cd0670
Merge pull request #4 from olivierrr/master
hughsk Jan 19, 2015
0071248
Fix broken contributing link
deathcap Feb 14, 2015
e484aa4
Merge pull request #5 from deathcap/patch-1
hughsk Feb 14, 2015
dbaaecc
remove min-height on intro section
hughsk Mar 11, 2015
8ed32ed
update contributors, copy changes
hughsk Mar 11, 2015
9cb1a86
Merge branch 'master' of github.com:stackgl/stackgl.github.io
hughsk Mar 11, 2015
be0bc6e
Add more shader learning resources
hughsk Apr 4, 2015
bf537b3
Updating!
hughsk Apr 4, 2015
001f801
Fix splash-grid demo
hughsk Nov 28, 2015
e33e803
update
hughsk Nov 28, 2015
612cfed
ellipses
hughsk Nov 28, 2015
716664b
more resources
hughsk Nov 28, 2015
248a84c
update
hughsk Nov 28, 2015
63098c7
Update for full list of contributors :heart:
hughsk Jan 3, 2016
c435663
update bundle.min.js
hughsk Jan 3, 2016
92535d1
Update with new contributor list
hughsk Jan 4, 2016
e073df0
Delete CNAME
dy Aug 27, 2018
39a8066
Restore CNAME
rreusser Nov 23, 2018
716aafb
Merge pull request #14 from stackgl/restore-cname
hughsk Nov 29, 2018
7ac444f
bump
hughsk Nov 30, 2018
4af2fb6
lock down dependencies
kevzettler Apr 13, 2020
f205b8c
latest build?
kevzettler Apr 13, 2020
2ab0b0e
Merge pull request #16 from stackgl/latest_build
kevzettler Apr 13, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
node_modules
build/*.json
!build/contributors.json
data/*.md
npm-debug.log
40 changes: 40 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
PATH := $(PWD)/node_modules/.bin:$(PATH)

.PHONY: bundle clean relink disc

bundle: build/bundle.min.js build/splash.min.js

clean:
rm -rf build/*.js build/*.json data/*.md

disc:
browserify src/index.js src/splash.js --full-paths | uglifyjs -c | discify --open

start: relink build/examples.json build/contributors.json
wzrd src/index.js:build/bundle.min.js \
src/splash.js:build/splash.min.js

relink:
district stackgl splash-grid

postinstall: relink
scoped-bulk stackgl npm install
npm dedupe

build/:
mkdir build

build/bundle.min.js: build/ build/examples.json build/contributors.json
browserify src/index.js | uglifyjs -c > build/bundle.min.js

build/splash.min.js: build/ build/examples.json
browserify src/splash.js | uglifyjs -c > build/splash.min.js

build/examples.json: build/ data/examples.md
node data/regenerate

build/contributors.json: build/
node data/contributors

data/examples.md: build/
node data/sync
Binary file added bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions build/bundle.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build/contributors.json

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions build/splash.min.js

Large diffs are not rendered by default.

Loading