Skip to content

Commit

Permalink
Contrast-Finder v0.4.3
Browse files Browse the repository at this point in the history
----------------------

  set version to 0.4.3
  typo
  webapp - updated web.xml
  Updated CHANGELOG
  Updated docker/RELEASE/README.md
  DOC - Updated "Other contrast tools"
  see #17 - Revert "Webapp - Used input tag type=color instead off type=text (fixed #2)"
  Docker typo + test README
  Updated .gitignore
  Docker: typo
  Webapp - Updated favicon
  Webapp - Loaded Piwik after the Onload event
  Webapp - Cleaned up loading javascript files
  Webapp - Fixed HTML: bad value "Shortcut Icon" for attribute rel on element link
  Wepapp - Upgraded yuicompressor-maven-plugin
  Webapp - Concatenation of js/css files
  Webapp - Fixed paths to JS files
  Webapp - Renamed JS and CSS files
  i18n - English spelling correction: very closed -> very close
  set version to 0.4.3-dev
  • Loading branch information
dzc34 committed Jan 25, 2017
2 parents 3d2886b + aa1698f commit 4569ddd
Show file tree
Hide file tree
Showing 77 changed files with 404 additions and 98 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

# maven
target
*.log


##### GIT
Expand Down
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@

Contrast-Finder 0.4.3, 2017-01-25
---------------------------------

Features:
- [#18 - Webperf - Aggregate JS and CSS files](https://github.com/Asqatasun/Contrast-Finder/issues/18)

Security:
none

Bugs:
- [#17 - Revert "Webapp - Used input tag type=color instead off type=text"](https://github.com/Asqatasun/Contrast-Finder/issues/17)

Configuration:
none

Documentation:
- added docker/RELEASE/README.md for Docker Hub

Upgrade-o-meter:
just replace the .war file and restart Tomcat



Contrast-Finder 0.4.2, 2017-01-15
---------------------------------

Expand Down
4 changes: 2 additions & 2 deletions contrast-finder-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>org.asqatasun</groupId>
<artifactId>contrast-finder</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
</parent>

<artifactId>contrast-finder-api</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
<packaging>jar</packaging>
<name>contrast-finder-api</name>

Expand Down
4 changes: 2 additions & 2 deletions contrast-finder-hsv/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<parent>
<groupId>org.asqatasun</groupId>
<artifactId>contrast-finder</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
</parent>
<artifactId>contrast-finder-hsv</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
<packaging>jar</packaging>
<name>contrast-finder-hsv</name>
<build>
Expand Down
4 changes: 2 additions & 2 deletions contrast-finder-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<parent>
<groupId>org.asqatasun</groupId>
<artifactId>contrast-finder</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
</parent>
<artifactId>contrast-finder-impl</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
<packaging>jar</packaging>
<name>contrast-finder-impl</name>
<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions contrast-finder-resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<parent>
<groupId>org.asqatasun</groupId>
<artifactId>contrast-finder</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
</parent>
<artifactId>contrast-finder-resources</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
<name>contrast-finder-resources</name>
<url>http://maven.apache.org</url>
<properties>
Expand Down
4 changes: 2 additions & 2 deletions contrast-finder-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<parent>
<groupId>org.asqatasun</groupId>
<artifactId>contrast-finder</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
</parent>
<artifactId>contrast-finder-utils</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
<packaging>jar</packaging>
<name>contrast-finder-utils</name>
<dependencies>
Expand Down
22 changes: 19 additions & 3 deletions contrast-finder-webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<parent>
<groupId>org.asqatasun</groupId>
<artifactId>contrast-finder</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
</parent>
<artifactId>contrast-finder-webapp</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
<packaging>war</packaging>

<name>contrast-finder-webapp</name>
Expand Down Expand Up @@ -154,7 +154,7 @@
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>yuicompressor-maven-plugin</artifactId>
<version>1.3.3</version>
<version>1.5.1</version>
<executions>
<execution>
<goals>
Expand All @@ -168,6 +168,22 @@
<exclude>**/*min.css</exclude>
</excludes>
<failOnWarning>false</failOnWarning>
<aggregations>
<aggregation>
<insertNewLine>true</insertNewLine>
<output>${project.build.directory}/${project.build.finalName}/Js/_contrast-finder.all.min.js</output>
<includes>
<include>**/*min.js</include>
</includes>
</aggregation>
<aggregation>
<insertNewLine>true</insertNewLine>
<output>${project.build.directory}/${project.build.finalName}/Css/_contrast-finder.all.min.css</output>
<includes>
<include>**/*min.css</include>
</includes>
</aggregation>
</aggregations>
</configuration>
</plugin>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ form.contrastSolutionDistance=Distance
form.contrastSolutionDistanceEx=Distance from initial color
form.objectifs=Gimme
form.algoHSV=a <em>range</em> of valid colors
form.algoRGB=valid colors and <em>very closed</em> to initial color
form.algoRGB=valid colors and <em>very close</em> to initial color
form.invalidColor=Invalid color
form.changeComponent=try again changing the
form.invalidAlgo=The algorithm value is not valid.
Expand Down Expand Up @@ -74,4 +74,3 @@ form.ratioShort=Big text (size &ge; 18px, Level AA)
form.ratioHigh=Strenghten contrast (Level AAA)

form.description_v2=Find me the good constrasts, for web accessibility, between these two colors:
form.tryRgb_v2=Gimme valid colors and <em>very close</em> to initial color
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ form.contrastSolutionDistance=Distance
form.contrastSolutionDistanceEx=Distance from initial color
form.objectifs=Gimme
form.algoHSV=a <em>range</em> of valid colors
form.algoRGB=valid colors and <em>very closed</em> to initial color
form.algoRGB=valid colors and <em>very close</em> to initial color
form.invalidColor=Invalid color
form.changeComponent=try again changing the
form.invalidAlgo=The algorithm value is not valid.
Expand Down Expand Up @@ -74,4 +74,3 @@ form.ratioShort=Big text (size &ge; 18px, Level AA)
form.ratioHigh=Strenghten contrast (Level AAA)

form.description_v2=Find me the good constrasts, for web accessibility, between these two colors:
form.tryRgb_v2=Gimme valid colors and <em>very close</em> to initial color
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square70x70logo src="/Images/logo/favicon/mstile-70x70.png?v=E6bNL5M5Mb"/>
<square150x150logo src="/Images/logo/favicon/mstile-150x150.png?v=E6bNL5M5Mb"/>
<square310x310logo src="/Images/logo/favicon/mstile-310x310.png?v=E6bNL5M5Mb"/>
<wide310x150logo src="/Images/logo/favicon/mstile-310x150.png?v=E6bNL5M5Mb"/>
<TileColor>#2d89ef</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"name": "Contrast Finder",
"icons": [
{
"src": "\/Images\/logo\/favicon\/android-chrome-36x36.png?v=E6bNL5M5Mb",
"sizes": "36x36",
"type": "image\/png"
},
{
"src": "\/Images\/logo\/favicon\/android-chrome-48x48.png?v=E6bNL5M5Mb",
"sizes": "48x48",
"type": "image\/png"
},
{
"src": "\/Images\/logo\/favicon\/android-chrome-72x72.png?v=E6bNL5M5Mb",
"sizes": "72x72",
"type": "image\/png"
},
{
"src": "\/Images\/logo\/favicon\/android-chrome-96x96.png?v=E6bNL5M5Mb",
"sizes": "96x96",
"type": "image\/png"
},
{
"src": "\/Images\/logo\/favicon\/android-chrome-144x144.png?v=E6bNL5M5Mb",
"sizes": "144x144",
"type": "image\/png"
},
{
"src": "\/Images\/logo\/favicon\/android-chrome-192x192.png?v=E6bNL5M5Mb",
"sizes": "192x192",
"type": "image\/png"
},
{
"src": "\/Images\/logo\/favicon\/android-chrome-256x256.png?v=E6bNL5M5Mb",
"sizes": "256x256",
"type": "image\/png"
},
{
"src": "\/Images\/logo\/favicon\/android-chrome-384x384.png?v=E6bNL5M5Mb",
"sizes": "384x384",
"type": "image\/png"
},
{
"src": "\/Images\/logo\/favicon\/android-chrome-512x512.png?v=E6bNL5M5Mb",
"sizes": "512x512",
"type": "image\/png"
}
],
"theme_color": "#ffffff",
"start_url": "https:\/\/app.contrast-finder.org\/",
"display": "standalone"
}
Loading

0 comments on commit 4569ddd

Please sign in to comment.