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

Commit

Permalink
config(version): Prepare release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lauthieb committed Jan 29, 2018
1 parent 64da6cc commit eec5a2f
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 15 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">
<br>
<img width="400" src="/src/renderer/assets/bloc-codes-logo-black-full.png" alt="electron-vue">
<img width="400" src="/src/renderer/assets/code-notes-logo-black-full.png" alt="electron-vue">
<br>
<br>
</div>
Expand All @@ -11,6 +11,7 @@ A simple code snippet manager for developers built with Electron & Vue.js 🚀

<div align="center">

[![Build Status](https://travis-ci.org/lauthieb/code-notes.svg?branch=master)](https://travis-ci.org/lauthieb/code-notes)
[![forthebadge](http://forthebadge.com/images/badges/built-with-love.svg)](http://forthebadge.com) [![forthebadge](http://forthebadge.com/images/badges/uses-js.svg)](http://forthebadge.com) [![forthebadge](http://forthebadge.com/images/badges/makes-people-smile.svg)](http://forthebadge.com)
</div>

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bloc-codes",
"version": "0.0.0",
"name": "code-notes",
"version": "1.0.0",
"author": "Laurent THIEBAULT <[email protected]>",
"description": "A simple code snippet manager for developers built with Electron 🚀",
"license": "MIT",
Expand All @@ -23,8 +23,8 @@
"postinstall": "npm run eslint:fix && npm run prettier"
},
"build": {
"productName": "Bloc Codes",
"appId": "fr.lauthieb.bloc-codes",
"productName": "Code Notes",
"appId": "fr.lauthieb.code-notes",
"directories": {
"output": "build"
},
Expand Down
2 changes: 1 addition & 1 deletion src/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>bloc-codes</title>
<title>code-notes</title>
<% if (htmlWebpackPlugin.options.nodeModules) { %>
<!-- Add `node_modules/` to global paths so `require` works properly in development -->
<script>
Expand Down
16 changes: 9 additions & 7 deletions src/renderer/Navbar.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<nav>
<img src="~@/assets/bloc-codes-logo-white-full.png" alt="Bloc-codes logo">
<img class="logo" src="~@/assets/code-notes-logo-white-full.png" alt="Code Notes logo">
<div class="is-pulled-right">
<a id="about-bloc-codes" @click="aboutBlocCodesModal = true" title="About Bloc Codes...">
<a id="about-code-notes" @click="aboutBlocCodesModal = true" title="About Code Notes...">
<b-icon icon="info-circle"></b-icon>
</a>
<a id="github" @click="open('https://github.com/lauthieb/bloc-codes')" title="Show on Github...">
<a id="github" @click="open('https://github.com/lauthieb/code-notes')" title="Show on Github...">
<b-icon icon="github"></b-icon>
</a>
</div>
Expand All @@ -15,15 +15,15 @@
<div class="card-content">
<div class="media">
<div class="media-content">
<img src="~@/assets/bloc-codes-logo-black-full.png" alt="Image">
<img src="~@/assets/code-notes-logo-black-full.png" alt="Image">
</div>
</div>
<div class="content">
<h4>v{{appVersion}}</h4>

<p>A simple code snippet manager for developers built with Electron & Vue.js 🚀</p>

<p>Feel free to contribute on <a @click="open('https://github.com/lauthieb/bloc-codes')">Github</a> 🍻</p>
<p>Feel free to contribute on <a @click="open('https://github.com/lauthieb/code-notes')">Github</a> 🍻</p>

<img class="badge" src="http://forthebadge.com/images/badges/built-with-love.svg" alt="Built with love">
</div>
Expand Down Expand Up @@ -63,12 +63,14 @@
width: 100%;
z-index: 1000;
img {
.logo {
padding: 10px 10px 4px 10px;
width: 110px;
position: relative;
left: 4%;
}
#about-bloc-codes, #github {
#about-code-notes, #github {
color: $light;
position: relative;
top: 20px;
Expand Down
Binary file removed src/renderer/assets/bloc-codes-logo-black-full.png
Binary file not shown.
Binary file removed src/renderer/assets/bloc-codes-logo-white-full.png
Binary file not shown.
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.
2 changes: 1 addition & 1 deletion test/e2e/specs/Launch.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('Launch', function () {
it('shows the proper application title', function () {
return this.app.client.getTitle()
.then((title) => {
expect(title).to.equal('bloc-codes');
expect(title).to.equal('code-notes');
});
});
});

0 comments on commit eec5a2f

Please sign in to comment.