Skip to content

Commit

Permalink
Merge pull request #360 from flux3dp/release/1.1.0
Browse files Browse the repository at this point in the history
Release/1.1.0
  • Loading branch information
JasonShiao committed Oct 28, 2022
2 parents 698d352 + 2f2585d commit ced5ee7
Show file tree
Hide file tree
Showing 134 changed files with 12,091 additions and 3,384 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Expand Up @@ -59,7 +59,7 @@ jobs:
#if: steps.cache-potrace.outputs.cache-hit != 'true'
run: |
cd $RUNNER_WORKSPACE/dev/
curl http://potrace.sourceforge.net/download/1.16/potrace-1.16.tar.gz -o potrace-1.16.tar.gz
curl https://potrace.sourceforge.net/download/1.16/potrace-1.16.tar.gz -o potrace-1.16.tar.gz
tar -xvf potrace-1.16.tar.gz
cd potrace-1.16
./configure --with-libpotrace
Expand Down
13 changes: 8 additions & 5 deletions CMakeLists.txt
@@ -1,13 +1,13 @@
cmake_minimum_required(VERSION 3.15)
project(Swiftray VERSION 1.0.2)
project(Swiftray VERSION 1.1.0)
message("System Name: ${CMAKE_SYSTEM_NAME}")

set(VERSION_MAJOR 1)
set(VERSION_MINOR 0)
set(VERSION_BUILD 2)
set(VERSION_MINOR 1)
set(VERSION_BUILD 0)
set(VERSION_BETA 1) #x
set(VERSION_SUFFIX "") #-beta.x
set(VER_PRODUCTVERSION_STR "1.0.2") #1.0.0-beta.x
set(VER_PRODUCTVERSION_STR "1.1.0") #1.0.0-beta.x

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_AUTOMOC ON)
Expand Down Expand Up @@ -143,14 +143,17 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
endif ()

add_subdirectory(src/canvas)
add_subdirectory(src/common)
add_subdirectory(src/windows)
add_subdirectory(src/widgets)
add_subdirectory(src/settings)
add_subdirectory(src/shape)
add_subdirectory(src/parser)
add_subdirectory(src/toolpath_exporter)
add_subdirectory(src/connection)
add_subdirectory(src/motion_controller_job)
add_subdirectory(src/machine)
add_subdirectory(src/periph)
add_subdirectory(src/executor)

# ====================== Subdirectory libraries =======================
add_subdirectory(third_party/clipper)
Expand Down
Binary file added i18n/ja-JP.qm
Binary file not shown.

0 comments on commit ced5ee7

Please sign in to comment.