diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..c63a625 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,6 @@ +FROM gitpod/workspace-full + +RUN sudo apt-get update \ + && sudo apt-get install -y \ + dh-make debhelper devscripts\ + && sudo rm -rf /var/lib/apt/lists/* \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..970eca6 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,12 @@ +image: + file: .gitpod.Dockerfile + +# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/config-ports/ +ports: + - port: 3000 + onOpen: open-preview + +# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/ +tasks: + - init: echo 'init script' # runs during prebuild + command: echo 'start script' diff --git a/src/motorcommon.h b/src/motorcommon.h index 3f80d43..546ad74 100644 --- a/src/motorcommon.h +++ b/src/motorcommon.h @@ -23,7 +23,7 @@ // #define LOCALE_DIR "/usr/local/share/locale/" // #define SHARE_DIR "/usr/local/share/motor/" -#define VERSION "0.0.0" +#define VERSION "3.5.2" #define GNUMAKE "gmake" #endif