Skip to content

Commit

Permalink
ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
sajadevo committed Jan 10, 2023
1 parent 615bafc commit 9b65ace
Show file tree
Hide file tree
Showing 6 changed files with 75 additions and 41 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
# Change Log

## [1.0.1] 2023-01-10

- Update dependencies
- Fix the installation issue when running `npm install`

## [2.0.0] 2018-05-01

## Vue Paper Dashboard Version 2

- Bootstrap 4 update
- Migrate components to support BS4 as well as existing scss assets
- Vue CLI 3 update
- Get rid of old webpack template and make use of newest vue-cli 3. The project has almost no configuration files and
should work out of the box if you copy paste the `src` folder into a newly scaffolded Vue CLI 3 project.
should work out of the box if you copy paste the `src` folder into a newly scaffolded Vue CLI 3 project.
- Overall project structure improvements

- The project structure resembles a default [nuxt project structure](https://nuxtjs.org/)
We have a breakdown of
We have a breakdown of
- `components` folder (only UI components)
- `pages` folder which contains pages/views
- `layout` folder which contains layout related components
Expand All @@ -22,6 +30,6 @@
- Improvements for Sidebar. Option to declare links as children inside Sidebar slot. SSR support.
- Minor improvements for other components and SSR support for them


## [1.0.0] 2017-06-18

### Stable Original Release
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 Cristi Jora & Creative Tim (https://www.creative-tim.com)
Copyright (c) 2023 Cristi Jora & Creative Tim (https://www.creative-tim.com)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,35 +11,46 @@ Check the [Live Demo here](https://cristijora.github.io/vue-paper-dashboard).
![](http://i.imgur.com/3iC1hOs.gif)

## Documentation

Link to [Documentation](http://vuejs.creative-tim.com/vue-paper-dashboard/documentation/)

## Build Setup

### install dependencies

```
npm install
```

### serve with hot reload at localhost:8080

```
npm run dev
```

### build for production with minification

```
npm run build
```

### lint

```
npm run lint
```

## Contribution guide
* Fork the repository
* `npm install` or `yarn install`
* Make changes
* Open Pull Request

- Fork the repository
- `npm install` or `yarn install`
- Make changes
- Open Pull Request

For detailed explanation on how things work, checkout the [guide](https://github.com/vuejs/vue-cli/blob/dev/docs/README.md)

- [CHANGELOG](./CHANGELOG.md)
- [version-badge](https://img.shields.io/badge/version-2.0.0-blue.svg)
- [version-badge](https://img.shields.io/badge/version-1.0.1-blue.svg)
- [license-badge](https://img.shields.io/badge/license-MIT-blue.svg)

## License
Expand Down
67 changes: 43 additions & 24 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
=========================================================
* Vue Paper Dashboard - v2.0.0
* Vue Paper Dashboard - v1.0.1
=========================================================
* Product Page: http://www.creative-tim.com/product/paper-dashboard
Expand All @@ -15,27 +15,46 @@
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" type="image/png" sizes="96x96" href="<%= webpackConfig.output.publicPath %>favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

<title>Vue Paper Dashboard</title>
<!-- Bootstrap core CSS -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">

<!-- Fonts and icons -->
<link type="text/css" href="https://fonts.googleapis.com/css?family=Muli:400,300" rel="stylesheet">
<link type="text/css" href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="wrapper" id="app">

</div>
<!-- built files will be auto injected -->
<!-- Google Maps Plugin -->
<script src="https://maps.googleapis.com/maps/api/js?libraries=places&key=AIzaSyAamVCoyQ4AuvBpxVRMs9P-HFkfPVQj0Kw" type="text/javascript"></script>

</body>
<head>
<meta charset="utf-8" />
<link
rel="icon"
type="image/png"
sizes="96x96"
href="<%= webpackConfig.output.publicPath %>favicon.png"
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

<title>Vue Paper Dashboard</title>
<!-- Bootstrap core CSS -->
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
/>

<!-- Fonts and icons -->
<link
type="text/css"
href="https://fonts.googleapis.com/css?family=Muli:400,300"
rel="stylesheet"
/>
<link
type="text/css"
href="https://fonts.googleapis.com/css?family=Montserrat"
rel="stylesheet"
/>
<link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
/>
</head>
<body>
<div class="wrapper" id="app"></div>
<!-- built files will be auto injected -->
<!-- Google Maps Plugin -->
<script
src="https://maps.googleapis.com/maps/api/js?libraries=places&key=AIzaSyAamVCoyQ4AuvBpxVRMs9P-HFkfPVQj0Kw"
type="text/javascript"
></script>
</body>
</html>
8 changes: 2 additions & 6 deletions src/assets/sass/paper-dashboard.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!

=========================================================
* Vue Paper Dashboard - v2.0.0
* Vue Paper Dashboard - v1.0.1
=========================================================

* Product Page: http://www.creative-tim.com/product/paper-dashboard
* Copyright 2019 Creative Tim (http://www.creative-tim.com)
* Copyright 2023 Creative Tim (http://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/paper-dashboard/blob/master/LICENSE.md)

=========================================================
Expand All @@ -31,7 +31,3 @@
@import "paper/cards";
@import "paper/chartist";
@import "paper/responsive";




4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
=========================================================
* Vue Paper Dashboard - v2.0.0
* Vue Paper Dashboard - v1.0.1
=========================================================
* Product Page: http://www.creative-tim.com/product/paper-dashboard
* Copyright 2019 Creative Tim (http://www.creative-tim.com)
* Copyright 2023 Creative Tim (http://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/paper-dashboard/blob/master/LICENSE.md)
=========================================================
Expand Down

0 comments on commit 9b65ace

Please sign in to comment.