Skip to content

Commit

Permalink
Release 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Obermann authored Mar 13, 2019
2 parents 88691e9 + 430c942 commit a4852d4
Show file tree
Hide file tree
Showing 12 changed files with 8,037 additions and 265 deletions.
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 1.0.3

- Renamed Optolyth to Optolith to be in line with all other locations where the name occurs.

## Linux

- Fixed glibc-related issue.
- Moved from tar.gz to AppImage to provide auto-update support.

# 1.0.2

- Fixed issue with rendering list items of advantages/disadvantages/special abilities.
Expand Down
2 changes: 1 addition & 1 deletion app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>Optolyth</title>
<title>Optolith</title>

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />

Expand Down
16 changes: 8 additions & 8 deletions electron-builder.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"appId": "lukasobermann.optolyth",
"productName": "Optolyth",
"appId": "lukasobermann.optolith",
"productName": "Optolith",
"copyright": "This product was created under a license. Das Schwarze Auge and its logo as well as Aventuria, Dere, Myranor, Riesland, Tharun and Uthuria and their logos are trademarks of Significant GbR. The title and contents of this book are protected under the copyright laws of the United States of America. No part of this publication may be reproduced, stored in retrieval systems or transmitted, in any form or by any means, whether electronic, mechanical, photocopy, recording, or otherwise, without prior written consent by Ulisses Spiele GmbH, Waldems. This publication includes material that is protected under copyright laws by Ulisses Spiele and/or other authors. Such material is used under the Community Content Agreement for the SCRIPTORIUM AVENTURIS. All other original materials in this work is copyright 2017-present by Lukas Obermann and published under the Community Content Agreement for the SCRIPTORIUM AVENTURIS.",
"files": [
"app/**/*",
Expand All @@ -17,37 +17,37 @@
}
],
"icon": "app/icon.ico",
"artifactName": "OptolythSetup_${version}.${ext}"
"artifactName": "OptolithSetup_${version}.${ext}"
},
"nsis": {
"perMachine": true,
"differentialPackage": true
},
"linux": {
"category": "RolePlaying",
"executableName": "Optolyth",
"executableName": "Optolith",
"icon": "app",
"target": [
{
"target": "tar.gz",
"target": "AppImage",
"arch": [
"x64",
"ia32"
]
}
],
"artifactName": "Optolyth_${version}_${arch}.${ext}"
"artifactName": "Optolith_${version}_${arch}.${ext}"
},
"mac": {
"category": "public.app-category.role-playing-games",
"type": "distribution",
"icon": "app/icon.icns",
"target": "default",
"artifactName": "Optolyth_${version}.${ext}"
"artifactName": "Optolith_${version}.${ext}"
},
"publish": {
"provider": "generic",
"url": "http://cha5app.dsa-sh.de/releases/${os}",
"url": "https://update.optolith.app/${os}",
"channel": "latest"
}
}
28 changes: 16 additions & 12 deletions electron-builder.test.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"appId": "lukasobermann.optolyth",
"productName": "Optolyth Insider",
"appId": "lukasobermann.optolith",
"productName": "Optolith",
"copyright": "This product was created under a license. Das Schwarze Auge and its logo as well as Aventuria, Dere, Myranor, Riesland, Tharun and Uthuria and their logos are trademarks of Significant GbR. The title and contents of this book are protected under the copyright laws of the United States of America. No part of this publication may be reproduced, stored in retrieval systems or transmitted, in any form or by any means, whether electronic, mechanical, photocopy, recording, or otherwise, without prior written consent by Ulisses Spiele GmbH, Waldems. This publication includes material that is protected under copyright laws by Ulisses Spiele and/or other authors. Such material is used under the Community Content Agreement for the SCRIPTORIUM AVENTURIS. All other original materials in this work is copyright 2017-present by Lukas Obermann and published under the Community Content Agreement for the SCRIPTORIUM AVENTURIS.",
"artifactName": "OptolythInsider_${version}.${ext}",
"files": [
"app/**/*",
"CHANGELOG.md"
Expand All @@ -18,27 +17,32 @@
}
],
"icon": "app/icon.ico",
"artifactName": "OptolythInsiderSetup_${version}.${ext}"
"artifactName": "OptolithInsiderSetup_${version}.${ext}"
},
"nsis": {
"perMachine": true,
"differentialPackage": true
},
"linux": {
"category": "RolePlaying",
"executableName": "OptolythInsider",
"executableName": "OptolithInsider",
"icon": "app",
"target": "tar.gz"
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
],
"artifactName": "OptolithInsider_${version}_${arch}.${ext}"
},
"mac": {
"category": "public.app-category.role-playing-games",
"type": "distribution",
"icon": "app/icon.icns",
"target": "default"
"appImage": {
"license": "LICENSE"
},
"publish": {
"provider": "generic",
"url": "http://cha5app.dsa-sh.de/releases/${os}",
"url": "https://update.optolith.app/insider/${os}",
"channel": "alpha"
}
}
Loading

0 comments on commit a4852d4

Please sign in to comment.