Просмотр исходного кода

Changes in source to set version 1.2

@soyjavi 14 лет назад
Родитель
Сommit
de10fb87c3

+ 14 - 0
CHANGES.md

@@ -1,6 +1,20 @@
 # LungoJS
 # LungoJS
 ### HTML5 Mobile Framework, and stuff.
 ### HTML5 Mobile Framework, and stuff.
 
 
+## Changes in Version 1.2
+- New improved Scroll: Refresh, Append, Prepend...
+- New input element (iOS 5+, Android 2.3+): type="range"
+- New data-attribute: data-progress
+- New <section> transitions: pop & flow
+- ...
+- BUG FIXED:
+    -
+
+## Changes in Version 1.1.2
+- BUG FIXED:
+    - Icon repository supported in Android Honeycomb (3.0+)
+    - Icon repository supported in Android IceCream Sandwich (4.0+)
+
 ## Changes in Version 1.1.1
 ## Changes in Version 1.1.1
 
 
 - BUG FIXED:
 - BUG FIXED:

+ 4 - 4
LICENSE.txt

@@ -1,10 +1,10 @@
-Copyright (c) 2011 TapQuo Inc (Javier Jimenez Villar)
+Copyright (c) 2011-2012 TapQuo Inc (Javier Jimenez Villar)
 
 
 ===============================================================================
 ===============================================================================
 ===============================================================================
 ===============================================================================
 
 
 OPEN SOURCE LICENSE FOR LUNGOJS
 OPEN SOURCE LICENSE FOR LUNGOJS
-Version 1.1
+Version 1.2
 
 
 LungoJS is an avid supporter of open source software. This is the appropriate
 LungoJS is an avid supporter of open source software. This is the appropriate
 option if you are creating an open source application with a license compatible
 option if you are creating an open source application with a license compatible
@@ -31,7 +31,7 @@ THE SOFTWARE IS LICENSED, NOT SOLD.
 ===============================================================================
 ===============================================================================
 
 
 OPEN SOURCE LICENSE FAQ
 OPEN SOURCE LICENSE FAQ
-Version 1.1
+Version 1.2
 
 
 This document is for guidance purposes only and is not a legal document and is
 This document is for guidance purposes only and is not a legal document and is
 not legally binding. We encourage you to read the GPL v3 and the Quick Guide to
 not legally binding. We encourage you to read the GPL v3 and the Quick Guide to
@@ -42,7 +42,7 @@ advice.
 ===============================================================================
 ===============================================================================
 
 
 LUNGOJS AND THE GPL v3
 LUNGOJS AND THE GPL v3
-Version 1.1
+Version 1.2
 
 
 -------------------------------------------------------------------------------
 -------------------------------------------------------------------------------
 What is the GPL v3?
 What is the GPL v3?

+ 4 - 4
release/LICENSE.txt

@@ -1,10 +1,10 @@
-Copyright (c) 2011 TapQuo Inc (Javier Jimenez Villar)
+Copyright (c) 2011-2012 TapQuo Inc (Javier Jimenez Villar)
 
 
 ===============================================================================
 ===============================================================================
 ===============================================================================
 ===============================================================================
 
 
 OPEN SOURCE LICENSE FOR LUNGOJS
 OPEN SOURCE LICENSE FOR LUNGOJS
-Version 1.1
+Version 1.2
 
 
 LungoJS is an avid supporter of open source software. This is the appropriate
 LungoJS is an avid supporter of open source software. This is the appropriate
 option if you are creating an open source application with a license compatible
 option if you are creating an open source application with a license compatible
@@ -31,7 +31,7 @@ THE SOFTWARE IS LICENSED, NOT SOLD.
 ===============================================================================
 ===============================================================================
 
 
 OPEN SOURCE LICENSE FAQ
 OPEN SOURCE LICENSE FAQ
-Version 1.1
+Version 1.2
 
 
 This document is for guidance purposes only and is not a legal document and is
 This document is for guidance purposes only and is not a legal document and is
 not legally binding. We encourage you to read the GPL v3 and the Quick Guide to
 not legally binding. We encourage you to read the GPL v3 and the Quick Guide to
@@ -42,7 +42,7 @@ advice.
 ===============================================================================
 ===============================================================================
 
 
 LUNGOJS AND THE GPL v3
 LUNGOJS AND THE GPL v3
-Version 1.1
+Version 1.2
 
 
 -------------------------------------------------------------------------------
 -------------------------------------------------------------------------------
 What is the GPL v3?
 What is the GPL v3?

+ 0 - 9
spec/Lungo.Core.Spec.js

@@ -1,9 +0,0 @@
-describe('Lungo Core', function() {
-    it('', function() {
-
-    });
-    
-    it('', function() {
-        
-    });
-});

+ 0 - 11
spec/Lungo.Spec.js

@@ -1,11 +0,0 @@
-describe('Lungo', function() {
-
-    it('Lungo namespace exists', function() {
-        expect(LUNGO).toBeDefined();
-    });
-    
-    it('Lungo version exists', function() {
-        expect(LUNGO.VERSION).toBeDefined();
-    });
-
-});            

+ 0 - 57
spec/SpecRunner.html

@@ -1,57 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
-  <meta name="author" content="Guillermo Pascual" />
-  <meta charset="UTF-8" />
-  <title>Lungo Spec Runner</title>
-  
-  <link rel="shortcut icon" type="image/png" href="../vendor/jasmine-1.1.0/jasmine_favicon.png">
-  <link rel="stylesheet" type="text/css" href="../vendor/jasmine-1.1.0/jasmine.css">
-
-  <!-- lib source files here... -->
-    <script type="text/javascript" src="../vendor/jasmine-1.1.0/jasmine.js"></script>
-    <script type="text/javascript" src="../vendor/jasmine-1.1.0/jasmine-html.js"></script>
-  <!-- end lib source files -->
-
-  <!-- Lungo source files here... -->
-    <script type="text/javascript" src="../src/Lungo/Lungo.js"></script>
-    <script type="text/javascript" src="../src/Lungo/Lungo.Core.js"></script>
-  <!-- end Lungo source files -->
-
-  <!-- Lungo spec files here... -->
-    <script type="text/javascript" src="Lungo.Spec.js"></script>
-    <script type="text/javascript" src="Lungo.Core.Spec.js"></script>
-  <!-- Lungo spec files -->
-
-  <script type="text/javascript">
-    (function() {
-        var jasmineEnv = jasmine.getEnv();
-        jasmineEnv.updateInterval = 1000;
-
-        var trivialReporter = new jasmine.TrivialReporter();
-
-        jasmineEnv.addReporter(trivialReporter);
-
-        jasmineEnv.specFilter = function(spec) {
-            return trivialReporter.specFilter(spec);
-        };
-
-        var currentWindowOnload = window.onload;
-
-        window.onload = function() {
-            if (currentWindowOnload) {
-                currentWindowOnload();
-            }
-            execJasmine();
-        };
-
-        function execJasmine() {
-            jasmineEnv.execute();
-        }
-    })();
-  </script>
-</head>
-<body>
-    
-</body>
-</html>

+ 2 - 2
src/Lungo.js

@@ -14,7 +14,7 @@
  *
  *
  * @copyright 2011 TapQuo Inc (c)
  * @copyright 2011 TapQuo Inc (c)
  * @license   http://www.github.com/tapquo/lungo/blob/master/LICENSE.txt
  * @license   http://www.github.com/tapquo/lungo/blob/master/LICENSE.txt
- * @version   1.1
+ * @version   1.2
  * @link      https://github.com/TapQuo/Lungo.js
  * @link      https://github.com/TapQuo/Lungo.js
  *
  *
  * @author   Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author   Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
@@ -23,7 +23,7 @@
 
 
 var LUNGO = LUNGO || {};
 var LUNGO = LUNGO || {};
 
 
-LUNGO.VERSION = '1.1';
+LUNGO.VERSION = '1.2';
 
 
 LUNGO.Attributes || (LUNGO.Attributes = {});
 LUNGO.Attributes || (LUNGO.Attributes = {});
 LUNGO.Data || (LUNGO.Data = {});
 LUNGO.Data || (LUNGO.Data = {});

+ 1 - 1
src/stylesheets/css/Lungo.theme.default.css

@@ -1,4 +1,4 @@
-@import "Lungo.theme.pro.font.css";
+@import "Lungo.theme.default.font.css";
 /** 
 /** 
  * Stylesheet
  * Stylesheet
  * 
  * 

+ 1 - 1
src/stylesheets/less/Lungo.theme.default.less

@@ -8,7 +8,7 @@
  */
  */
 
 
 @import "mixins.less";
 @import "mixins.less";
-@import "Lungo.theme.pro.font.css";
+@import "Lungo.theme.default.font.css";
 
 
 @theme:  #05b8e2;
 @theme:  #05b8e2;
 	@theme-light: #05bde9;
 	@theme-light: #05bde9;

+ 2 - 2
vendor/build.sh

@@ -1,5 +1,5 @@
 #!/bin/bash
 #!/bin/bash
-VERSION="1.2.BETA"
+VERSION="1.2"
 
 
 #define paths
 #define paths
 COMPILER=google-compiler/compiler.jar
 COMPILER=google-compiler/compiler.jar
@@ -115,7 +115,7 @@ FILES_TO_COMPRESS=""
     #done
     #done
 
 
 	DIR=$LUNGO_SOURCES"stylesheets/css/"
 	DIR=$LUNGO_SOURCES"stylesheets/css/"
-	FILES=(default.css)
+	FILES=(default.css default.font.css)
 	echo -e "\033[33m  [DIR]: "$DIR
 	echo -e "\033[33m  [DIR]: "$DIR
 	for file in "${FILES[@]}"
 	for file in "${FILES[@]}"
 	do
 	do