-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix issue with main display not being :0 * Fix the deb with keyboard-colors.json * Update the changelog * Might as well make this an officialish release * Update the readme * Add manual.tgz to makefile * typo * wtf, learn to type rob * Add manual.tgz to github actions * Fix contact address * Fix deb a little bit * Update version file
- Loading branch information
1 parent
434151d
commit 6358ce7
Showing
22 changed files
with
161 additions
and
782 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,57 @@ | ||
.PHONY: clean | ||
|
||
SERVICE = keyboard-color | ||
BIN = ${DESTDIR}/usr/bin/keyboard-color | ||
UNIT = ${DESTDIR}/lib/systemd/system/keyboard-colors.service | ||
CONFIG = ${DESTDIR}/etc/keyboard-color.json | ||
CONFIG = ${DESTDIR}/etc/keyboard-colors.json | ||
COPYRIGHT = ${DESTDIR}/usr/share/doc/s76-keyboard-colors/copyright | ||
|
||
release: csharp/keyboards/*.cs csharp/keyboards/*/*.cs csharp/keyboards/keyboards.csproj version | ||
./version | ||
${MAKE} ${SERVICE} | ||
mv ${SERVICE} release | ||
|
||
${SERVICE}: csharp/keyboards/*.cs csharp/keyboards/*/*.cs csharp/keyboards/keyboards.csproj | ||
$(SERVICE): csharp/keyboards/*.cs csharp/keyboards/*/*.cs csharp/keyboards/keyboards.csproj | ||
cd csharp/keyboards && dotnet publish -r linux-x64 -c Release -o ${SERVICE} | ||
mv csharp/keyboards/${SERVICE}/${SERVICE} ${SERVICE} | ||
|
||
${BIN}: release | ||
$(BIN): release | ||
mkdir -p ${shell dirname ${BIN}} | ||
cp release ${BIN} | ||
|
||
${UNIT}: keyboard-colors.service | ||
$(UNIT): keyboard-colors.service | ||
mkdir -p ${shell dirname ${UNIT}} | ||
cp keyboard-colors.service ${UNIT} | ||
|
||
${CONFIG}: csharp/keyboards/settings.release.json | ||
$(CONFIG): csharp/keyboards/settings.release.json | ||
mkdir -p ${shell dirname ${CONFIG}} | ||
cp csharp/keyboards/settings.release.json ${CONFIG} | ||
|
||
${COPYRIGHT}: LICENSE | ||
$(COPYRIGHT): LICENSE | ||
mkdir -p ${shell dirname ${COPYRIGHT}} | ||
cp LICENSE ${COPYRIGHT} | ||
|
||
../s76-keyboard-colors_1.0_amd64.deb: csharp/keyboards/*.cs csharp/keyboards/*/*.cs csharp/keyboards/keyboards.csproj debian/* csharp/keyboards/settings.release.json keyboard-colors.service | ||
debuild -b -us -uc | ||
|
||
package.deb: ../s76-keyboard-colors_1.0_amd64.deb | ||
cp ../s76-keyboard-colors_1.0_amd64.deb package.deb | ||
cp ../s76-keyboard-colors_1.1.0_amd64.deb package.deb | ||
|
||
manual.tgz: release keyboard-colors.service csharp/keyboards/settings.release.json | ||
mkdir -p manual | ||
cp -f release manual/ | ||
cp -f keyboard-colors.service manual/ | ||
cp -f csharp/keyboards/settings.release.json manual/ | ||
tar -cvzf manual.tgz manual | ||
|
||
clean: | ||
cd csharp/keyboards && dotnet clean | ||
cd csharp/version && dotnet clean | ||
cd csharp/UnitTests && dotnet clean | ||
rm -rf ${SERVICE} release version package.deb | ||
.PHONY: clean | ||
|
||
version: csharp/version/*.cs csharp/version/version.csproj | ||
cd csharp/version && dotnet publish -r linux-x64 -c Release -o version | ||
mv csharp/version/version/version version | ||
|
||
install: debian/control debian/changelog debian/rules ${COPYRIGHT} ${CONFIG} ${UNIT} ${BIN} | ||
install: debian/control debian/changelog debian/rules $(COPYRIGHT) $(CONFIG) $(UNIT) $(BIN) | ||
.PHONY: install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.1.0-beta.5 | ||
1.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<Router AppAssembly="@typeof(Program).Assembly"> | ||
<Found Context="routeData"> | ||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" /> | ||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/> | ||
</Found> | ||
<NotFound> | ||
<LayoutView Layout="@typeof(MainLayout)"> | ||
<p>Sorry, there's nothing at this address.</p> | ||
</LayoutView> | ||
</NotFound> | ||
</Router> | ||
</Router> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,5 @@ | |
{ | ||
collapseNavMenu = !collapseNavMenu; | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.