Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
Merge commit 'c8290bbcf8320dc795f41f99933e05f4de16ef2b'
Browse files Browse the repository at this point in the history
# Conflicts:
#	package-lock.json
#	package.json
  • Loading branch information
MartijnR committed Jul 19, 2018
2 parents 84527b9 + c8290bb commit 708773d
Show file tree
Hide file tree
Showing 16 changed files with 1,862 additions and 1,606 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: node_js
sudo: true
node_js:
- "6"
- "8"
dist: trusty
before_install: if [[ `npm -v` < 3 ]]; then npm i -g npm@latest; fi
Expand Down
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,20 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

[Unreleased]
[1.69.0] - 2018-07-19
---------------------
##### Removed
- NodeJS 6 support.

##### Added
- Support for 'no-ticks' appearance in range widget.

##### Fixed
- Range widget in FF, the ticks partially disappear when the widget has a value.
- Randomize() doesn't work for itemsets that use itext() labels (in enketo-transformer).
- An architectural issue with modal dialogs.

[1.68.0] - 2018-07-11
---------------------
##### Added
- api/v2/version endpoint to obtain current Enketo Express version.
Expand All @@ -13,6 +26,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).

##### Fixed
- The form width in IE11 is sometimes too small.
- Exceptions thrown with complex jr:choice-name() usage.
- Various Geo Widget styling issues with buttons, mobile (fullscreen) and RTL scripts.

[1.67.1] - 2018-06-27
---------------------
Expand Down
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ module.exports = grunt => {
},
sass: {
options: {
implementation: nodeSass,
functions: {
'base64-url($mimeType, $data)': function( mimeType, data ) {
const base64 = new Buffer( data.getValue() ).toString( 'base64' );
Expand Down Expand Up @@ -161,7 +162,7 @@ module.exports = grunt => {
},
},
options: {
// ensure that enketo-config and widgets are overridden in **enketo-core**
// ensure that several placeholder modules in **enketo-core** are overridden
transform: [
[ 'aliasify', {
aliases: pkg.aliasify.aliases,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This is a fork of [enketo/enketo-express](https://github.com/enketo/enketo-expre

#### Manually:

1. Install JS prerequisites: [Node.js](https://github.com/nodesource/distributions) (8.x LTS recommended, and at least 6.x), [Grunt Client](http://gruntjs.com), and [Node-Gyp](https://github.com/TooTallNate/node-gyp)
1. Install JS prerequisites: [Node.js](https://github.com/nodesource/distributions) (8.x LTS recommended), [Grunt Client](http://gruntjs.com), and [Node-Gyp](https://github.com/TooTallNate/node-gyp)
2. Install [Redis](http://redis.io/topics/quickstart)
3. Install build-essential and git (and libfontconfig to run tests) with `(sudo) apt-get install build-essential git libfontconfig`
4. Clone this repository
Expand Down
8 changes: 6 additions & 2 deletions app/views/styles/component/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $button-sml: 10px !default;
$button-med: 16px !default;

// We use this to control the display property.
$button-display: inline-block !default;
$button-display: flex !default;
$button-margin-bottom: 16px !default;

// We use these to control button text styles.
Expand Down Expand Up @@ -78,6 +78,8 @@ $button-disabled-cursor: $cursor-default-value !default;
text-align: $button-font-align;
-webkit-appearance: none;
-webkit-border-radius: 0;
align-items: center;
justify-content: center;
}

@if $display {
Expand Down Expand Up @@ -229,6 +231,7 @@ button::-moz-focus-inner {
color: $text-color;
background: none;
border: none;
font-size: 20px;

@include box-shadow-none;

Expand Down Expand Up @@ -289,7 +292,8 @@ button::-moz-focus-inner {
}

.add-repeat-btn,
.repeat-buttons .remove {
.repeat-buttons .remove,
.geopicker [name="geodetect"] {
.icon {
margin-right: 0;
}
Expand Down
1 change: 1 addition & 0 deletions locales/es/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@
"pl": "Polaco",
"pt": "Portugués",
"ro": "Rumano",
"ru": "Ruso",
"sk": "Eslovaco",
"supported": "Idiomas soportados:",
"sv": "Sueco",
Expand Down
1 change: 1 addition & 0 deletions locales/nl/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@
"pl": "Pools",
"pt": "Portugees",
"ro": "Roemeens",
"ru": "Russisch",
"sk": "Slowaaks",
"supported": "Talen ondersteund:",
"sv": "Zweeds",
Expand Down
1 change: 1 addition & 0 deletions locales/ru/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@
"pl": "Польский",
"pt": "Португальский",
"ro": "Румынский",
"ru": "Русский",
"sk": "Словацкий ",
"supported": "Поддерживаемые языки:",
"sv": "Шведский",
Expand Down
Loading

0 comments on commit 708773d

Please sign in to comment.