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

Commit eec5a2f

Browse files
committed
config(version): Prepare release v1.0.0
1 parent 64da6cc commit eec5a2f

File tree

10 files changed

+18
-15
lines changed

10 files changed

+18
-15
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div align="center">
22
<br>
3-
<img width="400" src="/src/renderer/assets/bloc-codes-logo-black-full.png" alt="electron-vue">
3+
<img width="400" src="/src/renderer/assets/code-notes-logo-black-full.png" alt="electron-vue">
44
<br>
55
<br>
66
</div>
@@ -11,6 +11,7 @@ A simple code snippet manager for developers built with Electron & Vue.js 🚀
1111

1212
<div align="center">
1313

14+
[![Build Status](https://travis-ci.org/lauthieb/code-notes.svg?branch=master)](https://travis-ci.org/lauthieb/code-notes)
1415
[![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)
1516
</div>
1617

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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "bloc-codes",
3-
"version": "0.0.0",
2+
"name": "code-notes",
3+
"version": "1.0.0",
44
"author": "Laurent THIEBAULT <[email protected]>",
55
"description": "A simple code snippet manager for developers built with Electron 🚀",
66
"license": "MIT",
@@ -23,8 +23,8 @@
2323
"postinstall": "npm run eslint:fix && npm run prettier"
2424
},
2525
"build": {
26-
"productName": "Bloc Codes",
27-
"appId": "fr.lauthieb.bloc-codes",
26+
"productName": "Code Notes",
27+
"appId": "fr.lauthieb.code-notes",
2828
"directories": {
2929
"output": "build"
3030
},

src/index.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<title>bloc-codes</title>
5+
<title>code-notes</title>
66
<% if (htmlWebpackPlugin.options.nodeModules) { %>
77
<!-- Add `node_modules/` to global paths so `require` works properly in development -->
88
<script>

src/renderer/Navbar.vue

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<template>
22
<nav>
3-
<img src="~@/assets/bloc-codes-logo-white-full.png" alt="Bloc-codes logo">
3+
<img class="logo" src="~@/assets/code-notes-logo-white-full.png" alt="Code Notes logo">
44
<div class="is-pulled-right">
5-
<a id="about-bloc-codes" @click="aboutBlocCodesModal = true" title="About Bloc Codes...">
5+
<a id="about-code-notes" @click="aboutBlocCodesModal = true" title="About Code Notes...">
66
<b-icon icon="info-circle"></b-icon>
77
</a>
8-
<a id="github" @click="open('https://github.com/lauthieb/bloc-codes')" title="Show on Github...">
8+
<a id="github" @click="open('https://github.com/lauthieb/code-notes')" title="Show on Github...">
99
<b-icon icon="github"></b-icon>
1010
</a>
1111
</div>
@@ -15,15 +15,15 @@
1515
<div class="card-content">
1616
<div class="media">
1717
<div class="media-content">
18-
<img src="~@/assets/bloc-codes-logo-black-full.png" alt="Image">
18+
<img src="~@/assets/code-notes-logo-black-full.png" alt="Image">
1919
</div>
2020
</div>
2121
<div class="content">
2222
<h4>v{{appVersion}}</h4>
2323

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

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

2828
<img class="badge" src="http://forthebadge.com/images/badges/built-with-love.svg" alt="Built with love">
2929
</div>
@@ -63,12 +63,14 @@
6363
width: 100%;
6464
z-index: 1000;
6565
66-
img {
66+
.logo {
6767
padding: 10px 10px 4px 10px;
6868
width: 110px;
69+
position: relative;
70+
left: 4%;
6971
}
7072
71-
#about-bloc-codes, #github {
73+
#about-code-notes, #github {
7274
color: $light;
7375
position: relative;
7476
top: 20px;
-42.9 KB
Binary file not shown.
-65.1 KB
Binary file not shown.
42.1 KB
Loading
64 KB
Loading

test/e2e/specs/Launch.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ describe('Launch', function () {
77
it('shows the proper application title', function () {
88
return this.app.client.getTitle()
99
.then((title) => {
10-
expect(title).to.equal('bloc-codes');
10+
expect(title).to.equal('code-notes');
1111
});
1212
});
1313
});

0 commit comments

Comments
 (0)