Skip to content

Commit 7312f23

Browse files
committed
Misc changes in prep for release
1 parent 668dca7 commit 7312f23

File tree

6 files changed

+13
-20
lines changed

6 files changed

+13
-20
lines changed

License

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014 Jacob Liscom
3+
Copyright (c) 2017 Jacob Liscom
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

OpenNote/bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Jacob Liscom <https://github.com/FoxUSA>"
55
],
66
"description": "A note taking software",
7-
"version": "15.07.0",
7+
"version": "17.02.0",
88
"dependencies": {
99
"jquery": "2.1.4",
1010
"bootstrap": "^3.3.6",

OpenNote/openNote/openNote.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ openNote.value("config", {
77
* Get current version
88
*/
99
getVersion: function(){
10-
return "16.06.00";
10+
return "17.02.00";
1111
},
1212

1313
/**

OpenNote/openNote/router.js

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,31 @@
11
//Router
22
openNote.config(function($routeProvider){
33
$routeProvider
4-
.when("/folder/:id?",
5-
{
4+
.when("/folder/:id?",{
65
controller: "folderController",
76
templateUrl: "openNote/partials/folderPartial.html",
87
})
9-
.when("/tag/:tag",
10-
{
8+
.when("/tag/:tag",{
119
controller: "tagController",
1210
templateUrl: "openNote/partials/tagPartial.html",
1311
})
14-
.when("/note/:id?",
15-
{
12+
.when("/note/:id?",{
1613
controller: "noteController",
1714
templateUrl: "openNote/partials/notePartial.html"
1815
})
19-
.when("/search/:id?",
20-
{
16+
.when("/search/:id?",{
2117
controller: "searchController",
2218
templateUrl: "openNote/partials/searchPartial.html"
2319
})
24-
.when("/settings/",
25-
{
20+
.when("/settings/",{
2621
controller: "settingsController",
2722
templateUrl: "openNote/partials/settings/settingsPartial.html"
2823
})
29-
.when("/settings/database/",
30-
{
24+
.when("/settings/database/",{
3125
controller: "databaseController",
3226
templateUrl: "openNote/partials/settings/databasePartial.html"
3327
})
34-
.when("/settings/legacy/",
35-
{
28+
.when("/settings/legacy/",{
3629
controller: "legacyController",
3730
templateUrl: "openNote/partials/settings/legacyPartial.html"
3831
})

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ License
7979

8080
OpenNote Code - Distributed under the MIT License
8181

82-
© Jacob Liscom 2015
82+
© Jacob Liscom 2017
8383

8484
Credits
8585
-------
86-
J. Liscom - Supreme Programmer
86+
J. Liscom - Creator
8787

8888
Kam Bnkamalesh - His TODO project heavily influenced my UI design
8989

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "OpenNote",
3-
"version": "16.09.00",
3+
"version": "17.02.00",
44
"description": "",
55
"main": "Gruntfile.js",
66
"author": "Jacob Liscom",

0 commit comments

Comments
 (0)