-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1286 from ebkr/develop
Develop
- Loading branch information
Showing
42 changed files
with
1,047 additions
and
795 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
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,7 +1,7 @@ | ||
import VersionNumber from '../model/VersionNumber'; | ||
|
||
export default class ManagerInformation { | ||
public static VERSION: VersionNumber = new VersionNumber('3.1.47'); | ||
public static VERSION: VersionNumber = new VersionNumber('3.1.48'); | ||
public static IS_PORTABLE: boolean = false; | ||
public static APP_NAME: string = "r2modman"; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<script lang="ts"> | ||
import { Component, Vue } from "vue-property-decorator"; | ||
import R2Error from "../../model/errors/R2Error"; | ||
@Component | ||
export default class ErrorModal extends Vue { | ||
get error(): R2Error | null { | ||
return this.$store.state.error.error; | ||
} | ||
get name() { | ||
return this.error ? this.error.name : ''; | ||
} | ||
get message() { | ||
return this.error ? this.error.message : ''; | ||
} | ||
get solution() { | ||
return this.error ? this.error.solution : ''; | ||
} | ||
close() { | ||
this.$store.commit('error/discardError'); | ||
} | ||
} | ||
</script> | ||
|
||
<template> | ||
<div v-if="error !== null" id="errorModal" class="modal z-top is-active"> | ||
<div class="modal-background" @click="close"></div> | ||
<div class="modal-content"> | ||
<div class="notification is-danger"> | ||
<h3 class="title">Error</h3> | ||
<h5 class="title is-5">{{name}}</h5> | ||
<p>{{message}}</p> | ||
<div v-if="solution"> | ||
<h5 class="title is-5">Suggestion</h5> | ||
<p>{{solution}}</p> | ||
</div> | ||
</div> | ||
</div> | ||
<button class="modal-close is-large" aria-label="close" @click="close"></button> | ||
</div> | ||
</template> | ||
|
||
<style scoped lang="scss"> | ||
p + div { | ||
margin-top: 1.5rem; | ||
} | ||
</style> |
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
Oops, something went wrong.