Skip to content

Commit 2d42e8f

Browse files
committed
ver 1.2.1
see the CHANGES File for what's new
0 parents  commit 2d42e8f

File tree

8,577 files changed

+584006
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

8,577 files changed

+584006
-0
lines changed

.htaccess

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
2+
3+
## EXPIRES CACHING ##
4+
<IfModule expires_module>
5+
ExpiresActive On
6+
ExpiresByType image/jpg "access 1 month"
7+
ExpiresByType image/png "access 1 month"
8+
ExpiresByType image/gif "access 1 month"
9+
ExpiresByType text/css "access 1 month"
10+
ExpiresByType text/html "access 1 month"
11+
ExpiresByType text/htm "access 1 month"
12+
ExpiresByType application/pdf "access 1 month"
13+
ExpiresByType image/svg+xml "access 1 month"
14+
ExpiresByType text/x-javascript "access 1 month"
15+
ExpiresByType application/javascript "access 1 month"
16+
ExpiresByType application/x-shockwave-flash "access 1 month"
17+
ExpiresByType application/vnd.ms-fontobject "access 1 month"
18+
ExpiresByType application/x-font-otf "access 1 month"
19+
ExpiresByType application/x-font-ttf "access 1 month"
20+
ExpiresByType application/x-font-woff "access 1 month"
21+
ExpiresByType application/x-javascript "access 1 month"
22+
ExpiresByType application/xhtml+xml "access 1 month"
23+
ExpiresByType font/opentype "access 1 month"
24+
ExpiresByType font/otf "access 1 month"
25+
ExpiresByType font/ttf "access 1 month"
26+
ExpiresByType font/woff "access 1 month"
27+
ExpiresByType image/x-icon "access 1 month"
28+
ExpiresDefault "access 1 month"
29+
30+
31+
</IfModule>
32+
## EXPIRES CACHING ##
33+
34+
#DEFLATE #
35+
36+
<IfModule deflate_module>
37+
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript
38+
AddOutputFilterByType DEFLATE text/x-javascript image/svg+xml rss+xml
39+
</IfModule>
40+
41+
#Disable listing
42+
Options All -Indexes
43+
IndexIgnore *

CHANGES

+145
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
---Changes history with TigerJS 1.2.1 [10/01/2016]
2+
NEW_MODULE/OBJECT: Added TigerJS.xui The base for da futuristic HUD UI elements
3+
NEW_MODULE/OBJECT: Added xuiText in TigerJS.xui
4+
NEW_MODULE/OBJECT: Added xuiText2 in TigerJS.xui
5+
NEW_MODULE/OBJECT: Added xcontainer in TigerJS.xui
6+
NEW_MODULE/OBJECT: Added xcontainer2 in TigerJS.xui
7+
NEW_MODULE/OBJECT: Added xcontainer3 in TigerJS.xui
8+
NEW_MODULE/OBJECT: Added xcontainer4 in TigerJS.xui
9+
10+
*) MODULE: TigerJS.Iterator added new methods
11+
#timed_iterator
12+
*) MODULE: String.prototype added new methods to the native string
13+
#drizzle
14+
*) Performance tweaks and Bug/Security Fixes
15+
16+
17+
---Changes history with TigerJS 1.2 [10/01/2016]
18+
#Yaay Its independence day today in Nigeria :)
19+
#But we still don't have 24hrs power supply :(
20+
#..anyway
21+
22+
#Removed the dependency on the iconmoon font file(s), and added a whole bunch of SVG
23+
#icons (mostly from the icon moon project), and a documentation
24+
#on how to use them i.e how to dynamically insert them
25+
26+
*) Bug Fixes as always
27+
28+
---Changes history with TigerJS 1.1a [09/15/2016]
29+
*) MODULE: TigerJS.$ added new methods
30+
#isChild
31+
#isChildOf
32+
*) Numerous Bug-fixes and improvements
33+
34+
35+
---Changes history with TigerJS 1.01 [09/06/2016]
36+
*) Refactored FileUploadWidget MODULE, increased total upload limit to 300MB per upload session, and also increased parallel
37+
file chunk fragments to speed up the uploads
38+
*) Fixed several Logical errors in TextInputWidget MODULE
39+
*) Other misc. Bug-fixes and improvements
40+
41+
42+
---Changes history with TigerJS 1.0 [04/16/2016] (Finallly, out of Beta)
43+
44+
45+
---Changes history with TigerJS 1.1.6 Beta [04/16/2016]
46+
*) Performance tweaks and Bug/Security Fixes
47+
*) Added strictMatch flag to T.nodes
48+
49+
---Changes history with TigerJS 1.1.5 Beta [04/04/2016]
50+
*) Performance tweaks and Bug/Security Fixes
51+
52+
---Changes history with TigerJS 1.1.3 Beta [01/05/2016]
53+
54+
*) NEW_MODULE/OBJECT: Added SelectWidget in TigerJS.UI.Widget
55+
*) NEW_MODULE/OBJECT: Added RangeWidget in TigerJS.UI.Widget
56+
*) NEW_MODULE/OBJECT: Added NotifyWidget in TigerJS.UI.Widget
57+
*) NEW_MODULE/OBJECT: Added FileUploadWidget in TigerJS.UI.Widget
58+
*) Bug fixes and Performance improvements
59+
60+
61+
---Changes history with TigerJS 1.1.1 Beta [11/13/2015]
62+
63+
*) TigerJS.$#on now accepts multiple space separated events, in its 'on' parameter
64+
*) TigerJS.UI.Widget.CalendarWidget fixed a bug with the disabled date parameter getting overwritten in the object
65+
and thus gets corrupted
66+
67+
*) Bug fixes and Performance improvements
68+
69+
70+
71+
---Changes history with TigerJS 1.1 Beta [11/05/2015]
72+
73+
*) Lots of Bug fixes and Performance improvements
74+
75+
76+
--------------------------------------------------------------------------------
77+
---Changes history with TigerJS 1.0 Beta [10/31/2015]
78+
79+
*) First public (beta) version of library released (wow after over a year of coding!!)
80+
81+
*) NEW_MODULE/OBJECT: TigerJS, This is the main name-space of the library,
82+
it also contains essential utility functions, but
83+
you'll normally just want to use the shorthand T
84+
85+
86+
*) NEW_MODULE/OBJECT: TigerJS.Iterator, A highly optimized array-like generic
87+
iterator object for working with lists of any kind of data, contains
88+
a very large number of methods and can be adapted to
89+
function like different data-structures, including
90+
stacks, queues, deques e.t.c
91+
92+
*) NEW_MODULE/OBJECT: TigerJS.$, The DOM Castle of the Library
93+
*) NEW_MODULE/OBJECT: TigerJS.nodes, DOM Operations on node Lists
94+
*) NEW_MODULE/OBJECT: TigerJS.Map, A Cool Key/Value pair based Object
95+
*) NEW_MODULE/OBJECT: TigerJS.Parser uhm..., parses stuff: URL's Email's and stuff
96+
*) NEW_MODULE/OBJECT: TigerJS.ua, Info on your Browser
97+
*) NEW_MODULE/OBJECT: TigerJS.Conn
98+
*) NEW_MODULE/OBJECT: TigerJS.io , Advanced XMLHttpRequest based I/O Operations
99+
*) NEW_MODULE/OBJECT: TigerJS.io.CompositeRequest, Advanced XMLHttpRequest based I/O Operations, that permits multiple requests
100+
on a single connection
101+
*) NEW_MODULE/OBJECT: TigerJS.io.SerialRequest, Advanced Serial XMLHttpRequest based I/O Operations
102+
*) NEW_MODULE/OBJECT: TigerJS.Crypto, Cryptographic Functions
103+
*) NEW_MODULE/OBJECT: TigerJS.Hash, Hashing Functions
104+
*) NEW_MODULE/OBJECT: TigerJS.UI.FX, CSS/DHTML Effects Module, and currently includes
105+
TigerJS.UI.FX.Animation and TigerJS.UI.FX.Draggable
106+
107+
*) NEW_MODULE/OBJECT: TigerJS.UI.Widget, Widgets Framework Base
108+
Which includes...
109+
InputFeild-Widgets, Overlay-Widgets, Tooltip-Widgets, Calendar-Widgets.
110+
See the doc's on how to initialize and use them
111+
112+
*) NEW_MODULE/OBJECT: TigerJS.UI.Color, Color Manipulation Functions
113+
*) NEW_MODULE/OBJECT: String.prototype, The following methods were added
114+
to the native string object
115+
-sprintf
116+
-count_ch
117+
-delete_ch
118+
-find_first_not_of
119+
-find_first_of
120+
-find_last_not_of
121+
-find_last_of
122+
-html_chars
123+
-explode
124+
-implode
125+
-insert_n
126+
-quotemeta
127+
-rotX
128+
-string_pad
129+
-string_repeat
130+
-string_replace
131+
-strpos
132+
-strrpos
133+
-stripos
134+
-strripos
135+
-strstr
136+
-stristr
137+
-substr_count
138+
-escQuote
139+
-unEscQuote
140+
-trim
141+
-toCase
142+
143+
144+
145+

CONTRIBUTORS

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
TigerJS JavaScript Library Dev team:
3+
4+
Agbalaya Olubodun (Core, Maintainer)
5+
6+
7+
...
8+
...

0 commit comments

Comments
 (0)