Skip to content

Commit

Permalink
version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kariminf committed Aug 16, 2017
1 parent 09781aa commit 35562ec
Show file tree
Hide file tree
Showing 12 changed files with 66 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,15 @@ This will break the projects developed on precedent versions.
* FIX: Fixing bugs
* DEL: Delete or deprecate some functions

## Version 1.1.0 (2017-08-16)

* MODIFY: now there are two types of bars: low and high
* ADD: two styles; vertical and colorful

## Version 1.0.1 (2017-08-04)

* FIX: forget to pack index_node.html

## Version 1.0.0 (2017-08-04)

* NEW: first release
* NEW: first release
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ it is self explanatory and easy to fill.

For API documentation, check [this YuiDoc generated documentation](https://kariminf.github.io/json-vcard/docs/docs/)


For a list of available themes, [check THIS]()

### Download from Github

* Download the last release [HERE](https://github.com/kariminf/json-vcard/releases/latest)
Expand Down
32 changes: 32 additions & 0 deletions THEMES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# List of themes

## default
Its code is:
```
.setThemeName("default")
```
or don't affect any theme name since it is the default one

### violet
```
.setStyleName("violet")
```
![Default.Violet](themes/default/violet.png)

### black
```
.setStyleName("black")
```
![Default.Black](themes/default/black.png)

### vertical
```
.setStyleName("vertical")
```
![Default.Vertical](themes/default/vertical.png)

### colorful
```
.setStyleName("colorful")
```
![Default.Colorful](themes/default/colorful.png)
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</head>
<body>
<script>
JsonVCard.setStyleName("colorful")
JsonVCard.setStyleName("violet")
.setFooter("info/footer.htm")
.process("./vcard.json");
</script>
Expand Down
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
{
"name": "json-vcard",
"version": "1.0.1",
"version": "1.1.0",
"description": "VCard dynamically created from a json file and a template",
"main": "jsonvcard.js",
"keywords": [
"cv",
"vcard",
"json"
"json",
"portfelio",
"coruculium vitae",
"website generator",
"front-end",
"personal webpage"
],
"repository": "https://github.com/kariminf/json-vcard.git",
"author": "Abdelkrime Aries <[email protected]>",
Expand Down
Binary file added themes/default/black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 12 additions & 1 deletion themes/default/colorful.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,13 @@
border-radius: 50%;
}

#info {
#info, #info a {
width: auto;
margin: 5px;
box-sizing: border-box;
color: blue;
font-weight: bold;
text-align: left;
}


Expand Down Expand Up @@ -247,6 +250,14 @@ a {color: black;}
font-weight: bold;
}

.date {
color: blue;
}

.org {
color: green;
}

#pub tr:nth-child(odd) {
background: lightblue;
}
Expand Down
Binary file added themes/default/colorful.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions themes/default/vertical.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@
margin: 5px;
}

#pub table {
width: 100%;
}

#pic {
width: 7.5em;
height: 11em;
Expand Down
Binary file added themes/default/vertical.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added themes/default/violet.png
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 yuidoc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jsonVCard API",
"description": "json CV website",
"version": "0.6.0",
"version": "1.1.0",
"url": "https://github.com/kariminf/json-vcard",
"options": {
"linkNatives": "true",
Expand Down

0 comments on commit 35562ec

Please sign in to comment.