Skip to content

Commit d4a9f49

Browse files
authored
to master (#12)
* Fix/chrome issues (#9) * add ESLint to gulp and fix some eslint errors; * fix chrome issues; * bump version; * add missing dutch translation and fix englisch tranlation issues; * bump version; * fix issue with placeholder; (#11)
1 parent 0e1c099 commit d4a9f49

File tree

9 files changed

+20
-15
lines changed

9 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change log
22

3+
## Version 0.5.2
4+
5+
Improvements
6+
- The placeholder text is now more transparent
7+
8+
Bug fix
9+
- fix icons that are not loading
10+
311
## Version 0.5.1
412

513
Bug fix
@@ -13,22 +21,21 @@ Bug fix
1321
This release has several bug fixes.
1422

1523
Improvements
16-
- get the urls from the background scirpt instead of a predefined var;
17-
- Remove scroll-to npm module;
24+
- get the urls from the background script instead of a predefined var;
25+
- Remove scroll-to NPM module;
1826

1927
Bug fix
2028
Fix amount of bugs:
21-
- fix glitch on rezising page;
29+
- fix glitch on resizing page;
2230
- Create selection on click, that can be resized after click;
2331
- fix return key that will submit the whole page in set up;
2432
- position the commentbox on top when selecting a bug on the bottom of the website;
2533
- Fix the ESlint errors;
2634

27-
2835
## Version 0.4
2936

3037
Improvements:
31-
- Add abilaty to submit ticket to Mantis
38+
- Add ability to submit ticket to Mantis
3239
- Take a screenshot of the screen and submit it to Mantis
3340

3441
Bug fixes:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![Layernotes](./readme/banner.png)
22

3-
v0.5.1 (beta)
3+
v0.5.2 (beta)
44

55
# Layer Notes
66
Layer Notes is a tool that you can use to easily create Tickets for the Bugtracker Mantis.

gulpfile.babel.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var specific = JSON.parse(fs.readFileSync(`./config/${target}.json`));
2222
var context = Object.assign({}, generic, specific);
2323

2424
var manifest = {
25-
//Add this to the manifest file So the livereload scritpt is also enqluded in the development
25+
//Add this to the manifest file So the livereload scritpt is also included in the development
2626
dev: {
2727
'background': {
2828
'scripts': [
@@ -268,6 +268,7 @@ function buildJS(target) {
268268
];
269269

270270
let tasks = files.map(file => {
271+
271272
return browserify({
272273
entries: 'src/scripts/' + file.source,
273274
debug: !production

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "__MSG_appName__",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"manifest_version": 2,
55
"description": "__MSG_appDescription__",
66
"shortName": "__MSG_appDescription__",

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "layer-notes",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"description": "Layernotes is a tool that you can use to easaly create Tickets for the Bugtracker Manits.",
55
"scripts": {
66
"chrome-build": "TARGET=chrome gulp",

src/scripts/components/setup/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ class Setup extends Component {
345345
<div>
346346
<h1>{translate('setupStepTwoTitle')}</h1>
347347
<p>{translate('setupStepTwoBody')}</p>
348-
<Input label={`${this.state.toolName} url`} helperText={translate('setupHelperTextUrl')} type="url" name="toolUrl" placeholder="https://bugtracker.uncinc.nl" value={this.state.toolUrl} onchange={this._handleStateChange}/>
348+
<Input label={`${this.state.toolName} url`} helperText={translate('setupHelperTextUrl')} type="url" name="toolUrl" placeholder="https://bugs.example.com" value={this.state.toolUrl} onchange={this._handleStateChange}/>
349349
<Input label={'Username'} type="text" helperText={translate('setupHelperTextUserName')} name="accountUserName" placeholder="username" value={this.state.accountUserName} onchange={this._handleStateChange}/>
350350
<Input label={'Password'} type="password" helperText={translate('setupHelperTextPassword')} name="accountPassword" placeholder="Password" value={this.state.accountPassword} onchange={this._handleStateChange}/>
351351
</div>

src/styles/main.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@
1010
top: 0;
1111
width: 100%;
1212
z-index: 99999999999;
13-
1413
// ::-moz-selection {
1514
// background: $font-color-dark;
1615
// color: $font-color;
1716
// }
18-
1917
::selection {
2018
background: $font-color-dark;
2119
color: $font-color;
2220
}
23-
2421
}

src/styles/vars.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ $secondary-color-dark: #c92424;
1212
$font-color: #fff;
1313
$font-color-hover: #dfdfdf;
1414
$font-color-dark: #000;
15-
$font-color-dark-semitransparant: rgba(0, 0, 0, .42);
15+
$font-color-dark-semitransparant: rgba(0, 0, 0, .32);
1616
$font-color-semitransparant: rgba(255, 255, 255, .38);
1717
$color-transparant: rgba(255, 255, 255, 0);
1818

0 commit comments

Comments
 (0)