Skip to content

Commit

Permalink
Prepare initial release, v1.0
Browse files Browse the repository at this point in the history
This is it, the first release of Klik.

This patch introduces klik versioning scheme: vX.Y
X - New feature added.
Y - Bug fixes.

Add doc.html. This file redirects to website with documentation / guide.
It will be attached to release.

Change version in CmakeLists.txt

Signed-off-by: Mateusz Kusiak (Timax) <[email protected]>
  • Loading branch information
dancesWithMachines committed Nov 16, 2022
1 parent eb099a7 commit 25b5385
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ aux_source_directory(. PROJECT_SOURCES)

aux_source_directory(./libs/picow_tls_client PICO_TLS_CLIENT)

# Add executable. Default name is the project name, version 0.1
# Add executable. Default name is the project name
add_executable(klik klik.c ${PROJECT_SOURCES} ${PICO_TLS_CLIENT})

target_include_directories(klik PRIVATE
./libs/picow_tls_client
)

pico_set_program_name(klik "klik")
pico_set_program_version(klik "0.1")
pico_set_program_version(klik "1.0")

pico_enable_stdio_uart(klik 1)
pico_enable_stdio_usb(klik 1)
Expand Down
16 changes: 16 additions & 0 deletions docs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Klik</title>
<meta http-equiv="refresh" content="0; url=http://dancesWithMachines.github.io/klik" />
</head>

<body>
¯\_(ツ)_/¯ Redirecting, lol.
</body>

</html>

0 comments on commit 25b5385

Please sign in to comment.