Skip to content

Commit

Permalink
Merge pull request #6 from eosdac/v0.4.4_rc1
Browse files Browse the repository at this point in the history
V0.4.4 rc1
  • Loading branch information
piecesnbits authored Jun 29, 2019
2 parents fc5c71b + f4726aa commit e43e372
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 55 deletions.
21 changes: 1 addition & 20 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,6 @@
# eosDAC client Customization
(in developement)

This repo contains all files to customize and extend the eosdac-client. It should be pulled in to the src/extensions folder of the eosdac-client. The extensions folder should be added to your gitignore file (by default).

## branding
You can change the default colors or add more color schemes in the branding/color_schemes folder. You need to register additional schemes in the index.js file. You can generate and download your custom scheme file by enabling the "dev tools" on the settings page. The logos for the eosdac-client will be pulled in from branding/images/logos. Be aware that the file names matter.

![image](https://user-images.githubusercontent.com/44613132/55157729-6c29d500-515d-11e9-88cf-6b6287885dd2.png)


## i18n: Add or change language strings
In the i18n folder you could customize or add language strings. If you add strings with the same key they will overwrite the defaults that come with the eosdac-client.

## pages, components and menu
Put your custom pages and components in the representative folders. Add your menu items to components/menu

## routes: add custom routes
Use the routes.js file to add your own routes pointing to your custom pages.

## store
initialize your vuex stores and/or create persistant states (locale storage).
This is the eosDAC branded client extension. This repo is used for our own memberclient. To create your own extensions, please use the boilerplate https://github.com/eosdac/boilerplate-client-extension



Expand Down
16 changes: 0 additions & 16 deletions branding/colors/color_schemes/eosdac.colors.styl

This file was deleted.

16 changes: 0 additions & 16 deletions branding/colors/color_schemes/liberland.colors.styl

This file was deleted.

2 changes: 0 additions & 2 deletions branding/colors/default.colors.styl

This file was deleted.

1 change: 1 addition & 0 deletions branding/css/extended.styl
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
//use this file for your custom css
2 changes: 1 addition & 1 deletion router/routes.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const routes_extension = [
{
path: "/",
component: () => import("layouts/MyLayout.vue"),
component: () => import("layouts/dacLayout.vue"),
children: [
{
path: "example",
Expand Down
5 changes: 5 additions & 0 deletions statics/config/credits.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
"name": "Scatter",
"url": "https://get-scatter.com/",
"logo": "https://avatars3.githubusercontent.com/u/40841390?s=200&v=4"
},
{
"name": "Quasar Framework",
"url": "https://quasar.dev/",
"logo": "https://cdn.quasar.dev/logo/svg/quasar-logo.svg"
}
]
}
10 changes: 10 additions & 0 deletions statics/config/theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"is_dark": true,
"colors": {
"$primary" : "#4a1289",
"$bg1" : "#1e2128",
"$bg2" : "#272b35",
"$text1" : "hsla(0,0%,100%,0.9)",
"$text2" : "hsla(0,0%,100%,0.7)"
}
}

0 comments on commit e43e372

Please sign in to comment.