Skip to content

Commit

Permalink
Documentation updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ConstantRobotics committed May 17, 2024
1 parent c0a5230 commit c9d8ebd
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
![simplefiledialog_logo](_static/simplefiledialog_web_logo.png)
![simplefiledialog_logo](./static/simplefiledialog_web_logo.png)



# **Simple file dialog C++ library**

**v1.0.3**
**v1.0.4**



Expand All @@ -20,7 +20,7 @@

# Overview

**SimpleFileDialog** C++ library provides simple dialog to chose file in Windows and Linux (tested for Ubuntu 22.04, 22.10 and Windows 11). The library used in projects when simple file chose dialog needed. To provide dialog in Linux the library calls "**zenity**" application. The library uses C++17 standard and doesn't have third-party dependencies. **SimpleFileDialog.h** file includes declaration of **SimpleFileDialog** class. **SimpleFileDialog** class includes only one simple static method **dialod()**.
**SimpleFileDialog** C++ library provides simple dialog to chose file in Windows and Linux (tested for Ubuntu 22.04, 22.10 and Windows 11). The library used in projects when simple file chose dialog needed. To provide dialog in Linux the library calls "**zenity**" application. The library uses C++17 standard and doesn't have third-party dependencies. **SimpleFileDialog.h** file includes declaration of **SimpleFileDialog** class. **SimpleFileDialog** class includes only one simple static method **dialod()**. The library is licensed under the **Apache 2.0** license.



Expand All @@ -32,7 +32,8 @@
| ------- | ------------ | ---------------------------------------------- |
| 1.0.0 | 20.07.2023 | First version. |
| 1.0.2 | 02.08.2023 | - Fixed std::string compiling error for Linux. |
| 1.0.3 | 20.03.2024 | - Documentation updated. |
| 1.0.3 | 20.03.2024 | - Documentation updated. |
| 1.0.4 | 17.05.2024 | - Documentation updated. |



Expand Down Expand Up @@ -192,4 +193,4 @@ Next you have to include SimpleFileDialog library in your **src/CMakeLists.txt**
target_link_libraries(${PROJECT_NAME} SimpleFileDialog)
```

Done!
Done!
Binary file removed SimpleFileDialog_C++_library.pdf
Binary file not shown.
Binary file added SimpleFileDialog_C++_library_v1.0.4.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.13)
## LIBRARY-PROJECT
## name and version
################################################################################
project(SimpleFileDialog VERSION 1.0.0 LANGUAGES CXX)
project(SimpleFileDialog VERSION 1.0.4 LANGUAGES CXX)



Expand Down
4 changes: 2 additions & 2 deletions src/SimpleFileDialogVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

#define SIMPLE_FILE_DIALOG_MAJOR_VERSION 1
#define SIMPLE_FILE_DIALOG_MINOR_VERSION 0
#define SIMPLE_FILE_DIALOG_PATCH_VERSION 0
#define SIMPLE_FILE_DIALOG_PATCH_VERSION 4

#define SIMPLE_FILE_DIALOG_VERSION "1.0.0"
#define SIMPLE_FILE_DIALOG_VERSION "1.0.4"
File renamed without changes

0 comments on commit c9d8ebd

Please sign in to comment.