Skip to content

Commit

Permalink
Merge d558d46 into 24f05d8
Browse files Browse the repository at this point in the history
  • Loading branch information
kingster authored Feb 15, 2023
2 parents 24f05d8 + d558d46 commit 64b62f2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
continue-on-error: true
- name: Set vars
id: vars
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Build and Push tinyphone_base to registry
if: contains(steps.changed_files.outputs.modified, 'Dockerfile.base')
run: |
Expand Down
4 changes: 2 additions & 2 deletions tinyphone-osx/Tinyphone.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@
/usr/local/lib,
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 36.0.0.82;
MARKETING_VERSION = 36.0.0.83;
OTHER_CPLUSPLUSFLAGS = (
"$(OTHER_CFLAGS)",
"-DBOOST_SYSTEM_DYN_LINK",
Expand Down Expand Up @@ -678,7 +678,7 @@
/usr/local/lib,
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 36.0.0.82;
MARKETING_VERSION = 36.0.0.83;
OTHER_CPLUSPLUSFLAGS = (
"$(OTHER_CFLAGS)",
"-DBOOST_SYSTEM_DYN_LINK",
Expand Down
1 change: 1 addition & 0 deletions tinyphone/server.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ struct TinyPhoneMiddleware
res.add_header("Access-Control-Allow-Origin", "*");
res.add_header("Access-Control-Allow-Methods", "OPTIONS, GET, HEAD, POST, PUT, DELETE");
res.add_header("Access-Control-Request-Headers", "Content-Type");
res.add_header("Access-Control-Allow-Headers", "Content-Type");
res.end();
}
}
Expand Down
4 changes: 2 additions & 2 deletions tinyphone/stampver.inf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
;StampVer information file
FileVersion=36.0.0.82
ProductVersion=36.0.0.82
FileVersion=36.0.0.83
ProductVersion=36.0.0.83
FileFormat=%a.%b.%c
ProductFormat=%a.%b.%c

0 comments on commit 64b62f2

Please sign in to comment.