RetroShare / RSNewWebUI

30 stars 20 forks source link

Change webui directory structure and update build scripts #85

Closed zelfroster closed 1 year ago

zelfroster commented 1 year ago

The directory structure and names were a bit confusing. So, I have tried to fix it and a few more stuff as well.

This PR has dependency on the changes made in libretroshare. I will raise a PR with the necessary fixes soon.

I have tested the build scripts for linux, windows build script might need test (I think it will be working well as the changes were minor)

Old Structure

RSNewWebUI
├── data
│   ├── retroshare.svg
│   └── user.svg
└── webui-src
    ├── assets
    │   └── index.html
    └── styles
        └── app.css

New Structure

RSNewWebUI
└── webui-src
    ├── assets
    │   └── images
    │       ├── retroshare.svg
    │       └── user.svg
    ├── index.html
    └── styles.css

Changes