diff --git a/NsfwBox.dproj b/NsfwBox.dproj index f6173f3..0003fd0 100755 --- a/NsfwBox.dproj +++ b/NsfwBox.dproj @@ -368,9 +368,9 @@ true - - - ic_launcher.png + + + splash_image.png true @@ -399,16 +399,17 @@ true - + assets\internal\themes\default video.png true - - - ic_launcher.png + + + assets\internal\themes\default + downloads.png true @@ -417,14 +418,14 @@ true - + assets\internal\libs\ libsqliteX.so true - + assets\internal\libs\ libsqliteX.so @@ -451,6 +452,12 @@ true + + + NsfwBox.exe + true + + assets\internal\themes\default @@ -458,15 +465,10 @@ true - - - NsfwBox.exe - true - - - + - ic_launcher.png + assets\internal\themes\default + image-loading.jpg true @@ -502,16 +504,15 @@ true - + NsfwBox.exe true - + - assets\internal\themes\default - image-loading.jpg + ic_launcher.png true @@ -629,24 +630,24 @@ true - + assets\internal\themes\default search.png true - + assets\internal\themes\default - copy.png + search.png true - + assets\internal\themes\default - search.png + copy.png true @@ -1029,6 +1030,13 @@ true + + + assets\internal\themes\default + done.png + true + + ic_launcher.png @@ -1356,6 +1364,12 @@ true + + + ic_launcher.png + true + + assets\internal\themes\default @@ -1370,33 +1384,26 @@ true - - - splash_image.png - true - - - - - assets\internal\themes\default - downloads.png + + + ic_launcher.png true - + splash_image.png true - + assets\internal\themes\default video.png true - + assets\internal\themes\default downloads.png @@ -2206,8 +2213,8 @@ - + diff --git a/README.md b/README.md index b163122..cedaa2c 100755 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ Developed on RAD Studio 11 Alexandria. * [kemono.party](https://kemono.party), [coomer.party](https://coomer.party) * [9hentai.to](https://9hentai.to) * [motherless.com](https://motherless.com) +* [fapello.com](https://fapello.com) #### Dependencies: * [Alcinoe](https://github.com/Zeus64/alcinoe) diff --git a/assets/themes/README.md b/assets/themes/README.md index ad35430..7fdc93a 100644 --- a/assets/themes/README.md +++ b/assets/themes/README.md @@ -1,5 +1,6 @@ ## Assets list ### Default and Dark theme +* Done icon by Icons8 * History icons created by kmg design - Flaticon -> [Item page](https://www.flaticon.com/free-icon/refresh_2530313) * Favorite icons created by Freepik - Flaticon -> [Item page](https://www.flaticon.com/free-icon/bookmark_2698202) * Download icons created by pancaza - Flaticon -> [Item page](https://www.flaticon.com/free-icon/download_3879019) @@ -32,14 +33,15 @@ * Dice icons created by Hilmy Abiyyu A. - Flaticon -> [Item page](https://www.flaticon.com/free-icon/casino_8027947) * Code icons created by riajulislam - Flaticon -> [Item page](https://www.flaticon.com/free-icon/coding_8220372) * Heart icons created by Freepik - Flaticon -> [Item page](https://www.flaticon.com/free-icon/heart_210545) -* https://nsfw.xxx -> [Item page](https://nsfw.xxx/favicon.ico) -* http://rule34.xxx -> [Item page](http://rule34.xxx/favicon.ico) -* https://r34.app -> [Item page](https://r34.app/_nuxt/icons/icon_512x512.307d7e.png) -* https://givemeporn.club -> [Item page](https://givemeporn.club/static/images/favicon.png?v=1) -* https://9hentai.to -> [Item page](ITEM_ICON) -* https://kemono.party -> [Item page](https://kemono.party/static/favicon.ico) -* motherless.com favicon -> [Item page](https://motherless.com) - +* [nsfw.xxx](https://nsfw.xxx) -> [Item page](https://nsfw.xxx/favicon.ico) +* [rule34.xxx](https://rule34.xxx) -> [Item page](http://rule34.xxx/favicon.ico) +* [r34.app](https://r34.app) -> [Item page](https://r34.app/_nuxt/icons/icon_512x512.307d7e.png) +* [givemeporn.club](https://givemeporn.club) -> [Item page](https://givemeporn.club/static/images/favicon.png?v=1) +* [9hentai.to](https://9hentai.to) -> [Item page](ITEM_ICON) +* [kemono.party](https://kemono.party) -> [Item page](https://kemono.party/static/favicon.ico) +* [motherless.com](https://motherless.com) favicon -> [Item page](https://motherless.com) +* [fapello.com](https://fapello.com) favicon -> [Item page](https://fapello.com) + diff --git a/assets/themes/default/done.png b/assets/themes/default/done.png new file mode 100644 index 0000000..06ce0f3 Binary files /dev/null and b/assets/themes/default/done.png differ diff --git a/source/NsfwBox.Styling.pas b/source/NsfwBox.Styling.pas index 9d1c98c..6dde254 100644 --- a/source/NsfwBox.Styling.pas +++ b/source/NsfwBox.Styling.pas @@ -32,6 +32,7 @@ interface ICON_AVATAR = 'avatar.png'; ICON_FILES = 'files.png'; ICON_WARNING = 'warning-sign.png'; + ICON_DONE = 'done.png'; ICON_IMAGE = 'image.png'; ICON_VIDEO = 'video.png'; diff --git a/source/Unit1.pas b/source/Unit1.pas index aa443ba..758acd7 100755 --- a/source/Unit1.pas +++ b/source/Unit1.pas @@ -2369,6 +2369,7 @@ procedure TForm1.FormCreate(Sender: TObject); Text.Text := 'Yes'; Text.TextSettings.HorzAlign := TTextAlign.Center; OnTap := BtnDialogYesOnTap; + Image.ImageURL := AppStyle.GetImagePath(ICON_DONE); end; BtnDialogNo := Self.CreateDefButton(LayoutDialogYesOrNo, BTN_STYLE_DEF2); @@ -2379,6 +2380,7 @@ procedure TForm1.FormCreate(Sender: TObject); Text.Text := 'No'; Text.TextSettings := BtnDialogYes.Text.TextSettings; OnTap := BtnDialogNoOnTap; + Image.ImageURL := AppStyle.GetImagePath(ICON_CLOSETAB); end; { MenuAnonMessage }