Skip to content

Commit

Permalink
Developing 0.30.1
Browse files Browse the repository at this point in the history
- linked latest nana 1.8 develop
- fixed compilation error in ada_place.cpp
  • Loading branch information
besh81 committed Feb 2, 2021
1 parent a45d989 commit 72fe492
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions README.MD
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@

# Nana Creator <a href="https://www.buymeacoffee.com/besh81" target="_blank"><img align="right" src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
## The quickest way to build *Nana* GUIs
[![](https://img.shields.io/badge/dependencies-nana%20Lib%201.8%20develop-blue.svg?longCache=true&style=for-the-badge)](https://github.com/cnjinhao/nana)


**Nana Creator** is a RAD tool for (and built with) [Nana C++ Library](https://github.com/cnjinhao/nana). Is a place-based resource editor that quickly gets you creating professional-looking dialogs for deployment on Windows, Linux or any other supported *Nana* platform.
<img align="right" src="https://img.shields.io/sourceforge/dt/nana-creator.svg" alt="Nana Creator on Sourceforge">

[![](https://img.shields.io/badge/dependencies-nana%20Lib%201.8%20develop-blue.svg?longCache=true&style=for-the-badge)](https://github.com/cnjinhao/nana)


<img align="right" src="https://img.shields.io/sourceforge/dt/nana-creator.svg" alt="Nana Creator on Sourceforge">
**Nana Creator** is a RAD tool for (and built with) [Nana C++ Library](https://github.com/cnjinhao/nana). Is a place-based resource editor that quickly gets you creating professional-looking dialogs for deployment on Windows, Linux or any other supported *Nana* platform.

Click here to download the: [Win exe](https://sourceforge.net/projects/nana-creator/files/latest/download) | [Win portable](https://sourceforge.net/projects/nana-creator/files/portable_win)
------------- | -------------
Expand Down
2 changes: 1 addition & 1 deletion src/nana_extra/adi_place.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ namespace nana
//draw caption
auto text = to_wstring(API::window_caption(window_handle_));
if((graph.size().width > DOCK_CAPTION_H) && (graph.size().width - DOCK_CAPTION_H > 10))
text_rd_->render({ 3, 1 }, text.data(), text.size(), graph.size().width - DOCK_CAPTION_H, paint::text_renderer::mode::truncate_with_ellipsis);
text_rd_->render({ 3, 1 }, { text.data(), text.size() }, graph.size().width - DOCK_CAPTION_H, paint::text_renderer::mode::truncate_with_ellipsis);

//draw x button
if(info_->show_close())
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "config.h"


#define CREATOR_VERSION "0.30.0"
#define CREATOR_VERSION "0.30.1"
#define CREATOR_TITLE (CREATOR_NAME " " CREATOR_VERSION)


Expand Down

0 comments on commit 72fe492

Please sign in to comment.