Skip to content

Commit

Permalink
🐛 Fix build issues (#2497)
Browse files Browse the repository at this point in the history
* 📝 Update changelog

* 🐛 Disable armv7 build
  • Loading branch information
moisout authored Dec 19, 2023
1 parent 7840996 commit 94aaa31
Show file tree
Hide file tree
Showing 19 changed files with 2,355 additions and 1,180 deletions.
1 change: 0 additions & 1 deletion .github/workflows/push-build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,4 @@ jobs:
architectures: |
linux/amd64
linux/arm64
linux/arm/v7
secrets: inherit
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
This file is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.14.2]

### Fixed

- Remove miniplayer references causing issues [#2496](https://github.com/ViewTube/viewtube/pull/2496)

### Changed

- Disable arm/v7 build because of vite build issues https://github.com/vitejs/vite/issues/15167 [#2496](https://github.com/ViewTube/viewtube/pull/2496)

### Added

- Upgrade dependencies [#2496](https://github.com/ViewTube/viewtube/pull/2496)

## [0.14.1]

### Fixed
Expand Down Expand Up @@ -353,7 +367,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[unreleased]: https://github.com/viewtube/viewtube/compare/v0.14.1...development
[unreleased]: https://github.com/viewtube/viewtube/compare/v0.14.2...development
[0.14.2]: https://github.com/viewtube/viewtube/compare/v0.14.1...v0.14.2
[0.14.1]: https://github.com/viewtube/viewtube/compare/v0.14.0...v0.14.1
[0.14.0]: https://github.com/viewtube/viewtube/compare/v0.13.1...v0.14.0
[0.13.1]: https://github.com/viewtube/viewtube/compare/v0.13.0...v0.13.1
Expand Down
10 changes: 0 additions & 10 deletions client/components/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -176,16 +176,6 @@ const videoQualities = ['144p', '240p', '360p', '720p', '1080p', '1440p', '2160p
</div>
</div>

<h2><VTIcon name="mdi:window-restore" />Miniplayer</h2>
<SwitchButton
:value="settingsStore.miniplayer"
:label="'Enable miniplayer'"
:small-label="'Not working at the moment'"
:disabled="true"
:right="true"
@valuechange="val => settingsStore.setMiniplayer(val)"
/>

<h2><VTIcon name="mdi:home" />Homescreen</h2>
<SwitchButton
:value="settingsStore.showHomeSubscriptions"
Expand Down
293 changes: 0 additions & 293 deletions client/components/miniplayer/Miniplayer.vue

This file was deleted.

2 changes: 0 additions & 2 deletions client/composables/vtFetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ export const useVtFetch = () => {
authority: 'nuxtApp'
});

console.log('using nestApp.inject for ', request.toString(), 'external: ', options?.external);

return destr(response.body) as MappedType<R, T>;
} else {
const response = await ofetch.raw(request, requestOptions);
Expand Down
Loading

0 comments on commit 94aaa31

Please sign in to comment.