Dominik Deák 4 years ago
commit 2f40d80a42
  1. 9
      .github/ISSUE_TEMPLATE/binary_request.md
  2. 6
      .github/ISSUE_TEMPLATE/bug_report.md
  3. 9
      .github/ISSUE_TEMPLATE/update_request.md
  4. 4
      Scripts/Build/BuildDarwin.sh
  5. 5
      Scripts/Detail/Config.py
  6. 2
      license.md
  7. 2
      readme.md

@ -0,0 +1,9 @@
---
name: Binary Request
about: Request an update for Synergy binaries.
title: 'Binary Request: [SPECIFY VERSION HERE]'
labels: Update
assignees: ''
---
Write additional notes here.

@ -1,6 +1,6 @@
---
name: Bug Report
about: Create a bug report if something is broken in the build system
about: Create a bug report if something is broken in the build system.
title: ''
labels: Bug
assignees: ''
@ -8,7 +8,7 @@ assignees: ''
Provide a descriptive summary of the issue.
**NOTE:** Do not submit bug reports for Synergy here. Only submit issues regarding build scripts relating to this repository.
**NOTE:** Do not submit bug reports for the Synergy application here. Only submit issues relating to the build scripts in this repository.
### Steps to Reproduce
@ -26,4 +26,4 @@ Describe what actually happened after completing the steps above.
### Additional Notes
Provide additional information, such as references to related problems or workarounds.
Provide additional information, such as references to related problems, workarounds, or log text formatted inside a [code quoting block](https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax#quoting-code).

@ -1,9 +0,0 @@
---
name: Update Request
about: Request an update for Synergy binaries
title: 'Update Request: [SPECIFY VERSION HERE]'
labels: Update
assignees: ''
---
Write additional notes here.

@ -20,9 +20,9 @@ buildApplication() {
make -j || exit 1
make install/strip || exit 1
macdeployqt "${productBuildPath}/bundle/Synergy.app" || exit 1
"${libQtPath}/bin/macdeployqt" "${productBuildPath}/bundle/Synergy.app" || exit 1
rsync -a --delete "${productBuildPath}/bundle/Synergy.app" "${binariesPath}/${productName}.app" || exit 1
rsync -av --delete "${productBuildPath}/bundle/Synergy.app/" "${binariesPath}/${productName}.app/" || exit 1
popd

@ -168,7 +168,4 @@ class Configuration():
return dict( ( name, getattr( self, name ) ) for name in dir( self ) if not callable( getattr( self, name ) ) and not name.startswith( '__' ) )
scriptPath = utility.joinPath( utility.basePathAtSource( __file__ ), ".." )
configPath = utility.joinPath( scriptPath, "config.txt" )
config = Configuration( configPath )
config = Configuration( utility.joinPath( utility.basePathAtSource( __file__ ), "..", "config.txt" ) )

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2018 DEAK Software
Copyright (c) 2020 DEAK Software
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

@ -18,7 +18,7 @@ Binaries are available for the following platforms:
* Linux Mint 20 Ulyana: `.deb`, `.rpm`, `.AppImage`
* Windows 7: `.msi`, portable `.zip`
See [Releases](https://github.com/DEAKSoftware/Synergy-Binaries/releases) for additional versions. If you can't locate a binary package for your particular distribution, try building the project yourself.
See [Releases](https://github.com/DEAKSoftware/Synergy-Binaries/releases) for additional versions. If a particular version is missing, [create a new issue](https://github.com/DEAKSoftware/Synergy-Binaries/issues/new/choose) to request new binaries. If you can't locate a binary package for your particular distribution, you might want to try building the project yourself.
## Building

Loading…
Cancel
Save