Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
chore(release): v0.6.0
Browse files Browse the repository at this point in the history
Merge pull request #412 from qri-io/release
  • Loading branch information
b5 authored Nov 12, 2018
2 parents 2ab09c6 + 7aecb0a commit ce498e1
Show file tree
Hide file tree
Showing 12 changed files with 333 additions and 1,483 deletions.
502 changes: 26 additions & 476 deletions app/dist/renderer.prod.js

Large diffs are not rendered by default.

1,281 changes: 287 additions & 994 deletions app/dist/style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/main.prod.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "qri-webapp",
"productName": "qri",
"version": "0.5.2",
"version": "0.6.0",
"description": "qri (\"query\") frontend application",
"main": "./main.prod.js",
"author": {
Expand Down
4 changes: 1 addition & 3 deletions lib/components/AppLoading.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
/* globals __BUILD__ */
import React from 'react'
import Base from './Base'
import Spinner from './chrome/Spinner'
import AppDrag from './AppDrag'
import version from '../../version'

import { defaultPalette } from '../propTypes/palette'

export default class AppLoading extends Base {
template (css) {
const version = __BUILD__.VERSION

return (
<div className={css('page')}>
<AppDrag />
Expand Down
4 changes: 2 additions & 2 deletions lib/components/ExternalLink.electron.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import React, { Component } from 'react'
import { shell } from 'electron'

export default class ExternalLink extends React.Component {
export default class ExternalLink extends Component {
render () {
return (<a href={this.props.href} onClick={(e) => {
e.preventDefault()
Expand Down
4 changes: 2 additions & 2 deletions lib/components/ExternalLink.web.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import React, { Component } from 'react'

export default class ExternalLink extends React.Component {
export default class ExternalLink extends Component {
render () {
return <a {...this.props} target='_blank'>{this.props.children}</a>
}
Expand Down
11 changes: 10 additions & 1 deletion lib/components/chrome/TopBar.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/* globals __BUILD__ */
import React from 'react'
import { Link } from 'react-router-dom'
Expand Down Expand Up @@ -78,6 +77,9 @@ export default class TopBar extends Base {

return (
<div className={css('topbar')} style={layout}>
{__BUILD__.ELECTRON && <div className={css('titlebar')}>
<p>qri</p>
</div>}
<div className={css('no_shrink')}>
{__BUILD__.ELECTRON && <div className={css('item_spacing')}>
<a className={css('nav_button', 'first_item')} onClick={this.handleGoBack}>left</a>
Expand Down Expand Up @@ -109,9 +111,16 @@ export default class TopBar extends Base {
boxShadow: '0 0px 4px rgba(0, 0, 0, 0.35)',
'-webkit-app-region': 'drag',
display: 'flex',
flexWrap: 'wrap',
alignItems: 'center',
justifyContent: 'space-between'
},
titlebar: {
flex: '1 0 100%',
width: '100%',
height: 20,
textAlign: 'center'
},
first_item: {
marginRight: 10,
marginLeft: 0
Expand Down
2 changes: 1 addition & 1 deletion lib/reducers/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SESSION_PROFILE_SUCCESS, SESSION_PROFILE_FAILURE } from '../constants/s

let topbarHeight = 55
if (__BUILD__.ELECTRON) {
topbarHeight = 55
topbarHeight = 75
}

const initialState = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "qri",
"private": true,
"productName": "qri",
"version": "0.5.2",
"version": "0.6.0",
"description": "qri (\"query\") frontend application",
"keywords": [],
"homepage": "https://qri.io",
Expand Down
Binary file modified resources/qri
Binary file not shown.
2 changes: 1 addition & 1 deletion version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '0.5.2'
export default '0.6.0'

0 comments on commit ce498e1

Please sign in to comment.