Skip to content

Commit

Permalink
feat: support for importing database & editable for each URL
Browse files Browse the repository at this point in the history
* new: Support for importing database package.
* new: Editable for each URL.
  • Loading branch information
xizon committed Jan 22, 2022
1 parent 39e9581 commit 3722d1d
Show file tree
Hide file tree
Showing 22 changed files with 924 additions and 189 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ F-Curator is an offline application that comes at you all day long and curates y
- **Category management** and clear list blocks
- Drag and drop **sorting**
- **Exporting HTML** that separates APP to use favorites
- Support **importing database** package.
- Support quick search for URL and Site Name
- Judgment of URL validity and repetitiveness
- Automatically extract resources local, such as icons
Expand Down Expand Up @@ -164,6 +165,11 @@ $ sudo npm rebuild node-sass

## Changelog

#### = 1.3.0 (January 22, 2022) =

* new: Support for importing database package.
* new: Editable for each URL.


#### = 1.2.1 (January 20, 2022) =

Expand Down
23 changes: 20 additions & 3 deletions dist/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Boot Helpers
*
* @source: https://github.com/xizon/f-curator
* @version: 1.2.1 (January 20, 2022)
* @version: 1.3.0 (January 22, 2022)
* @author: UIUX Lab <uiuxlab@gmail.com>
* @license: MIT
*
Expand Down Expand Up @@ -88,6 +88,8 @@
color: #c5c5c5;
vertical-align: middle;
transition: .1s ease-in-out;
width: 95%;
text-align: left;
}

.app-content__wrapper .content__sidebar .board .secondary-btn a:hover {
Expand Down Expand Up @@ -31459,18 +31461,33 @@ div.ant-typography-edit-content.ant-typography-rtl {
}

/* Delete button */
.app-deletebtn-project {
.app-deletebtn-project,
.app-editbtn-project {
position: absolute;
right: 5px;
top: 4px;
transform: scale(0.8);
display: none;
background: #fff;
}

.app-editbtn-project {
right: 18px;
}

.ant-card:hover .app-deletebtn-project {
.ant-card:hover .app-deletebtn-project,
.ant-card:hover .app-editbtn-project {
display: block;
}

.ant-card .app-deletebtn-project:hover path {
fill: #f00;
}

.ant-card .app-editbtn-project:hover path {
fill: #333;
}

.app-group {
border: 1px solid #e9e9e9;
border-radius: 7px;
Expand Down
2 changes: 1 addition & 1 deletion dist/app.css.map

Large diffs are not rendered by default.

Loading

0 comments on commit 3722d1d

Please sign in to comment.