forked from duplicati/duplicati
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented two new build channels: beta and canary.
Updated build system to allow building various types of releases.
- Loading branch information
Showing
25 changed files
with
262 additions
and
44 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
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 |
---|---|---|
|
@@ -26,7 +26,9 @@ public enum ReleaseType | |
{ | ||
Unknown, | ||
Stable, | ||
Beta, | ||
Experimental, | ||
Canary, | ||
Nightly, | ||
Debug | ||
} | ||
|
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
2 changes: 1 addition & 1 deletion
2
Duplicati/Server/webroot/ngax/scripts/controllers/AboutController.js
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
2 changes: 1 addition & 1 deletion
2
Duplicati/Server/webroot/ngax/scripts/controllers/AppController.js
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
2 changes: 1 addition & 1 deletion
2
Duplicati/Server/webroot/ngax/scripts/controllers/UpdateChangelogController.js
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
17 changes: 16 additions & 1 deletion
17
Duplicati/Server/webroot/ngax/scripts/services/BrandingService.js
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,3 +1,18 @@ | ||
backupApp.service('BrandingService', function() { | ||
this.appName = "Duplicati"; | ||
|
||
var state = { 'appName': 'Duplicati', 'appSubtitle': null }; | ||
this.state = state; | ||
|
||
this.watch = function(scope, m) { | ||
scope.$on('brandingservicechanged', function() { | ||
if (m) m(); | ||
|
||
$timeout(function() { | ||
scope.$digest(); | ||
}); | ||
}); | ||
|
||
if (m) $timeout(m); | ||
return state; | ||
}; | ||
}); |
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,5 +1,5 @@ | ||
<div ng-controller="AboutController"> | ||
<h1>About {{appName}}</h1> | ||
<h1>About {{brandingService.appName}}</h1> | ||
<ul class="tabs"> | ||
<li ng-class="{active: Page=='general'}"><a href ng-click="Page='general'">General</a></li> | ||
<li ng-class="{active: Page=='changelog'}"><a href ng-click="Page='changelog'">Changelog</a></li> | ||
|
@@ -8,10 +8,10 @@ <h1>About {{appName}}</h1> | |
</ul> | ||
|
||
<div ng-show="Page == 'general'"> | ||
<div>{{appName}} was primarily developed by <a href="mailto:[email protected]">Kenneth Skovhede</a> and <a href="mailto:[email protected]">Rene Stach</a>. {{appName}} can be downloaded from <a href="http://www.duplicati.com" target="blank">duplicati.com</a>. {{appName}} is licensed under the <a href="https://www.gnu.org/licenses/lgpl.html">GNU Lesser General Public License</a>.</div> | ||
<div>{{brandingService.appName}} was primarily developed by <a href="mailto:[email protected]">Kenneth Skovhede</a> and <a href="mailto:[email protected]">Rene Stach</a>. {{brandingService.appName}} can be downloaded from <a href="http://www.duplicati.com" target="blank">duplicati.com</a>. {{brandingService.appName}} is licensed under the <a href="https://www.gnu.org/licenses/lgpl.html">GNU Lesser General Public License</a>.</div> | ||
|
||
<div> </div> | ||
<div>You are currently running {{appName}} {{sysinfo.ServerVersionName || 'unknown'}}</div> | ||
<div>You are currently running {{brandingService.appName}} {{sysinfo.ServerVersionName || 'unknown'}}</div> | ||
|
||
<div ng-show="state.updatedVersion != null && !state.updateReady && state.updaterState == 'Waiting'"> | ||
Update <a href ng-click="doShowUpdateChangelog()">{{state.updatedVersion}}</a> is available, <a href ng-click="doStartUpdateDownload()">download now</a> | ||
|
@@ -36,7 +36,7 @@ <h1>About {{appName}}</h1> | |
</div> | ||
|
||
<div ng-show="Page == 'licenses'" class="licenses"> | ||
{{appName}} is using the following third party libraries: | ||
{{brandingService.appName}} is using the following third party libraries: | ||
<ul> | ||
<li ng-show="Licenses == null">Loading ...</li> | ||
<li ng-repeat="item in Licenses" class="licenseentry"> | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"ReleaseType": "Beta", | ||
} |
Oops, something went wrong.