Skip to content

Commit

Permalink
Fix CX II compat
Browse files Browse the repository at this point in the history
  • Loading branch information
lights0123 committed Sep 30, 2020
1 parent 4b95b02 commit ad12982
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "n-link",
"description": "Free, cross-platform, CX-II compatible computer linking program for the TI-Nspire",
"version": "0.1.3",
"version": "0.1.4",
"private": true,
"scripts": {
"lint": "vue-cli-service lint",
Expand Down
26 changes: 13 additions & 13 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "n-link"
version = "0.1.3"
version = "0.1.4"
description = "Free, cross-platform, CX-II compatible computer linking program for the TI-Nspire"
authors = [ "Ben Schattinger <[email protected]>" ]
license = "GPL-3.0"
Expand Down
2 changes: 1 addition & 1 deletion src/components/CalcInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import fileSize from "filesize";
@Component
export default class FileView extends Vue {
@Prop({type: Object, required: true}) private info!: Info;
@Prop({type: [Object, String], required: true}) private dev!: DevId | string;
@Prop({type: String, required: true}) private dev!: string;
refreshing = false;
formatSize(size: number) {
Expand Down
4 changes: 2 additions & 2 deletions src/components/FileData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
</div>
<div class="flex-grow"/>
<div class="pb-4">
<el-popover v-if="path" width="170" popper-class="focus:outline-none" v-model="createDirPopup" @show="newName = ''">
<el-popover width="170" popper-class="focus:outline-none" v-model="createDirPopup" @show="newName = ''">
<button slot="reference" class="mt-4 button w-full text-sm">
Create directory
</button>
Expand Down Expand Up @@ -88,7 +88,7 @@ export default class FileData extends Vue {
@Prop({type: Array, default: () => ([])}) private files!: FileInfo[];
@Prop({type: String, required: true}) private path!: string;
@Prop({type: Boolean, default: false}) private showHidden!: boolean;
@Prop({type: [Object, String], required: true}) private dev!: DevId | string;
@Prop({type: String, required: true}) private dev!: string;
newName = '';
renamePopup = false;
deletePopup = false;
Expand Down

0 comments on commit ad12982

Please sign in to comment.