├── .gitignore ├── LibraryBox 1.5 └── wireless ├── READ.ME.htm ├── README ├── alter_SSID.py ├── chat.sh ├── droopy ├── hosts ├── iOS7_patch.sh ├── images ├── Librarybox.psd ├── librarybox-logo.png └── librarybox-logo_large.png ├── index.html ├── ios7_patch.zip ├── librarybox.sh ├── librarybox.zip ├── librarybox_container.obj ├── librarybox_container.stl ├── network ├── nochat.sh ├── piratebox-logo-small.png ├── piratebox-logo.png ├── piratebox.conf ├── piratebox.nochat.conf └── wireless /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled source # 2 | ################### 3 | *.com 4 | *.class 5 | *.dll 6 | *.exe 7 | *.o 8 | *.so 9 | 10 | # Packages # 11 | ############ 12 | # it's better to unpack these files and commit the raw source 13 | # git has its own built in compression methods 14 | *.7z 15 | *.dmg 16 | *.gz 17 | *.iso 18 | *.jar 19 | *.rar 20 | *.tar 21 | 22 | # Logs and databases # 23 | ###################### 24 | *.log 25 | *.sql 26 | *.sqlite 27 | 28 | # OS generated files # 29 | ###################### 30 | .DS_Store* 31 | assets/.DS_Store* 32 | ehthumbs.db 33 | Icon? 34 | Thumbs.db -------------------------------------------------------------------------------- /LibraryBox 1.5/wireless: -------------------------------------------------------------------------------- 1 | 2 | config wifi-device 'radio0' 3 | option type 'mac80211' 4 | option channel '11' 5 | option macaddr 'f8:d1:11:9e:87:fc' 6 | option hwmode '11ng' 7 | option htmode 'HT20' 8 | list ht_capab 'SHORT-GI-20' 9 | list ht_capab 'SHORT-GI-40' 10 | list ht_capab 'RX-STBC1' 11 | list ht_capab 'DSSS_CCK-40' 12 | option disabled '0' 13 | 14 | config wifi-iface 15 | option device 'radio0' 16 | option network 'lan' 17 | option mode 'ap' 18 | option encryption 'none' 19 | option ssid 'LibraryBox - Free Content!' 20 | 21 | -------------------------------------------------------------------------------- /READ.ME.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
19 |
20 |
21 |
22 |
23 | 24 |
LibraryBox is a self-contained 802.11 wifi file server that is built with open source code and commodity hardware. The reference hardware that it runs on (the TP-Link MR3020) is USB powered, which means that you can have a digital library distribution tool (books, video, audio...anything, really) running off a battery, and the entire package can fit in a pocket. 28 |LibraryBox was created by Jason Griffey (http://www.jasongriffey.net) and the code behind it is free and open source software. More about the LibraryBox project can be found at http://librarybox.us 29 |30 | LibraryBox is a fork of the PirateBox project, which was created by David Darts and is registered under a Free Art License (2011). To learn more about the PirateBox project, please visit http://wiki.daviddarts.com/piratebox 31 | |
32 |
38 |
43 | 44 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | 2 | THIS IS A DEPRECATED VERSION OF THE PROJECT 3 | 4 | All current development can be found at: 5 | 6 | https://github.com/LibraryBox-Dev 7 | 8 | 9 | This code is only here for historical reasons, do not use for current development. 10 | 11 | 12 | ########################################################################### 13 | # 14 | # LibraryBox v1.5.1 15 | # based on mkPirateBox v0.3-2 16 | # 17 | # Customization files that alter the UI of PirateBox to create a LibraryBox 18 | # 19 | # LibraryBox customizations conceived and created by Jason Griffey
1. Learn more about the project here.
2. Click above to begin sharing.
3. Browse and download files here." 100 | TEXT="1. Learn more about the project here.
1. Learn more about the project here.
2. Click above to begin sharing.
3. Browse and download files here." 100 | TEXT="1. Learn more about the project here.