Merge branch 'VueTubeApp:main' into main

This commit is contained in:
Danik2343 2022-07-18 00:54:58 +03:00 committed by GitHub
commit b08de7f9aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
59 changed files with 1404 additions and 321 deletions

View File

@ -2,10 +2,6 @@
<!-- // TODO: down: () => minimize, -->
<div
ref="vidcontainer"
v-touch="{
right: () => (contain = false),
left: () => (contain = true),
}"
class="d-flex flex-column black"
style="position: relative"
:style="{
@ -61,6 +57,8 @@
down: () => {
if (isFullscreen) fullscreenHandler(true);
},
right: () => (contain = true),
left: () => (contain = false),
}"
text
tile
@ -92,6 +90,8 @@
down: () => {
if (isFullscreen) fullscreenHandler(true);
},
right: () => (contain = false),
left: () => (contain = true),
}"
text
tile

View File

@ -30,18 +30,8 @@
}"
>
<div
class="d-flex flex-column justify-center align-center"
style="
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: linear-gradient(
var(--v-background-base) -1000%,
#00000000 1000%
);
"
class="d-flex flex-column justify-center align-center background-opaque"
style="position: absolute; top: 0; right: 0; width: 50%; height: 100%"
>
<div>420</div>
<v-icon>mdi-playlist-play</v-icon>

View File

@ -245,6 +245,14 @@ export default {
margin: 0 !important;
}
.container-max-height {
min-height: calc(
100vh - 8rem - env(safe-area-inset-top) - env(safe-area-inset-bottom)
) !important;
}
.background-opaque {
background: linear-gradient(var(--v-background-base) -1000%, #00000000 1000%);
}
.border-primary {
border: 2px solid var(--v-primary-base) !important;
}

View File

@ -66,11 +66,11 @@ export default {
},
themes: {
light: {
primary: "#016a49",
primary: "#136458",
background: "#ffffff",
},
dark: {
primary: "#7CD6AF",
primary: "#00d7cd",
background: "#000000",
},
},

View File

@ -1,11 +1,11 @@
<template>
<div>
<div style="margin: 1em">
<v-btn style="width: 100%" class="primary text-none" @click="pickFile()"
><v-icon style="margin-right: 0.5em">mdi-sd</v-icon> Install from
storage</v-btn
>
<input type="file" id="filePicker" accept="js" />
<v-btn style="width: 100%" class="primary text-none" @click="pickFile()">
<v-icon style="margin-right: 0.5em">mdi-sd</v-icon>
Install from storage
</v-btn>
<input type="file" id="filePicker" accept="js,.js" />
</div>
<center v-if="plugins.length == 0" style="margin-top: 2em">
@ -13,46 +13,20 @@
<h2>No plugins installed</h2>
</center>
<!-- sorry for the mess, I will make a dumb (styles only) standardized card component later - Nik -->
<div
v-for="(plugin, index) in plugins"
:key="index"
flat
class="card d-flex mb-4 background"
:class="$vuetify.theme.dark ? 'lighten-1' : 'darken-1'"
:style="{
borderRadius: `${$store.state.tweaks.roundTweak / 2}rem`,
margin: $store.state.tweaks.roundTweak > 0 ? '0 1rem' : '0',
padding:
$store.state.tweaks.roundTweak > 0
? '.75rem 0rem .75rem 1rem'
: '.75rem .75rem .75rem 1.5rem',
}"
>
<div>
<v-card-title class="pa-0">
{{ plugin.manifest.name }}
{{ plugin.manifest.version }}
</v-card-title>
<v-card-text
class="pa-0 mb-3 background--text"
:class="$vuetify.theme.dark ? 'text--lighten-4' : 'text--darken-4'"
>
by {{ plugin.manifest.author }}
{{ plugin.manifest.license ? `(${plugin.manifest.license})` : "" }}
</v-card-text>
<v-card-text class="pa-0">
{{ plugin.manifest.description }}
</v-card-text>
</div>
<v-switch
disabled
style="pointer-events: none"
class="my-0"
persistent-hint
inset
/>
</div>
<!-- Plugin List Renderer -->
<v-card v-for="(plugin, index) in plugins" :key="index">
<v-card-title>{{ plugin }}</v-card-title>
<v-card-actions>
<v-btn style="width: 100%" class="error text-none" @click="remove(plugin)">
<v-icon style="margin-right: 0.5em">mdi-delete</v-icon>
Uninstall
</v-btn>
</v-card-actions>
</v-card>
<!-- End Plugin List Renderer -->
</div>
</template>
@ -79,16 +53,21 @@ export default {
const file = document.getElementById("filePicker").files[0];
const contents = await vm.readFileContent(file);
await vm.$tppl.addPlugin(contents);
this.rebuildList();
};
this.rebuildList();
},
methods: {
readFileContent(file) {
const reader = new FileReader();
return new Promise((resolve, reject) => {
reader.onload = (event) => resolve(event.target.result);
reader.onerror = (error) => reject(error);
reader.readAsText(file);
});
async rebuildList() {
const pluginsData = await this.$tppl.list;
this.plugins = pluginsData.files;
},
async remove(plugin) {
await this.$tppl.removePlugin(plugin);
this.rebuildList();
},
pickFile() {

View File

@ -1,14 +1,7 @@
<template>
<client-only>
<!-- !IMPORTANT: don't let autoformatter format this style to multiline or else it breaks ¯\_()_/¯ -->
<div
class="d-flex flex-column justify-end"
style="
min-height: calc(
100vh - 8rem - env(safe-area-inset-top) - env(safe-area-inset-bottom)
) !important;
"
>
<div class="container-max-height d-flex flex-column justify-end">
<!-- ----Background Colors---- -->
<v-radio-group v-model="$vuetify.theme.currentTheme.background">
<div
@ -191,12 +184,6 @@ export default {
lang: {},
};
},
mounted() {
this.lang = this.$lang("mods").theme;
this.backgroundsLight[0].name = this.lang.normal;
this.backgroundsDark[0].name = this.lang.dark;
this.backgroundsDark[1].name = this.lang.black;
},
watch: {
// also triggers background and primary watcher, unless primary colors match
"$vuetify.theme.dark"(value) {
@ -235,6 +222,12 @@ export default {
}
},
},
mounted() {
this.lang = this.$lang("mods").theme;
this.backgroundsLight[0].name = this.lang.normal;
this.backgroundsDark[0].name = this.lang.dark;
this.backgroundsDark[1].name = this.lang.black;
},
beforeMount() {
this.adapt();
},

View File

@ -1,13 +1,6 @@
<template>
<!-- !IMPORTANT: don't let autoformatter format this style to multiline or else it breaks ¯\_()_/¯ -->
<div
class="d-flex flex-column justify-end"
style="
min-height: calc(
100vh - 8rem - env(safe-area-inset-top) - env(safe-area-inset-bottom)
) !important;
"
>
<div class="container-max-height d-flex flex-column justify-end">
<!-- TODO: outer radius -->
<!-- TODO: Dense Navbar -->
<!-- TODO: Disable Top Bar -->
@ -174,9 +167,6 @@ export default {
lang: {},
};
},
mounted() {
this.lang = this.$lang("mods").tweaks;
},
computed: {
roundTweak: {
get() {
@ -203,5 +193,8 @@ export default {
},
},
},
mounted() {
this.lang = this.$lang("mods").tweaks;
},
};
</script>

View File

@ -22,16 +22,15 @@
<v-card v-if="loaded" class="background rounded-0" flat>
<div
v-ripple
class="d-flex justify-space-between align-start px-3 pt-4"
class="d-flex justify-space-between align-start px-4 pt-4"
@click="showMore = !showMore"
>
<div class="d-flex flex-column">
<v-card-title
class="pa-0"
class="pa-0 text-wrap"
style="
font-size: 0.95rem;
line-height: 1.15rem;
overflow-wrap: break-word;
"
v-text="video.title"
v-emoji
@ -56,7 +55,26 @@
<v-icon class="ml-4" v-if="showMore">mdi-chevron-up</v-icon>
<v-icon class="ml-4" v-else>mdi-chevron-down</v-icon>
</div>
<div class="d-flex pl-4">
<div
class="d-flex px-4"
:class="
$store.state.tweaks.roundWatch && $store.state.tweaks.roundTweak > 0
? $vuetify.theme.dark
? 'background lighten-1'
: 'background darken-1'
: ''
"
:style="{
borderRadius: $store.state.tweaks.roundWatch
? `${$store.state.tweaks.roundTweak / 2}rem`
: '0',
margin:
$store.state.tweaks.roundWatch &&
$store.state.tweaks.roundTweak > 0
? '1rem'
: '0',
}"
>
<v-btn
v-for="(item, index) in interactions"
:key="index"
@ -547,4 +565,8 @@ export default {
.keep-spaces {
white-space: pre-wrap;
}
.v-card__title {
word-break: break-word;
}
</style>

View File

@ -18,7 +18,7 @@ const ytApiVal = {
};
const filesystem = {
plugins: "plugins",
plugins: "plugins/",
};
module.exports = {

View File

@ -1,19 +1,26 @@
const packs = {
azerbaijan: require("./languages/azerbaijan"),
"brazilian-portuguese": require("./languages/brazilian-portuguese"),
bulgarian: require("./languages/bulgarian"),
"chinese-simplified": require("./languages/chinese-simplified"),
"chinese-traditional": require("./languages/chinese-traditional"),
dutch: require("./languages/dutch"),
english: require("./languages/english"),
estonian: require("./languages/estonian"),
"french-fr": require("./languages/french-fr"),
german: require("./languages/german"),
indonesian: require("./languages/indonesian"),
italian: require("./languages/italian"),
korean: require("./languages/korean"),
macedonian: require("./languages/macedonian"),
malay: require("./languages/malay"),
dutch: require("./languages/dutch"),
polish: require("./languages/polish"),
romanian: require("./languages/romanian"),
russian: require("./languages/russian"),
spanish: require("./languages/spanish"),
"chinese-traditional": require("./languages/chinese-traditional"),
"chinese-simplified": require("./languages/chinese-simplified"),
"brazilian-portuguese": require("./languages/brazilian-portuguese"),
indonesian: require("./languages/indonesian"),
korean: require("./languages/korean"),
tamil: require("./languages/tamil"),
turkish: require("./languages/turkish"),
ukrainian: require("./languages/ukrainian"),
};
function module(subPack, listPacks) {

View File

@ -12,6 +12,7 @@ module.exports = {
index: {
connecting: "连接中",
plugins: "载入插件中",
launching: "启动中",
},
@ -87,5 +88,6 @@ module.exports = {
enablespb: "启用 SponsorBlock",
thanks: "谢谢使用 VueTube",
enjoy: "祝你有一个愉快的体验",
packageinstaller: "选择要下载的应用包"
},
};

View File

@ -12,6 +12,7 @@ module.exports = {
index: {
connecting: "連接中",
plugins: "載入插件中",
launching: "啟動中",
},
@ -87,5 +88,6 @@ module.exports = {
enablespb: "啟用 SponsorBlock",
thanks: "謝謝使用 VueTube",
enjoy: "祝你有一個愉快的體驗",
packageinstaller: "選擇要下載的套件"
},
};

View File

@ -0,0 +1,93 @@
module.exports = {
name: "Čeština",
global: {
home: "Domů",
subscriptions: "Odběry",
library: "Knihovna",
restart: "Restartovat",
later: "Později",
settingRestart: "Úprava tohoto nastavení vyžaduje restart aplikace pro provedení změn."
},
index: {
connecting: "Připojování",
plugins: "Načítání doplňků",
launching: "Spouštění",
},
settings: {
general: "Obecné",
theme: "Téma",
player: "Přehrávač",
uitweaker: "Rozhraní",
startupoptions: "Možnosti spuštění",
plugins: "Doplňky",
updates: "Aktualizace",
logs: "Protokol",
about: "O aplikaci",
devmode: "Editor registrů",
},
mods: {
general: {
language: "Jatyk",
},
theme: {
normal: "Normální",
adaptive: "Adaptivní",
custom: "Vlastní",
dark: "Tmavé",
black: "Černé",
darkmode: "Tmavý režim",
darkmodetagline: "Bravo Six, Going Dark.",
},
tweaks: {
fullscreen: "Celá obrazovka",
navbarblur: "Rozmazat navigační lištu",
roundedcorners: "Zakulacené rohy",
roundthumbnails: "Zakulacené náhledy",
roundwatchpagecomponents: "Zakulacené komponenty stránky sledování",
radius: "Poloměr",
},
startup: {
defaultpage: "Výchozí stránka",
},
updates: {
install: "Instalovat",
view: "Zobrazit",
latest: "Nejnovější",
installed: "Nainstalováno",
},
logs: {
more: "Více",
},
about: {
appinformation: "Informace o aplikace",
appversion: "Verze aplikace",
deviceinformation: "Informace o zařízení",
platform: "Platforma",
os: "Operační systém",
model: "Model",
manufacturer: "Výrobce",
emulator: "Emulátor",
github: "GitHub",
discord: "Discord",
},
},
events: {
welcome: "Vítejte ve VueTube",
tagline: "Budoucnosti streamování videa",
next: "Další",
updated: "VueTube byl aktualizován!",
awesome: "Úžasné!",
langsetup: "Pojďme si vybrat jazyk!",
featuresetup: "Vyberte si pár funkcí",
enableryd: "Povolit Return YouTube Dislike",
enablespb: "Povolit SponsorBlock",
thanks: "Děkujeme za používání VueTube",
enjoy: "Doufáme, že se vám aplikace bude líbit",
packageinstaller: "Vyberte balíček ke stažení"
},
};

View File

@ -0,0 +1,93 @@
module.exports = {
name: "eesti",
global: {
home: "Avaleht",
subscriptions: "Tellimused",
library: "Kogu",
restart: "Restart",
later: "Hiljem",
settingRestart: "Selle sätte muutmiseks on vaja rakendus taaskäivitada.",
},
index: {
connecting: "Ühendamine",
plugins: "Laeb Pluginaid",
launching: "Käivitamine",
},
settings: {
general: "Üldine",
theme: "Teema",
player: "Pleier",
uitweaker: "UI Modifitseeria",
startupoptions: "Käivitamise Valikud",
plugins: "Pluginad",
updates: "Värskendused",
logs: "Logid",
about: "Meist",
devmode: "Registry Editor",
},
mods: {
general: {
language: "Keel",
},
theme: {
normal: "Normaalne",
adaptive: "Adaptiivne",
custom: "Kohandatav",
dark: "Tume",
black: "Must",
darkmode: "Tume teema",
darkmodetagline: "Bravo Six, Going Dark.",
},
tweaks: {
fullscreen: "Täisekraan",
navbarblur: "Navbar hägustamine",
roundedcorners: "Ümarad Nurgad",
roundthumbnails: "Ümarad pisipildid",
roundwatchpagecomponents: "Ümarad Watch Page Komponendid",
radius: "Raadius",
},
startup: {
defaultpage: "Vaikimisi Leht",
},
updates: {
install: "Installi",
view: "Vaata",
latest: "Uued",
installed: "Installitud",
},
logs: {
more: "Veel",
},
about: {
appinformation: "Rakenduse Info",
appversion: "Rakenduse Versioon",
deviceinformation: "Seadme Ino",
platform: "Platvirm",
os: "Operatsioonisüsteem",
model: "Mudel",
manufacturer: "Tootja",
emulator: "Emulaator",
github: "GitHub",
discord: "Discord",
},
},
events: {
welcome: "Tere tulemast VueTube'i",
tagline: "Videode voogedastude tulevik",
next: "Järgmine",
updated: "VueTube Värskendatud!",
awesome: "Lahe!",
langsetup: "Valime Keele!",
featuresetup: "Valime Nüüd Mõned Funktsioonid!",
enableryd: "Luba Return YouTube Dislike",
enablespb: "Luba SponsorBlock",
thanks: "Täname, et kasutate VueTube'i",
enjoy: "Me loodame, et naudite seda kogemust",
packageinstaller: "Valige Allalaadimise Versioon",
},
};

View File

@ -5,10 +5,14 @@ module.exports = {
home: "Beranda",
subscriptions: "Subscription",
library: "Koleksi",
restart: "Mulai ulang",
later: "Nanti",
settingRestart: "Memodifikasi pengaturan ini membutuhkan tindakan mulai ulang aplikasi untuk menerapkan perubahan.",
},
index: {
connecting: "Menghubungkan",
plugins: "Memuat Plugin",
launching: "Meluncurkan",
},
@ -19,7 +23,7 @@ module.exports = {
uitweaker: "Pengatur UI",
startupoptions: "Opsi Startup",
plugins: "Plugin",
updates: "Pembaharuan",
updates: "Pembaruan",
logs: "Log",
about: "Tentang",
devmode: "Editor Registri",
@ -76,7 +80,14 @@ module.exports = {
welcome: "Selamat Datang di VueTube",
tagline: "Masa depan video streaming",
next: "Lanjut",
updated: "VueTube Diperbaharui!",
updated: "VueTube diperbarui!",
awesome: "Luar Biasa!",
langsetup: "Ayo Pilih Bahasa!",
featuresetup: "Ayo Pilih Beberapa Fitur!",
enableryd: "Hidupkan Return YouTube Dislike",
enablespb: "Hidupkan SponsorBlock",
thanks: "Terima Kasih telah menggunakan VueTube",
enjoy: "Kami harap kamu mendapatkan pengalaman yang luar biasa",
packageinstaller: "Pilih Paket untuk diunduh",
},
};

View File

@ -5,10 +5,14 @@ module.exports = {
home: "Home",
subscriptions: "Iscrizioni",
library: "Raccolta",
restart: "Riavvia ora",
later: "Più tardi",
settingRestart: "Cambiare questa impostazione richiede il riavvio dell'applicazione affinché le modifiche vengano applicate."
},
index: {
connecting: "Connessione",
plugins: "Caricamento Componenti Aggiuntivi",
launching: "Avvio",
},
@ -58,7 +62,6 @@ module.exports = {
logs: {
more: "Più",
},
about: {
appinformation: "Informazioni Applicazione",
appversion: "Versione Applicazione",
@ -79,5 +82,12 @@ module.exports = {
next: "Prossimo",
updated: "VueTube è Stato Aggiornato",
awesome: "Fantastico!",
langsetup: "Scegliamo una lingua!",
featuresetup: "Scegliamo alcune feature!",
enableryd: "Abilita Return YouTube Dislike",
enablespb: "Abilita SponsorBlock",
thanks: "Grazie per aver utilizzato VueTube",
enjoy: "Ci auguriamo che avrai un'esperienza straordinaria",
},
};

View File

@ -7,7 +7,7 @@ module.exports = {
library: "Pustaka",
restart: "Mulakan semula",
later: "Kemudian",
settingRestart: "Penukaran tetapan ini memerlukan apl mulakan semula untuk menggunakan tetapan."
settingRestart: "Mengubah tetapan ini memerlukan apl untuk memulakan semula untuk mengaplikasikan tetapan."
},
index: {
@ -84,9 +84,10 @@ module.exports = {
awesome: "Hebat!",
langsetup: "Sila pilih bahasa anda",
featuresetup: "Sila pilih beberapa ciri",
enableryd: "Hidupkan Return YouTube Dislike",
enablespb: "Hidupkan SponsorBlock",
enableryd: "Dayakan Return YouTube Dislike",
enablespb: "Dayakan SponsorBlock",
thanks: "Terima Kasih kerana Menggunakan VueTube",
enjoy: "Kami harap anda mempunyai yang menakjubkan",
enjoy: "Kami harap anda mempunyai pengalaman yang menakjubkan",
packageinstaller: "Pilih salah satu pakej untuk dimuat turun"
},
};

View File

@ -0,0 +1,93 @@
module.exports = {
name: "Українська",
global: {
home: "Головна",
subscriptions: "Підписки",
library: "Бібліотека",
restart: "Перезапустити",
later: "Пізніше",
settingRestart: "Зміна цього параметра вимагає перезапуску"
},
index: {
connecting: "Підключення",
plugins: "Завантаження плагінів",
launching: "Запуск",
},
settings: {
general: "Загальні",
theme: "Тема",
player: "Відеоплеєр",
uitweaker: "Налаштування UI",
startupoptions: "Параметри запуску",
plugins: "Плагіни",
updates: "Оновлення",
logs: "Журнали",
about: "Про додаток",
devmode: "Редактор реєстру",
},
mods: {
general: {
language: "Мова",
},
theme: {
normal: "Звичайна",
adaptive: "Адаптивна",
custom: "Власна",
dark: "Темна",
black: "Чорна",
darkmode: "Темний режим",
darkmodetagline: "Bravo Six, Going Dark.",
},
tweaks: {
fullscreen: "Повноекранний режим",
navbarblur: "Розмиття навігаційної панелі",
roundedcorners: "Закруглені кути",
roundthumbnails: "Закруглені мініатюри",
roundwatchpagecomponents: "Закруглені компоненти сторінки перегляду",
radius: "Радіус",
},
startup: {
defaultpage: "Домашня сторінка",
},
updates: {
install: "Встановити",
view: "Переглянути",
latest: "Остання",
installed: "Встановлена",
},
logs: {
more: "Більше",
},
about: {
appinformation: "Інформація про додаток",
appversion: "Версія додатку",
deviceinformation: "Інформація про пристрій",
platform: "Платформа",
os: "Операційна система",
model: "Модель",
manufacturer: "Виробник",
emulator: "Емулятор",
github: "GitHub",
discord: "Discord",
},
},
events: {
welcome: "Ласкаво просимо до VueTube",
tagline: "Майбутнє відео-стрімінгу",
next: "Далі",
updated: "VueTube оновлено!",
awesome: "Добре!",
langsetup: "Давайте виберемо мову!",
featuresetup: "Давайте виберемо деякі функції!",
enableryd: "Увімкнути Return YouTube Dislike",
enablespb: "Увімкнути SponsorBlock",
thanks: "Дякуємо за використання VueTube",
enjoy: "Ми сподіваємося, що вам сподобається!",
packageinstaller: "Виберіть пакет для завантаження"
},
};

View File

@ -0,0 +1,93 @@
module.exports = {
name: "Tiếng Việt",
global: {
home: "Home",
subscriptions: "Đăng ký",
library: "Thư viện",
restart: "Khởi động lại",
later: "Để sau",
settingRestart: "Thay đổi cài đặt này yêu cầu khởi động lại để áp dụng các thay đổi."
},
index: {
connecting: "Đang kết nối",
plugins: "Đang tải plugins",
launching: "Đang khởi chạy",
},
settings: {
general: "Chung",
theme: "Chủ đề",
player: "Player",
uitweaker: "Tùy chỉnh UI",
startupoptions: "Tùy chọn khởi động",
plugins: "Plugins",
updates: "Cập nhật",
logs: "Nhật kí",
about: "Về",
devmode: "Chỉnh sửa Registry",
},
mods: {
general: {
language: "Ngôn ngữ",
},
theme: {
normal: "Bình thường",
adaptive: "Tương thích",
custom: "Tùy chỉnh",
dark: "Tối",
black: "Đen",
darkmode: "Chế độ tối",
darkmodetagline: "Tắt đèn thôi",
},
tweaks: {
fullscreen: "Toàn màn hình",
navbarblur: "Làm mờ thanh điều hướng",
roundedcorners: "Bo góc",
roundthumbnails: "Bo góc hình thu nhỏ",
roundwatchpagecomponents: "Bo góc các mục trang xem video",
radius: "Mức độ bo",
},
startup: {
defaultpage: "Trang mặc định",
},
updates: {
install: "Cài đặt",
view: "Xem",
latest: "Mới nhất",
installed: "Đã cài đặt",
},
logs: {
more: "Nhiều hơn",
},
about: {
appinformation: "Thông tin ứng dụng",
appversion: "Phiên bản ứng dụng",
deviceinformation: "Thông tin thiết bị",
platform: "Nền tảng",
os: "Hệ điều hành",
model: "Mã",
manufacturer: "Nhà sản xuất",
emulator: "Máy ảo",
github: "GitHub",
discord: "Discord",
},
},
events: {
welcome: "Chào mừng to VueTube",
tagline: "Tương lai của video streaming",
next: "Tiếp",
updated: "VueTube đã được cập nhật!",
awesome: "Tuyệt vời!",
langsetup: "Chọn một ngôn ngữ!",
featuresetup: "Chọn một số tính năng!",
enableryd: "Bật Return YouTube Dislike",
enablespb: "Bật SponsorBlock",
thanks: "Cảm on đã sủ dụng VueTube",
enjoy: "Chúng mình hi vọng bạn sẽ có một trải nghiệm tuyệt vời",
packageinstaller: "Chọn một phiên bản để tải về"
},
};

View File

@ -25,13 +25,18 @@ const module = {
list: new Promise(async (resolve, reject) => {
await ensureStructure;
const plugins = await Filesystem.readdir({
Filesystem.readdir({
path: fs.plugins,
directory: APP_DIRECTORY,
}).catch((err) => {
})
.then(res => {
resolve(res);
})
.catch(err => {
reject(err);
});
resolve(plugins);
}),
async addPlugin(content) {
@ -40,13 +45,26 @@ const module = {
const fileName = require("./utils").getCpn(); // Im not sure what this is actually meant for but im using it as a random string generator
console.log("Saving Plugin As" + fileName);
await Filesystem.writeFile({
path: fs.plugins + "/" + fileName + ".js",
path: fs.plugins + fileName + ".js",
directory: APP_DIRECTORY,
data: content,
encoding: Encoding.UTF8,
});
resolve();
});
},
async removePlugin(name) {
await ensureStructure;
new Promise(async (resolve, reject) => {
await Filesystem.deleteFile({
path: fs.plugins + name,
directory: APP_DIRECTORY,
});
resolve();
});
},
};
//--- Start ---//

View File

@ -12,6 +12,6 @@
</deviceKey>
</Target>
</targetSelectedWithDropDown>
<timeTargetWasSelectedWithDropDown value="2022-06-24T01:30:58.254901Z" />
<timeTargetWasSelectedWithDropDown value="2022-07-06T20:31:28.319907Z" />
</component>
</project>

View File

@ -0,0 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="44dp"
android:height="44dp"
android:viewportWidth="768"
android:viewportHeight="768">
<path
android:fillColor="#000000"
android:fillType="evenOdd"
android:pathData="M451.76,397.57C462.46,391.42 462.46,375.99 451.76,369.84L413.1,347.59L452.97,329L469.71,338.63L511.9,362.9C527.94,372.13 527.94,395.28 511.9,404.51L469.74,428.76L469.71,428.78L451.64,439.17L411.77,420.58L451.76,397.57ZM330,422.17V439.96V439.97C330.01,452.27 343.31,459.97 353.98,453.83L373.64,442.52L413.51,461.11L371.93,485.04L371.91,485.05L329.97,509.18C313.97,518.38 294,506.83 294,488.38L294,439.96L294,405.39L330,422.17ZM414.83,307.06L374.96,325.65L353.98,313.58L353.97,313.58C343.31,307.45 330,315.14 330,327.45V346.62L294,363.41L294,327.45L294,279.04C294,260.58 313.97,249.03 329.97,258.23L371.93,282.38L414.83,307.06Z" />
</vector>

View File

@ -2,4 +2,5 @@
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_monochrome"/>
</adaptive-icon>

View File

@ -2,4 +2,5 @@
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_monochrome"/>
</adaptive-icon>

View File

@ -2,5 +2,9 @@
<widget version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<access origin="*" />
<feature name="CDVOrientation">
<param name="android-package" value="cordova.plugins.screenorientation.CDVOrientation"/>
</feature>
</widget>

View File

@ -7,7 +7,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath 'com.android.tools.build:gradle:7.2.1'
classpath 'com.google.gms:google-services:4.3.10'
// NOTE: Do not place your application dependencies here; they belong

View File

@ -0,0 +1,98 @@
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package cordova.plugins.screenorientation;
import org.apache.cordova.CallbackContext;
import org.apache.cordova.CordovaPlugin;
import org.json.JSONArray;
import org.json.JSONException;
import android.app.Activity;
import android.content.pm.ActivityInfo;
import android.util.Log;
public class CDVOrientation extends CordovaPlugin {
private static final String TAG = "YoikScreenOrientation";
/**
* Screen Orientation Constants
*/
private static final String ANY = "any";
private static final String PORTRAIT_PRIMARY = "portrait-primary";
private static final String PORTRAIT_SECONDARY = "portrait-secondary";
private static final String LANDSCAPE_PRIMARY = "landscape-primary";
private static final String LANDSCAPE_SECONDARY = "landscape-secondary";
private static final String PORTRAIT = "portrait";
private static final String LANDSCAPE = "landscape";
@Override
public boolean execute(String action, JSONArray args, CallbackContext callbackContext) {
Log.d(TAG, "execute action: " + action);
// Route the Action
if (action.equals("screenOrientation")) {
return routeScreenOrientation(args, callbackContext);
}
// Action not found
callbackContext.error("action not recognised");
return false;
}
private boolean routeScreenOrientation(JSONArray args, CallbackContext callbackContext) {
String action = args.optString(0);
String orientation = args.optString(1);
Log.d(TAG, "Requested ScreenOrientation: " + orientation);
Activity activity = cordova.getActivity();
if (orientation.equals(ANY)) {
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
} else if (orientation.equals(LANDSCAPE_PRIMARY)) {
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
} else if (orientation.equals(PORTRAIT_PRIMARY)) {
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
} else if (orientation.equals(LANDSCAPE)) {
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE);
} else if (orientation.equals(PORTRAIT)) {
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT);
} else if (orientation.equals(LANDSCAPE_SECONDARY)) {
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE);
} else if (orientation.equals(PORTRAIT_SECONDARY)) {
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT);
}
callbackContext.success();
return true;
}
}

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View File

@ -2,5 +2,9 @@
<widget version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<access origin="*" />
<feature name="CDVOrientation">
<param name="ios-package" value="CDVOrientation"/>
</feature>
</widget>

View File

@ -9,16 +9,17 @@ install! 'cocoapods', :disable_input_output_paths => true
def capacitor_pods
pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
pod 'CapacitorCommunityHttp', :path => '..\..\node_modules\@capacitor-community\http'
pod 'CapacitorApp', :path => '..\..\node_modules\@capacitor\app'
pod 'CapacitorDevice', :path => '..\..\node_modules\@capacitor\device'
pod 'CapacitorFilesystem', :path => '..\..\node_modules\@capacitor\filesystem'
pod 'CapacitorHaptics', :path => '..\..\node_modules\@capacitor\haptics'
pod 'CapacitorShare', :path => '..\..\node_modules\@capacitor\share'
pod 'CapacitorSplashScreen', :path => '..\..\node_modules\@capacitor\splash-screen'
pod 'CapacitorStatusBar', :path => '..\..\node_modules\@capacitor\status-bar'
pod 'CapacitorToast', :path => '..\..\node_modules\@capacitor\toast'
pod 'HugotomaziCapacitorNavigationBar', :path => '..\..\node_modules\@hugotomazi\capacitor-navigation-bar'
pod 'CapacitorCommunityHttp', :path => '../../node_modules/@capacitor-community/http'
pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
pod 'CapacitorDevice', :path => '../../node_modules/@capacitor/device'
pod 'CapacitorFilesystem', :path => '../../node_modules/@capacitor/filesystem'
pod 'CapacitorHaptics', :path => '../../node_modules/@capacitor/haptics'
pod 'CapacitorShare', :path => '../../node_modules/@capacitor/share'
pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen'
pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
pod 'CapacitorToast', :path => '../../node_modules/@capacitor/toast'
pod 'HugotomaziCapacitorNavigationBar', :path => '../../node_modules/@hugotomazi/capacitor-navigation-bar'
pod 'CordovaPlugins', :path => '../capacitor-cordova-ios-plugins'
end
target 'App' do

View File

@ -3,10 +3,14 @@
<img src="https://cdn.discordapp.com/attachments/751596360108605500/980418672331988992/VueTube_Dark.svg" alt="VueTube icon" width="500"/>
</a>
</br>
<sub>Logo by <a href="https://github.com/afnzmn">@afnzmn</a></sub> </br>
<details>
<summary>Show Readme credits</summary>
<sub>VueTube Logo by <a href="https://github.com/afnzmn">@afnzmn</a></sub> </br>
<sub>English Readme contributors: <a href="https://github.com/404-Program-not-found">@404-Program-not-found</a>, <a href="https://github.com/Frontesque">@Frontesque</a>, <a href="https://github.com/gayolGate">@gayolGate</a>, <a href="https://github.com/ThatOneCalculator">@ThatOneCalculator</a>, <a href="https://github.com/afnzmn">@afnzmn</a>, <a href="https://github.com/tired6488">@tired6488</a>, <a href="https://github.com/DARKDRAGON532">@DARKDRAGON532</a>, <a href="https://github.com/PickleNik">@PickleNik</a> and <a href="https://github.com/Zyborg777">@Zyborg777</a></sub>
</br>
</br>
</details>
<p align="center">
<strong>A simple and open source video streaming client aimed to recreate ALL the features from their respective apps (and more!)</strong>
</br>
Pronounced View Tube (<code>/ˈvjuːˌtjuːb/</code>)
@ -21,19 +25,19 @@ Pronounced View Tube (<code>/ˈvjuːˌtjuːb/</code>)
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Read this page in other languages: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어](readme.kr.md)
**Read this page in other languages**: [English,](readme.md) [Español,](/readme/readme.es.md) [简体中文,](/readme/readme.zh-hans.md) [繁體中文,](/readme/readme.zh-hant.md) [日本語,](/readme/readme.ja.md) [עִברִית,](/readme/readme.he.md) [Nederlands,](/readme/readme.nl.md) [தமிழ்,](/readme/readme.ta.md) [Bahasa Melayu,](/readme/readme.ms.md) [Македонски,](/readme/readme.mk.md) [Français,](/readme/readme.fr.md) [Português Brasileiro,](/readme/readme.pt-br.md) [Bahasa Indonesia,](/readme/readme.id.md) [Polski,](/readme/readme.pl.md) [Български,](/readme/readme.bg.md) [Italiano,](/readme/readme.it.md) [한국어,](/readme/readme.kr.md) [Tiếng Việt,](/readme/readme.vi.md) [Română](/readme/readme.ro.md)
## Features
<img src="./resources/Features.svg" alt="VueTube icon" height="100"/>
- 🎨 Themes: Light, dark, OLED and all the colors of the rainbow!
- 🖌️ Customizable UI: Customize the themes or even disable some parts of the UI that you don't use
- ⬆️ Auto updates: Be notified when an update is available & downgrade if you don't like it!
- 👁️ Tracking protection: No telemetry data is sent from your device by default
- 📺 Custom video player
- 👎 Return YouTube Dislike - [_More info_](https://returnyoutubedislike.com)
- 💰 SponsorBlock - [_More info_](https://sponsor.ajay.app)
- 🎨 **Themes:** Light, dark, OLED and all the colors of the rainbow!
- 🖌️ **Customizable UI:** Customize the themes or even disable some parts of the UI that you don't use.
- ⬆️ **Auto updates:** Be notified when an update is available & downgrade if you don't like it!
- 👁️ **Tracking protection:** No telemetry data is sent from your device by default. Privacy is neccesary!
- 📺 **Custom video player:** A player integrated in the application with everything you need to be happy, such as 16x speed.
- 👎 **Return YouTube Dislike** - [_More info_](https://returnyoutubedislike.com)
- 💰 **SponsorBlock** - [_More info_](https://sponsor.ajay.app)
## Install
@ -49,13 +53,13 @@ To install the app, please visit [vuetube.app/install](https://www.vuetube.app/i
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.3/VueTube-Canary-June-22-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Pretty unstable, but you get early access to new features | Less bugs than unstable while having more features than stable | Not available yet |
| Pretty unstable, but you get early access to new features | Less bugs than unstable while having more features than stable | Not available yet |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Pretty unstable, but you get early access to new features | Less bugs than unstable while having more features than stable | Not available yet |
| Pretty unstable, but you get early access to new features | Less bugs than unstable while having more features than stable | Not available yet |
</details>
@ -63,11 +67,12 @@ To install the app, please visit [vuetube.app/install](https://www.vuetube.app/i
<img src="./resources/Plans.svg" alt="VueTube icon" height="100"/>
- 🔍 Advanced search
- 🗞️ Local watch history
- ✂️ YouTube Shorts (small videos that last anywhere from 15 to 60 seconds)
- 🧑 Signing in with your Google account
- 🖼️ Picture-in-Picture mode (PiP)
- 🔍 **Advanced search:** Sort results by date, duration, likes or any other factor.
- 🗞️ **Local watch history:** Get your last viewed videos without logging in.
- ✂️ **YouTube Shorts:** Small videos that last anywhere from 15 to 60 seconds.
- 🧑 **Signing in with your Google account**: Login to have a full experience by voting and commenting on videos and subscribing to channels.
- 🖼️ **Picture-in-Picture mode (PiP):** Allows you to watch videos in a floating window when using another app.
- 🧩 **Plugins:** Install third party plugins made by community with useful features!
- And more!
## Screenshots
@ -84,6 +89,39 @@ To install the app, please visit [vuetube.app/install](https://www.vuetube.app/i
</details>
## Progress
<details>
<summary> Click here to display progress </summary>
<br>
**General** | **Player** | [**Extractor**](https://github.com/VueTubeApp/VueTube-Extractor) |
:-: | :-: | :-: |
🟢 Comments (100%) | 🟢 Play / Pause (100%) | 🟢 Search Autocomplete (100%) |
🟢 Description (100%) | 🟢 Tap to show / hide controls (100%) | 🟢 Home page (100%) |
🟢 Home Page (100%) | 🟠 Seekbar / Scrubber (80%) | 🟢 Search (100%)
🟢 RYD Integration (100%) | 🟠 Fullscreen (80%) | 🟠 Video Information (60%) |
🟢 Themes (100%) | 🟠 Resolution Picker (50%) | 🔴 Channels (0%) |
🟢 Watch Page (100%) | 🔴 Miniplayer (0%) | 🔴 Comments (0%) |
🟠 Sponsorblock Integration (95%) | 🔴 Background Play (0%) | 🔴 Live Chat (0%) |
🟠 Auto Update (50%) | 🔴 Picture in Picture (0%) | 🔴 Trending content (0%)
🟠 Channel Page (50%) | 🔴 Captions (0%) | 🔴 Interactions (0%) |
🟠 Community Posts (10%) | 🔴 Cards (0%) | 🔴 Playlists (0%) |
🟠 Customizable Shorts UI (10%) | | 🔴 Notifications (0%)
🟠 Customizable YT Music UI (10%) | | 🔴 Login (0%)
🟠 Customizable UI (30%) | | |
🟠 Libraries Page (10%) | | |
🟠 Replies (50%) | | |
🟠 Third Party Plugins (40%) | | |
🟠 VueTube Player (See progress to the right) | | |
🟠 VueTube Extractor (See progress to the right) | | |
🔴 Local Watch History (0%) | | |
🔴 Subscriptions Page (0%) | | |
🔴 Other Platform Support (0%) | | |
</details>
### Technologies used
<a href="https://capacitorjs.com/solution/vue"><img src="https://cdn.discordapp.com/attachments/953538236716814356/955694368742834176/Capacitator-Dark.svg" height=40/></a> <a href="https://vuetifyjs.com/"><img src="https://cdn.discordapp.com/attachments/810799100940255260/973719873467342908/Vuetify-Dark.svg" height=40/></a> <a href="https://nuxtjs.org/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/NuxtJS-Dark.svg" height=40/></a> <a href="https://vuejs.org/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/VueJS-Dark.svg" height=40/></a> <a href="https://javascript.com/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/JavaScript.svg" height=40/></a> <a href="https://java.com/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/Java-Dark.svg" height=40/></a> <a href="https://gradle.com/"><img src="https://cdn.discordapp.com/attachments/810799100940255260/955691550560636958/Gradle.svg" height=40/></a> <a href="https://developer.apple.com/swift/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/Swift.svg" height=40/></a>

View File

@ -20,11 +20,11 @@
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Прочетете съдържанието на други езици: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
Прочетете съдържанието на други езици: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## Функции
<img src="./resources/readme-bg/Features.bg.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-bg/Features.bg.svg" alt="VueTube icon" height="100"/>
- 🎨 Теми: Светла, Тъмна, OLED, Всички цветове на дъгата
- 🖌️ Персонализиран ПИ: Промяна на основният цвят и на други части от ПИ, в зависимост от личните ви предпочитания!
@ -36,7 +36,7 @@
## Инсталиране
<img src="./resources/readme-bg/Install.bg.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-bg/Install.bg.svg" alt="VueTube icon" height="100"/>
За да инсталирате, моля посетете www.vuetube.app/install
@ -46,13 +46,13 @@
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| С много бъгове, но получавате ранен достъп до най-новите функции | По-малко бъгове от нестабилната, малко повече функции от стабилната | Не е налична докато приложението не бъде достатъчно разработено |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| С много бъгове, но получавате ранен достъп до най-новите функции | По-малко бъгове от нестабилната, малко повече функции от стабилната | Не е налична докато приложението не бъде достатъчно разработено |
@ -60,7 +60,7 @@
## Планове
<img src="./resources/readme-bg/Plans.bg.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-bg/Plans.bg.svg" alt="VueTube icon" height="100"/>
- 🔍 Разширено търсене
- 🗞️ Локално съхранение на историята на гледанията

View File

@ -3,10 +3,14 @@
<img src="https://cdn.discordapp.com/attachments/751596360108605500/980418672331988992/VueTube_Dark.svg" alt="VueTube icon" width="500"/>
</a>
</br>
<details>
<summary>Mostrar créditos del Readme</summary>
<sub>Logo por <a href="https://github.com/afnzmn">@afnzmn</a>, traducción por <a href="https://github.com/gayolgate">@gayolgate</a></sub></br>
<sub>Contribuidores del Readme en Inglés: <a href="https://github.com/404-Program-not-found">@404-Program-not-found</a>, <a href="https://github.com/Frontesque">@Frontesque</a>, <a href="https://github.com/gayolGate">@gayolGate</a>, <a href="https://github.com/ThatOneCalculator">@ThatOneCalculator</a>, <a href="https://github.com/afnzmn">@afnzmn</a>, <a href="https://github.com/tired6488">@tired6488</a>, <a href="https://github.com/DARKDRAGON532">@DARKDRAGON532</a>, <a href="https://github.com/PickleNik">@PickleNik</a> y <a href="https://github.com/Zyborg777">@Zyborg777</a></sub>
</br>
</br>
</details>
<p align="center">
<strong>Un cliente sencillo de streaming de vídeo FOSS diseñado para recrear TODAS las características de sus respectivas aplicaciones (y más) </strong>
</br>
Se pronuncia Viu Tuf (<code>/ˈvjuːˌtjuːb/</code>)
@ -21,23 +25,23 @@ Se pronuncia Viu Tuf (<code>/ˈvjuːˌtjuːb/</code>)
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Leer en otros idiomas: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
**Leer en otros idiomas:** [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## Características
<img src="./resources/readme-es/Features.es.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-es/Features.es.svg" alt="VueTube icon" height="100"/>
- 🎨 Temas: Claro, Oscuro, OLED, Todos los colores del arcoíris
- 🖌️ Interfaz personalizable: ¡Puedes personalizar completamente el color principal, y otras partes de la interfaz para eliminar características que no usas!
- ⬆️ Actualizaciones automáticas: ¡Recibe una notificación cuando haya una actualización disponible y baja de versión si no te gusta!
- 👁️ Protección contra el rastreo: No se envían datos desde tu dispositivo por defecto
- 📺 Reproductor de vídeo personalizado
- 👎 Return YouTube Dislike - [_Más información_](https://returnyoutubedislike.com)
- 💰 SponsorBlock - [_Más información_](https://sponsor.ajay.app)
- 🎨 **Temas:** Claro, Oscuro, OLED y todos los colores del arcoíris
- 🖌️ **Interfaz personalizable:** Puedes personalizar completamente el color principal, y otras partes de la interfaz para eliminar características que no usas.
- ⬆️ **Actualizaciones automáticas:** Recibe una notificación cuando haya una actualización disponible y baja de versión si no te gusta.
- 👁️ **Protección contra el rastreo:** No se envían datos desde tu dispositivo por defecto. ¡La privacidad es necesaria!
- 📺 **Reproductor de vídeo personalizado:** Un reproductor integrado en la aplicación con todo lo que necesitas para ser feliz, cómo velocidad 16x.
- 👎 **Return YouTube Dislike** - [_Más información_](https://returnyoutubedislike.com)
- 💰 **SponsorBlock** - [_Más información_](https://sponsor.ajay.app)
## Instalar
<img src="./resources/readme-es/Install.es.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-es/Install.es.svg" alt="VueTube icon" height="100"/>
Para instalar, por favor, visita www.vuetube.app/install
@ -45,7 +49,7 @@ Para instalar, por favor, visita www.vuetube.app/install
<summary>O haz clic aquí para mostrar todas las versiones disponibles</summary>
<br />
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------- | ------------- | ------------- |
| Un montón de bugs, pero acceso anticipado a funciones | Menos bugs que la inestable, aún así más funciones que la estable | No disponible hasta que la app este más desarrollada |
@ -53,13 +57,14 @@ Para instalar, por favor, visita www.vuetube.app/install
## Planes
<img src="./resources/readme-es/Plans.es.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-es/Plans.es.svg" alt="VueTube icon" height="100"/>
- 🔍 Búsqueda avanzada
- 🗞️ Historial de búsqueda local
- ✂️ Shorts (Cortos)
- 🧑 Inicio de sesión con tu cuenta de Google
- 🖼️ Modo Imagen en imagen
- **🔍 Búsqueda avanzada:** Ordena los resultados por fecha, duración, likes o cualquier otro factor.
- **🗞️ Historial de búsqueda local:** Obtén tus últimos vídeos vistos sin iniciar sesión.
- ✂️ **Shorts (Cortos):** Videos cortos que duran entre 15 y 60 segundos.
- 🧑 **Inicio de sesión con tu cuenta de Google:** Inicia sesión para tener una experiencia completa votando y comentando vídeos y suscribiendote a canales.
- 🖼️ **Modo Imagen en imagen:** Te permite ver vídeos en una ventana flotante mientras usas otra aplicación.
- 🧩 **Complementos:** ¡Instala complementos de terceros hechos por la comunidad con funciones útiles!
- ¡y más!
## Capturas de pantalla

View File

@ -22,11 +22,11 @@ Prononcé «View Tube» (<code>/ˈvjuːˌtjuːb/</code>)
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Lire cette page dans dautres langues : [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
Lire cette page dans dautres langues : [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## Fonctionnalités
<img src="./resources/readme-fr/Features.fr.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-fr/Features.fr.svg" alt="VueTube icon" height="100"/>
- 🎨 Thèmes : Clair, sombre, noir et toutes les couleurs de l'arc-en-ciel !
- 🖌️ Interface personnalisable : Personnalisez la couleur des thèmes, ou désactivez d'autres parties de linterface que vous n'utilisez pas
@ -38,7 +38,7 @@ Lire cette page dans dautres langues : [English,](readme.md) [Español,](read
## Installation
<img src="./resources/readme-fr/Install.fr.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-fr/Install.fr.svg" alt="VueTube icon" height="100"/>
Pour installer l'application, veuillez visiter [vuetube.app/install](https://www.vuetube.app/install)
@ -48,13 +48,13 @@ Pour installer l'application, veuillez visiter [vuetube.app/install](https://www
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Beaucoup de bugs, mais vous avez accès anticipé aux nouvelles fonctionnalités | Moins de bugs que l'instable, tout en ayant plus de fonctionnalités que la stable | Indisponible pour l'instant |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Beaucoup de bugs, mais vous avez accès anticipé aux nouvelles fonctionnalités | Moins de bugs que l'instable, tout en ayant plus de fonctionnalités que la stable | Indisponible pour l'instant |
@ -62,7 +62,7 @@ Pour installer l'application, veuillez visiter [vuetube.app/install](https://www
## Projets
<img src="./resources/readme-fr/Plans.fr.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-fr/Plans.fr.svg" alt="VueTube icon" height="100"/>
- 🔍 Recherche avancée
- 🗞️ Historique de visionnage local

View File

@ -20,13 +20,13 @@
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
לקרוא בשפות אחרות: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
לקרוא בשפות אחרות: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
<div style="float: right; right: 5px;">
## פיצ'רים \ תכונות
<img src="./resources/readme-he/Features.he.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-he/Features.he.svg" alt="VueTube icon" height="100"/>
- 🎨 סטיילים: בהיר, קהה, אולד, וכל צבהי הקשת
- 🖌️ ממשק משתמש ניתן להתאמה אישית: אפשר גם להוריד את מה שאתם לא צריכים!
@ -36,7 +36,7 @@
## הורדה והתקנה
<img style="right: 10px;" src="./resources/readme-he/Install.he.svg" alt="VueTube icon" height="100"/>
<img style="right: 10px;" src="../resources/readme-he/Install.he.svg" alt="VueTube icon" height="100"/>
כדי להתקין, תעברו לאתר הבא: www.vuetube.app/install
@ -46,13 +46,13 @@
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| הרבה באגים, אבל אפשר לנסות פיצ'רים חדשים | פחות באגים, ויותר פיצ'רים מגרסה היציבה | לא ניתנה להורדה עד שהאפליקציה תהיה יותר מוכנה |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| הרבה באגים, אבל אפשר לנסות פיצ'רים חדשים | פחות באגים, ויותר פיצ'רים מגרסה היציבה | לא ניתנה להורדה עד שהאפליקציה תהיה יותר מוכנה |
@ -60,7 +60,7 @@
## תוכניות לעתיד
<img style="float: right;" src="./resources/readme-he/Plans.he.svg" alt="VueTube icon" height="100"/>
<img style="float: right;" src="../resources/readme-he/Plans.he.svg" alt="VueTube icon" height="100"/>
- 🔍 חיפוש מתקדם
- 🗞️ שמירת היסטורית הצפייה לוקלית

View File

@ -21,11 +21,11 @@ Disebut View Tube (<code>/ˈvjuːˌtjuːb/</code>)
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Baca ini di bahasa lain: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
Baca ini di bahasa lain: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## Fitur
<img src="./resources/readme-id/Features.id.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-id/Features.id.svg" alt="VueTube icon" height="100"/>
- 🎨 Tema: Terang, Gelap, OLED, Semua warna yang ada di dunia
- 🖌️ UI yang bisa di sesuaikan: Kamu bisa menyesuaikan warna aksen, dan bagian UI lainnya untuk menonaktifkan fitur yang tidak kamu gunakan!
@ -36,7 +36,7 @@ Baca ini di bahasa lain: [English,](readme.md) [Español,](readme.es.md) [简体
## Instalasi
<img src="./resources/readme-id/Install.id.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-id/Install.id.svg" alt="VueTube icon" height="100"/>
Untuk menginstal aplikasi silahkan kunjungi www.vuetube.app/install
@ -46,13 +46,13 @@ Untuk menginstal aplikasi silahkan kunjungi www.vuetube.app/install
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Banyak bug, tetapi akses awal ke fitur baru | Lebih sedikit bug dari unstable, sedikit lebih banyak fitur dari stable | Belum tersedia sampai aplikasi dikembangkan lebih jauh |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Banyak bug, tetapi akses awal ke fitur baru | Lebih sedikit bug dari unstable, sedikit lebih banyak fitur dari stable | Belum tersedia sampai aplikasi dikembangkan lebih jauh |
@ -60,7 +60,7 @@ Untuk menginstal aplikasi silahkan kunjungi www.vuetube.app/install
## Rencana
<img src="./resources/readme-id/Plans.id.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-id/Plans.id.svg" alt="VueTube icon" height="100"/>
- 🔍 Pencarian Lanjutan
- 🗞️ Simpan riwayat tontonan secara lokal (di perangkatmu)

View File

@ -20,11 +20,11 @@ Pronunciato View Tube (<code>/ˈvjuːˌtjuːb/</code>)
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Leggi questo in altre lingue: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
Leggi questo in altre lingue: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## Features
<img src="./resources/readme-it/Features.it.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-it/Features.it.svg" alt="VueTube icon" height="100"/>
- 🎨 Temi: Chiaro, Scuro, OLED, Tutti i colori dell'arcobaleno
- 🖌️ UI personalizzabile: Puoi personalizzare completamente il colore e altre parti dell'interfaccia utente per rimuovere le funzionalità che non usi!
@ -35,7 +35,7 @@ Leggi questo in altre lingue: [English,](readme.md) [Español,](readme.es.md) [
## Installa
<img src="./resources/readme-it/Install.it.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-it/Install.it.svg" alt="VueTube icon" height="100"/>
Per installare visita www.vuetube.app/install
@ -45,13 +45,13 @@ Per installare visita www.vuetube.app/install
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Molti bug, ma accesso anticipato alle funzionalità | Meno bug della versione instabile, leggermente più funzionalità della stabile | Non disponibile fino a quando l'app non sarà più sviluppata |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Molti bug, ma accesso anticipato alle funzionalità | Meno bug della versione instabile, leggermente più funzionalità della stabile | Non disponibile fino a quando l'app non sarà più sviluppata |
@ -59,7 +59,7 @@ Per installare visita www.vuetube.app/install
## Piani futuri
<img src="./resources/readme-it/Plans.it.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-it/Plans.it.svg" alt="VueTube icon" height="100"/>
- 🔍 Ricerca Avanzata
- 🗞️ Cronologia visualizzazioni archiviata localmente

View File

@ -1,6 +1,6 @@
<p align="center">
<a href="https://vuetube.app/">
<img src="./resources/readme-ja/VueTube.ja.svg" alt="VueTube icon" width="500"/>
<img src="../resources/readme-ja/VueTube.ja.svg" alt="VueTube icon" width="500"/>
</a>
</br>
<sub><a href="https://github.com/afnzmn">@afnzmn</a>・ロゴ</sub>
@ -19,11 +19,11 @@
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
他の言語で読む:[English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
他の言語で読む:[English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## 機能
<img src="resources/readme-ja/Features.ja.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-ja/Features.ja.svg" alt="VueTube icon" height="100"/>
- 🎨 テーマ色をカスタマイズする:ライト系、 ダーク系、OLED、などなど
- 🖌️ UI のカストマイズアクセントカラーをはじめ、UI をフルカスタマイズして、使用しない機能を削除できます!
@ -35,7 +35,7 @@
## インストール
<img src="./resources/readme-ja/Install.ja.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-ja/Install.ja.svg" alt="VueTube icon" height="100"/>
インストールはこちらからどうぞ: https://vuetube.app/install
@ -45,13 +45,13 @@
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| バグが発生する可能性があるけれど最新の機能をいち早く試されます。 | unstable よりもバグが少ないけれど、stable よりも若干機能が多い。 | VueTube が開発中のため、このバージョンは暫くダウンロードできない |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| バグが発生する可能性がけれど最新の機能をいち早く試されます。 | unstable よりもバグが少ないが、stable よりも若干機能が多い。 | VueTube が開発中のため、このバージョンは暫くダウンロードできない |
@ -59,7 +59,7 @@
## 計画
<img src="./resources/readme-ja/Plans.ja.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-ja/Plans.ja.svg" alt="VueTube icon" height="100"/>
- 🔍 アドバンストサーチ
- 🗞️ ウォッチ履歴のローカルストレージ

View File

@ -22,11 +22,11 @@ View Tube 발음 기호 (<code>/ˈvjuːˌtjuːb/</code>)
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
다른 언어로 이 페이지 보기: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어](readme.kr.md)
다른 언어로 이 페이지 보기: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## 특징
<img src="./resources/Features.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-kr/Features.kr.svg" alt="VueTube icon" height="100"/>
- 🎨 테마: 라이트, 다크, OLED 및 무지개의 모든 색상!
- 🖌️ 커스텀 가능한 UI: 테마를 커스텀하거나 사용하지 않는 UI의 일부를 비활성화할 수도 있어요
@ -38,7 +38,7 @@ View Tube 발음 기호 (<code>/ˈvjuːˌtjuːb/</code>)
## 설치
<img src="./resources/Install.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-kr/Install.kr.svg" alt="VueTube icon" height="100"/>
[vuetube.app/install](https://www.vuetube.app/install) 에서 다운로드할 수 있습니다
@ -48,21 +48,21 @@ View Tube 발음 기호 (<code>/ˈvjuːˌtjuːb/</code>)
### 안드로이드
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.3/VueTube-Canary-June-22-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.3/VueTube-Canary-June-22-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| 상당히 불안정합니다, 하지만 더 많은 기능을 먼저 사용할 수 있습니다 | unstable(불안정) 버전보다 버그가 적습니다, 하지만 stable(안정) 버전보다 많은 기능을 사용할 수 있습니다 | 아직 사용할 수 없습니다 |
| 상당히 불안정합니다, 하지만 더 많은 기능을 먼저 사용할 수 있습니다 | unstable(불안정) 버전보다 버그가 적습니다, 하지만 stable(안정) 버전보다 많은 기능을 사용할 수 있습니다 | 아직 사용할 수 없습니다 |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| 상당히 불안정합니다, 하지만 더 많은 기능을 먼저 사용할 수 있습니다 | unstable(불안정) 버전보다 버그가 적습니다, 하지만 stable(안정) 버전보다 많은 기능을 사용할 수 있습니다 | 아직 사용할 수 없습니다 |
| 상당히 불안정합니다, 하지만 더 많은 기능을 먼저 사용할 수 있습니다 | unstable(불안정) 버전보다 버그가 적습니다, 하지만 stable(안정) 버전보다 많은 기능을 사용할 수 있습니다 | 아직 사용할 수 없습니다 |
</details>
## 업데이트 계획
<img src="./resources/Plans.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-kr/Plans.kr.svg" alt="VueTube icon" height="100"/>
- 🔍 고급 검색 지원
- 🗞️ 로컬 시청 기록 지원

View File

@ -21,11 +21,11 @@
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Прочитајте го ова на други јазици: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
Прочитајте го ова на други јазици: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## Карактеристики
<img src="./resources/readme-mk/Features.mk.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-mk/Features.mk.svg" alt="VueTube icon" height="100"/>
- 🎨 Изглед: Светло, темно, OLED, сите бои на виножитото.
- 🖌️ Приспособлив интерфејс: Можете целосно да ја приспособите акцентната боја и другите делови од интерфејсот за да ги отстраните функциите што не ги користите!
@ -36,7 +36,7 @@
## Инстал
<img src="./resources/readme-mk/Install.mk.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-mk/Install.mk.svg" alt="VueTube icon" height="100"/>
За да инсталирате, посетете: www.vuetube.app/install
@ -46,13 +46,13 @@
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Многу грешки, но ран пристап до функциите. | Помалку грешки од нестабилна, малку повеќе функции од стабилна. | Не е достапна додека апликацијата не стане поразвиена. |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Многу грешки, но ран пристап до функциите. | Помалку грешки од нестабилна, малку повеќе функции од стабилна. | Не е достапна додека апликацијата не стане поразвиена. |
@ -60,7 +60,7 @@
## Планови
<img src="./resources/readme-mk/Plans.mk.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-mk/Plans.mk.svg" alt="VueTube icon" height="100"/>
- 🔍 Напредно пребарување
- 🗞️ Локално складирајте ја историјата на гледани видеа.

View File

@ -3,10 +3,14 @@
<img src="https://cdn.discordapp.com/attachments/751596360108605500/980418672331988992/VueTube_Dark.svg" alt="VueTube icon" width="500"/>
</a>
</br>
<sub>Logo oleh <a href="https://github.com/afnzmn">@afnzmn</a></sub></br>
<sub>Terjemahan oleh <a href="https://github.com/AdamIskandarAI">@AdamIskandarAI</a></sub>
</br>
</br>
<details>
<summary>Tunjukkan kredit Readme</summary>
<sub>Logo oleh <a href="https://github.com/afnzmn">@afnzmn</a></sub></br>
<sub>Penyumbang-penyumbang Readme Bahasa Melayu: <a href="https://github.com/AdamIskandarAI">@AdamIskandarAI</a></sub>
</details>
<p align="center">
<strong>Sebuah klien penstriman video FOSS ringkas bertujuan untuk mencipta semula SEMUA ciri daripada aplikasi masing-masing (dan banyak lagi)</strong>
</br>
Disebut View Tube (<code>/ˈvjuːˌtjuːb/</code>)
@ -21,23 +25,23 @@ Disebut View Tube (<code>/ˈvjuːˌtjuːb/</code>)
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Baca ini dalam bahasa lain: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
Baca ini dalam bahasa lain: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## Ciri-ciri
<img src="./resources/readme-ms/Features.ms.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-ms/Features.ms.svg" alt="VueTube icon" height="100"/>
- 🎨 Tema: Cerah, Gelap, OLED, Semua warna pelangi
- 🖌️ UI yang dibolehkan suaikan: Anda boleh menyesuaikan sepenuhnya warna aksen dan bahagian lain UI untuk mengalih keluar ciri yang anda tidak gunakan!
- ⬆️ Kemaskini Auto: Anda akan dimaklumkan apabila kemas kini tersedia & kembali ke versi lama jika anda tidak menyukainya!
- 👁️ Perlindungan Penjejak: Tiada telemetri (maklumat peribadi) dihantar daripada peranti anda secara lalai
- 📺 Pemain video yang boleh disesuaikan
- 👎 Return YouTube Dislike: [_Maklumat lanjut_](https://returnyoutubedislike.com)
- 💰SponsorBlock: [_Maklumat lanjut_](https://sponsor.ajay.app)
- 🎨 **Tema:** Cerah, Gelap, OLED, dan semua warna pelangi!
- 🖌️ **UI yang dibolehkan suaikan:** Sesuaikan tema ataupun nyahdayakan beberapa bahagian UI yang anda tidak gunakan.
- ⬆️ **Kemaskini Auto:** Anda akan dimaklumkan apabila kemas kini tersedia & kembali ke versi lama jika anda tidak menyukainya!
- 👁️ **Perlindungan Penjejak:** Tiada telemetri (maklumat peribadi) dihantar daripada peranti anda secara lalai. Privasi adalah penting!
- 📺 **Pemain video yang boleh disesuaikan:** Pemain video yang diintegrasikan dalam aplikasi dengan semua yang anda perlukan untuk bergembira, seperti kelajuan 16x.
- 👎 **Return YouTube Dislike:** [_Maklumat lanjut dalam Bahasa Inggeris_](https://returnyoutubedislike.com)
- 💰 **SponsorBlock:** [_Maklumat lanjut dalam Bahasa Inggeris_](https://sponsor.ajay.app)
## Pasang
<img src="./resources/readme-ms/Install.ms.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-ms/Install.ms.svg" alt="VueTube icon" height="100"/>
Untuk memasang aplikasi VueTube, sila lawati www.vuetube.app/install
@ -47,32 +51,33 @@ Untuk memasang aplikasi VueTube, sila lawati www.vuetube.app/install
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Banyak pepijat, tetapi anda boleh mendapat akses awal kepada ciri-ciri baharu | Kurang pepijat daripada tidak stabil, lebih sedikit ciri daripada stabil | Tidak tersedia sehingga aplikasi menjadi lebih berkembang |
| Agak tidak stabil, tetapi anda boleh mendapat akses awal kepada ciri-ciri baharu | Kurang pepijat daripada tidak stabil sementara mempunyai lebih banyak ciri daripada stabil | Tidak tersedia lagi |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Banyak pepijat, tetapi anda boleh mendapat akses awal kepada ciri-ciri baharu | Kurang pepijat daripada tidak stabil, lebih sedikit ciri daripada stabil | Tidak tersedia sehingga aplikasi menjadi lebih berkembang |
| Agak tidak stabil, tetapi anda boleh mendapat akses awal kepada ciri-ciri baharu | Kurang pepijat daripada tidak stabil sementara mempunyai lebih banyak ciri daripada stabil | Tidak tersedia lagi |
</details>
## Pelan
<img src="./resources/readme-ms/Plans.ms.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-ms/Plans.ms.svg" alt="VueTube icon" height="100"/>
- 🔍 Carian lanjutan
- 🗞️ Simpan sejarah tontonan secara setempat (pada peranti anda)
- ✂️ YouTube Shorts (video pendek)
- 🧑 Log masuk dengan akaun Google
- 🖼️ Mod gambar dalam gambar
- dan lebih lagi!
- 🔍 **Carian lanjutan:** Susun hasil mengikut tarikh, tempoh, suka atau apa-apa faktor lain.
- 🗞️ **Sejarah tontonan tempatan:** Dapatkan semula video tontonan terakhir anda tanpa log masuk.
- ✂️ **YouTube Shorts:** Video pendek yang berdurasi dari 15 hingga 60 saat.
- 🧑 **Log masuk dengan akaun Google anda:** Log masuk untuk mendapatkan pengalaman penuh dengan mengundi dan komen pada video dan melanggan saluran.
- 🖼️ **Mod gambar dalam gambar:** Membolehkan anda menonton video dalam tetingkap terapung apabila menggunakan aplikasi lain. [Maklumat lanjut](https://support.google.com/youtube/answer/7552722?co=GENIE.Platform=Android&hl=en#zippy=%2Cturn-on-picture-in-picture%2Cwho-can-use-picture-in-picture) (dalam Bahasa Inggeris)
- 🧩 **Pemalam (Plugin):** Pasang pemalam pihak ketiga yang dibuat oleh komuniti dengan ciri-ciri yang berguna!
- Dan lebih lagi!
## Tangkapan skrin
Lihat tangkapan skrin pada laman sesawang kami: www.vuetube.app/info/screenshots
[Lihat ia pada laman sesawang kami](www.vuetube.app/info/screenshots)
<details>
<summary> Atau klik sini untuk tunjukkan tangkapan skrin </summary>
@ -96,7 +101,7 @@ Idea ini telah dilontarkan pada pelayan Discord Return YouTube Dislike untuk sek
Sila baca di laman sesawang kami tentang bagaimana untuk melakukannya: www.vuetube.app/contributing
Sekiranya anda mahu menterjemahkan aplikasi ini, klik di [sini](https://github.com/VueTubeApp/VueTube/blob/main/NUXT/plugins/languages) dan baca bagaimana untuk melakukannya
Sekiranya anda mahu menterjemahkan aplikasi ini, klik di [sini](https://github.com/VueTubeApp/VueTube/blob/main/NUXT/plugins/languages) dan baca bagaimana untuk melakukannya.
## Penyumbang

View File

@ -21,11 +21,11 @@ Uitgesproken als: Vju - Tjube (<code>/ˈvjuːˌtjuːb/</code>)
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Lees dit in andere talen: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
Lees dit in andere talen: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## Functies
<img src="./resources/readme-nl/Features.nl.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-nl/Features.nl.svg" alt="VueTube icon" height="100"/>
- 🎨 Thema's: Licht, Donker, OLED (Helemaal Zwart), Alle kleuren van de regenboog
- 🖌️ Aanpasbare User Interface: Je kan de accentkleur volledig aanpassen, en andere delen van het UI om de dingen te verwijderen die je niet gebruikt!
@ -36,7 +36,7 @@ Lees dit in andere talen: [English,](readme.md) [Español,](readme.es.md) [简
## Installeren
<img src="./resources/readme-nl/Install.nl.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-nl/Install.nl.svg" alt="VueTube icon" height="100"/>
Om te installeren, ga naar www.vuetube.app/install
@ -47,13 +47,13 @@ Om te installeren, ga naar www.vuetube.app/install
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Heel veel bugs, maar vroegtijdige toegang tot de nieuwste functies | Minder bugs dan de onstabiele versie, net iets meer functies dan de stabiele versie | Niet beschikbaar totdat de app meer is ontwikkeld |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Heel veel bugs, maar vroegtijdige toegang tot de nieuwste functies | Minder bugs dan de onstabiele versie, net iets meer functies dan de stabiele versie | Niet beschikbaar totdat de app meer is ontwikkeld |
@ -61,7 +61,7 @@ Om te installeren, ga naar www.vuetube.app/install
## Plannen
<img src="./resources/readme-nl/Plans.nl.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-nl/Plans.nl.svg" alt="VueTube icon" height="100"/>
- 🔍 Geavanceerd zoeken
- 🗞️ Bewaar de gekeken video geschiedenis op je apparaat

View File

@ -21,11 +21,11 @@ Wymawia się: View Tube (<code>/ˈvjuːˌtjuːb/</code>)
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Przeczytaj to w innych językach: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
Przeczytaj to w innych językach: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## Funkcje
<img src="./resources/readme-pl/Features.pl.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-pl/Features.pl.svg" alt="VueTube icon" height="100"/>
- 🎨 Motywy: Jasny, Ciemny, OLED, Wszystkie kolory tęczy
- 🖌️ Personalizacja interfejsu: Możesz w pełni dostosować kolor akcentu oraz inne części interfejsu użytkownika i usunąć funkcje, których nie używasz!
@ -36,7 +36,7 @@ Przeczytaj to w innych językach: [English,](readme.md) [Español,](readme.es.md
## Instalacja
<img src="./resources/readme-pl/Install.pl.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-pl/Install.pl.svg" alt="VueTube icon" height="100"/>
Aby zainstalować aplikację, odwiedź www.vuetube.app/install
@ -46,13 +46,13 @@ Aby zainstalować aplikację, odwiedź www.vuetube.app/install
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Dużo błędów oraz wczesny dostęp do najnowszych funkcji | Mniej błędów niż w wersji niestabilnej, nieco więcej funkcji niż w wersji stabilnej | Niedostępna, dopóki aplikacja nie będzie bardziej rozwinięta |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Dużo błędów oraz wczesny dostęp do najnowszych funkcji | Mniej błędów niż w wersji niestabilnej, nieco więcej funkcji niż w wersji stabilnej | Niedostępna, dopóki aplikacja nie będzie bardziej rozwinięta |
@ -60,7 +60,7 @@ Aby zainstalować aplikację, odwiedź www.vuetube.app/install
## Plany
<img src="./resources/readme-pl/Plans.pl.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-pl/Plans.pl.svg" alt="VueTube icon" height="100"/>
- 🔍 Wyszukiwanie zaawansowane
- 🗞️ Lokalna historia oglądania

View File

@ -21,11 +21,11 @@ Se pronuncia View Tube (<code>/ˈvjuːˌtjuːb/</code>)
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Leia isso em outras línguas: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
Leia isso em outras línguas: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## Características
<img src="./resources/readme-pt-br/Features.pt-br.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-pt-br/Features.pt-br.svg" alt="VueTube icon" height="100"/>
- 🎨 Temas: Claro, Escuro, OLED, Todas as cores do arco-íris
- 🖌️ Interface Customizável: Te permite customizar cor de realce e outras partes da interface para remover funções que você não usa!
@ -36,7 +36,7 @@ Leia isso em outras línguas: [English,](readme.md) [Español,](readme.es.md) [
## Instalação
<img src="./resources/readme-pt-br/Install.pt-br.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-pt-br/Install.pt-br.svg" alt="VueTube icon" height="100"/>
Para instalar visite www.vuetube.app/install
@ -46,13 +46,13 @@ Para instalar visite www.vuetube.app/install
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Muitos bugs, mas acesso antecipado a novas funções | Menos bugs, pode ter um pouco mais de funções do que a estável | Não disponível até que o app esteja mais maduro |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Muitos bugs, mas acesso antecipado a novas funções | Menos bugs, pode ter um pouco mais de funções do que a estável | Não disponível até que o app esteja mais maduro |
@ -60,7 +60,7 @@ Para instalar visite www.vuetube.app/install
## Planos
<img src="./resources/readme-pt-br/Plans.pt-br.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-pt-br/Plans.pt-br.svg" alt="VueTube icon" height="100"/>
- 🔍 Procura Avançada
- 🗞️ Guardar histórico localmente

128
readme/readme.ro.md Normal file
View File

@ -0,0 +1,128 @@
<p align="center">
<a href="https://vuetube.app/">
<img src="https://cdn.discordapp.com/attachments/751596360108605500/980418672331988992/VueTube_Dark.svg" alt="VueTube icon" width="500"/>
</a>
</br>
<sub>Logo de la <a href="https://github.com/afnzmn">@afnzmn</a></sub> </br>
<sub>Contributorii README în limba engleză: <a href="https://github.com/404-Program-not-found">@404-Program-not-found</a>, <a href="https://github.com/Frontesque">@Frontesque</a>, <a href="https://github.com/gayolGate">@gayolGate</a>, <a href="https://github.com/ThatOneCalculator">@ThatOneCalculator</a>, <a href="https://github.com/afnzmn">@afnzmn</a>, <a href="https://github.com/tired6488">@tired6488</a>, <a href="https://github.com/DARKDRAGON532">@DARKDRAGON532</a>, <a href="https://github.com/PickleNik">@PickleNik</a> and <a href="https://github.com/Zyborg777">@Zyborg777</a></sub>
</br>
</br>
<strong>Un client FOSS de streaming video simplu menit să recreeze TOATE caracteristicile din aplicațiile lor respective (și multe altele!).</strong>
</br>
Pronunțat View Tube (<code>/ˈvjuːˌtjuːb/</code>)
</p>
<p align="center">
<a href="https://github.com/VueTubeApp/VueTube/blob/main/LICENSE" alt="License"><img src="https://img.shields.io/github/license/VueTubeApp/VueTube"></img></a>
<a href="https://github.com/VueTubeApp/VueTube/actions/workflows/ci.yml" alt="CI"><img src="https://github.com/VueTubeApp/VueTube/actions/workflows/ci.yml/badge.svg"></img></a>
<a href="https://reddit.com/r/vuetube" alt="Reddit"><img src="https://img.shields.io/reddit/subreddit-subscribers/vuetube?label=r%2FVuetube&logo=reddit&logoColor=white"></img></a>
<a href="https://t.me/VueTube" alt="Telegram"><img src="https://img.shields.io/endpoint?label=VueTube&url=https%3A%2F%2Ftelegram-badge-4mbpu8e0fit4.runkit.sh%2F%3Furl%3Dhttps%3A%2F%2Ft.me%2FVuetube"></img></a>
<a href="https://discord.gg/7P8KJrdd5W" alt="Discord"><img src="https://img.shields.io/discord/946587366242533377?label=Discord&style=flat&logo=discord&logoColor=white"></img></a>
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Citește aceastea în alte limbii: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## Caracteristici
<img src="../resources/readme-ro/Features.ro.svg" alt="VueTube icon" height="100"/>
- 🎨 Tema: Lumina, Întuneric, OLED, Toate culorile curcubeului
- 🖌️ UI personalizat: Poți personaliza complet culoarea accentul și alte părți ale UI pentru a elimina caracteristică pe care nu le utilizați!
- ⬆️ Actualizare automată: Fiți anunțat când este disponibila o actualizare și faceți downgrade dacă nu vă place!
- 👁️ Protecția de urmărire: În mod implicit,nu este trimisă nicio telemetry de pe dispozitiv.
- 📺 Player video personalizat
- 👎 Return YouTube Dislike - [_Mai multe informații_](https://returnyoutubedislike.com)
- 💰 SponsorBlock - [_Mai multe informații_](https://sponsor.ajay.app)
## Instalarea
<img src="../resources/readme-ro/Install.ro.svg" alt="VueTube icon" height="100"/>
Pentru a instala vă rugam sa vizitați [vuetube.app/install](https://www.vuetube.app/install)
<details>
<summary>Sau apasă aici pentru a afișa toate versiunile disponibile</summary>
<br />
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.3/VueTube-Canary-June-22-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Destul de instabil, dar vei avea acess din timp la caracteristicii noi | Mai puțin bug-uri decât instabil, având mai multe caracteristici decât stabile | Nu este disponibil încă |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Destul de instabil, dar vei avea acess din timp la caracteristicii noi | Mai puțin bug-uri decât instabil, având mai multe caracteristici decât stabile | Nu este disponibil încă |
</details>
## Planuri
<img src="../resources/readme-ro/Plans.ro.svg" alt="VueTube icon" height="100"/>
- 🔍 Căutarea avansat
- 🗞️ Istoricul vizionărilor local
- ✂️ YouTube Shorts (videoclip-uri mici care dureaza între 15 și 60 de secunde)
- 🧑 Conectarea cu contul Google
- 🖼️ Picture in picture mode (PiP)
- Și altele!
## Screenshot-uri
[Vizualizați-le pe site-ul nostru](https://www.vuetube.app/info/screenshots)
<details>
<summary> Sau apasă aici pentru a afișa screenshot-uri </summary>
<br />
<img src="https://vuetube.app/wtch.png" width="400">
<img src="https://vuetube.app/stng.png" width="400">
<img src="https://vuetube.app/srch.png" width="400">
</details>
### Technologii folosite
<a href="https://capacitorjs.com/solution/vue"><img src="https://cdn.discordapp.com/attachments/953538236716814356/955694368742834176/Capacitator-Dark.svg" height=40/></a> <a href="https://vuetifyjs.com/"><img src="https://cdn.discordapp.com/attachments/810799100940255260/973719873467342908/Vuetify-Dark.svg" height=40/></a> <a href="https://nuxtjs.org/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/NuxtJS-Dark.svg" height=40/></a> <a href="https://vuejs.org/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/VueJS-Dark.svg" height=40/></a> <a href="https://javascript.com/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/JavaScript.svg" height=40/></a> <a href="https://java.com/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/Java-Dark.svg" height=40/></a> <a href="https://gradle.com/"><img src="https://cdn.discordapp.com/attachments/810799100940255260/955691550560636958/Gradle.svg" height=40/></a> <a href="https://developer.apple.com/swift/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/Swift.svg" height=40/></a>
### De ce fac asta?
Ei bine, acest lucru a fost aruncat pe server-ul de Discord Return YouTube Dislike de ceva timp, așa că m-am gândit că probabil că ar trebui să iau o problemă!
### Doriți să contribui?
Vă rugam să citiți site-ul nostru despre cum să faceți acest lucru: [vuetube.app/contributing](https://www.vuetube.app/contributing)
Dacă doriți să traduceți aplicația, [apăsa aici](/NUXT/plugins/languages) și citește instructiunile
## Contributorii
<a href="https://github.com/VueTubeApp/VueTube/graphs/contributors">
<img src="https://contrib.rocks/image?repo=VueTubeApp/VueTube" />
</a>
<sub>Facut cu [contrib.rocks](https://contrib.rocks). </sub>
## Mulțumirii
- Emoji-uri de la [echipa Twemoji](https://twemoji.twitter.com/), Licența sub [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/)
- Logo-ul VueTube de la [@afnzmn](https://github.com/afnzmn)
- Datele publice YouTube dislike furnizat de [Return Youtube Dislike](https://returnyoutubedislike.com)
- Ajay & Comunitatea pentru furnizarea [Sponsorblock API](https://sponsor.ajay.app), Licența sub [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/)
## Donează
VueTube este și va fi întoteauna gratuit și sursă deschisă, dar puteți susține dezvoltatorii noștri cu o donație care va ajuta la menținerea proiectului.
[Donează pe Ko-Fi.com](https://ko-fi.com/vuetube) (Oficial)
[Donează la PickleNik pe GitHub](https://github.com/sponsors/PickleNik) (Întreținător)
## Disclaimer
Proiectul VueTube și conținutul său nu sunt afiliate, finanțate, autorizate, aprobate de sau în niciun fel acceptate cu YouTube, Google LLC sau oricare dintre afiliații și filialele sale. Site-ul oficial YouTube poate fi găsit la [youtube.com](https://www.youtube.com).
Orice marcă comercială, marcă de serviciu, denumire comercială sau alte drepturi de proprietate intelectuală utilizate în proiectul VueTube sunt deținute de proprietarii respectivi.

View File

@ -21,11 +21,11 @@
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
நீங்கள் இதை மற்ற மொழிகளில் பார்க்கலாம்: [English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
நீங்கள் இதை மற்ற மொழிகளில் பார்க்கலாம்: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## அம்சங்கள்
<img src="./resources/readme-ta/Features.ta.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-ta/Features.ta.svg" alt="VueTube icon" height="100"/>
- 🎨 தீம்கள்: ஒளி, இருள், OLED, வானவில்லின் அனைத்து வண்ணங்களும்
- 🖌️ தனிப்பயனாக்கக்கூடிய UI: நீங்கள் பயன்படுத்தாத அம்சங்களை அகற்ற, உச்சரிப்பு நிறத்தையும் UI இன் பிற பகுதிகளையும் முழுமையாகத் தனிப்பயனாக்கலாம்!
@ -36,7 +36,7 @@
## பதிவிறக்கம்
<img src="./resources/readme-ta/Install.ta.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-ta/Install.ta.svg" alt="VueTube icon" height="100"/>
பதிவிறக்க, www.vuetube.app/install க்குச் செல்லவும்
@ -46,13 +46,13 @@
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| நிறைய பிழைகள் உள்ளன, ஆனால் அம்சங்களுக்கான ஆரம்ப அணுகல் | நிலையற்றதை விட குறைவான பிழைகள், நிலையானதை விட சற்று கூடுதல் அம்சங்கள் | பயன்பாடு இன்னும் மேம்படுத்தப்படும் வரை கிடைக்காது |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| நிறைய பிழைகள் உள்ளன, ஆனால் அம்சங்களுக்கான ஆரம்ப அணுகல் | நிலையற்றதை விட குறைவான பிழைகள், நிலையானதை விட சற்று கூடுதல் அம்சங்கள் | பயன்பாடு இன்னும் மேம்படுத்தப்படும் வரை கிடைக்காது |
@ -60,7 +60,7 @@
## திட்டங்கள்
<img src="./resources/readme-ta/Plans.ta.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-ta/Plans.ta.svg" alt="VueTube icon" height="100"/>
- 🔍 மேம்பட்ட தேடல்
- 🗞️ உள்ளூர் ஸ்டோர் கண்காணிப்பு வரலாறு

128
readme/readme.vi.md Normal file
View File

@ -0,0 +1,128 @@
<p align="center">
<a href="https://vuetube.app/">
<img src="https://cdn.discordapp.com/attachments/751596360108605500/980418672331988992/VueTube_Dark.svg" alt="VueTube icon" width="500"/>
</a>
</br>
<sub>Logo by <a href="https://github.com/afnzmn">@afnzmn</a></sub> </br>
<sub>English Readme contributors: <a href="https://github.com/404-Program-not-found">@404-Program-not-found</a>, <a href="https://github.com/Frontesque">@Frontesque</a>, <a href="https://github.com/gayolGate">@gayolGate</a>, <a href="https://github.com/ThatOneCalculator">@ThatOneCalculator</a>, <a href="https://github.com/afnzmn">@afnzmn</a>, <a href="https://github.com/tired6488">@tired6488</a>, <a href="https://github.com/DARKDRAGON532">@DARKDRAGON532</a>, <a href="https://github.com/PickleNik">@PickleNik</a> and <a href="https://github.com/Zyborg777">@Zyborg777</a></sub>
</br>
</br>
<strong>Một ứng dụng phát trực tuyến video mã nguồn mở và đơn giản nhằm tạo lại TẤT CẢ các tính năng từ các ứng dụng tương ứng (và nhiều hơn nữa!)</strong>
</br>
Phát âm View Tube (<code>/ˈvjuːˌtjuːb/</code>)
</p>
<p align="center">
<a href="https://github.com/VueTubeApp/VueTube/blob/main/LICENSE" alt="License"><img src="https://img.shields.io/github/license/VueTubeApp/VueTube"></img></a>
<a href="https://github.com/VueTubeApp/VueTube/actions/workflows/ci.yml" alt="CI"><img src="https://github.com/VueTubeApp/VueTube/actions/workflows/ci.yml/badge.svg"></img></a>
<a href="https://reddit.com/r/vuetube" alt="Reddit"><img src="https://img.shields.io/reddit/subreddit-subscribers/vuetube?label=r%2FVuetube&logo=reddit&logoColor=white"></img></a>
<a href="https://t.me/VueTube" alt="Telegram"><img src="https://img.shields.io/endpoint?label=VueTube&url=https%3A%2F%2Ftelegram-badge-4mbpu8e0fit4.runkit.sh%2F%3Furl%3Dhttps%3A%2F%2Ft.me%2FVuetube"></img></a>
<a href="https://discord.gg/7P8KJrdd5W" alt="Discord"><img src="https://img.shields.io/discord/946587366242533377?label=Discord&style=flat&logo=discord&logoColor=white"></img></a>
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
Đọc trang này trong các ngôn ngữ khác: [English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## Tính năng
<img src="../resources/readme-vi/Features.vi.svg" alt="VueTube icon" height="100"/>
- 🎨 Chủ đề: Sáng, tối và nhứng màu sắc của cầu vồng!
- 🖌️ Tùy chinht UI: Tùy chỉnh giao diện, kể cả tắt những phần bạn hổng có dùng
- ⬆️ Tự động cập nhật: Nhận thông báo khi cập nhật hoặc hạ cấp nếu bận hổng có thích!
- 👁️ Bảo vệ khỏi theo dõi: Không có dữ liệu nào từ thiết bị của bạn gửi đến máy chủ từ xa!
- 📺 Trình phát tùy chỉnh
- 👎 Return YouTube Dislike - [_More info_](https://returnyoutubedislike.com)
- 💰 SponsorBlock - [_More info_](https://sponsor.ajay.app)
## Cài đặt
<img src="../resources/readme-vi/Install.vi.svg" alt="VueTube icon" height="100"/>
Để cài đặt hãy ghé thăm [vuetube.app/install](https://www.vuetube.app/install)
<details>
<summary>Hay nhấn vào đây để xem những phiên bản có sẵn</summary>
<br />
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.3/VueTube-Canary-June-22-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Hơi bất ổn định xíu nhưng được tận hưởng tính năng mới | Ít lỗi hơn bản unstable nhưng có nhiều tính năng hơn bản stable | Chưa có sẵn đâu nha |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Hơi bất ổn định xíu nhưng được tận hưởng tính năng mới | Ít lỗi hơn bản unstable nhưng có nhiều tính năng hơn bản stable | Chưa có sẵn đâu nha |
</details>
## Kế hoạch
<img src="../resources/readme-vi/Plans.vi.svg" alt="VueTube icon" height="100"/>
- 🔍 Tìm kiếm nâng cao
- 🗞️ Lịch sử xem nội bộ
- ✂️ YouTube Shorts (video ngắn từ 15 đến 60 giây)
- 🧑 Đăng nhập với tài khoản Google của bạn
- 🖼️ Chế độ Picture-in-Picture (PiP)
- Và nhiều hơn nữa!
## Ảnh chụp màn hình
[Xem trên website của chúng tôi](https://www.vuetube.app/info/screenshots)
<details>
<summary> Hoặc nhấn vào đây để xem ảnh chụp màn hình </summary>
<br />
<img src="https://vuetube.app/wtch.png" width="400">
<img src="https://vuetube.app/stng.png" width="400">
<img src="https://vuetube.app/srch.png" width="400">
</details>
### Công nghệ đã được sử dụng
<a href="https://capacitorjs.com/solution/vue"><img src="https://cdn.discordapp.com/attachments/953538236716814356/955694368742834176/Capacitator-Dark.svg" height=40/></a> <a href="https://vuetifyjs.com/"><img src="https://cdn.discordapp.com/attachments/810799100940255260/973719873467342908/Vuetify-Dark.svg" height=40/></a> <a href="https://nuxtjs.org/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/NuxtJS-Dark.svg" height=40/></a> <a href="https://vuejs.org/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/VueJS-Dark.svg" height=40/></a> <a href="https://javascript.com/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/JavaScript.svg" height=40/></a> <a href="https://java.com/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/Java-Dark.svg" height=40/></a> <a href="https://gradle.com/"><img src="https://cdn.discordapp.com/attachments/810799100940255260/955691550560636958/Gradle.svg" height=40/></a> <a href="https://developer.apple.com/swift/"><img src="https://github.com/tandpfun/skill-icons/raw/main/icons/Swift.svg" height=40/></a>
### Tại sao tôi lại làm cái này?
Chà, điều này đã xuất hiện trên Discord Server Return YouTube Dislike trong một thời gian khá dài, vì vậy tôi nghĩ rằng tôi có thể nên thử nó!
### Bạn muốn đóng góp không?
Đọc trên website của chúng tôi để xem: [vuetube.app/contributing](https://www.vuetube.app/contributing)
Nếu bạn muốn dịch ứng dụng, [nhấn vào đây](/NUXT/plugins/languages) và đọc hướng dẫn
## Những người đóng góp
<a href="https://github.com/VueTubeApp/VueTube/graphs/contributors">
<img src="https://contrib.rocks/image?repo=VueTubeApp/VueTube" />
</a>
<sub>Được thực hiện với [contrib.rocks](https://contrib.rocks). </sub>
## Sự nhìn nhận
- Emojis bởi [Twemoji team](https://twemoji.twitter.com/), Giấy phép [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/)
- Logo của VueTube bởi [@afnzmn](https://github.com/afnzmn)
- Dữ liệu Dislike của Youtube bởi [Return Youtube Dislike](https://returnyoutubedislike.com)
- [Sponsorblock API](https://sponsor.ajay.app) bởi Ajay & Cộng đồng, Giấy phép [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/)
## Ủng hộ
VueTube sẽ mãi miễn phí và mã nguồn mở, nhưng bạn có thể ủng hộ nhà phát triển để giúp duy trì dự án này.
[Ủng hộ trên Ko-Fi.com](https://ko-fi.com/vuetube) (Official)
[Donate cho PickleNik trên GitHub](https://github.com/sponsors/PickleNik) (Người duy trì)
## Miễn trừ trách nhiệm
Dự án VueTube và nội dung của nó không liên quan, được tài trờ, được ủy quyền, xác nhận bởi hay liên quan gì đến YouTube, Google LLC hay bất cứ thứ gì liên quan. Trang web chính thức của Youtube là [youtube.com](https://www.youtube.com).
Mọi nhãn hiệu, nhãn hiệu dịch vụ, tên thương mại hoặc các quyền sở hữu trí tuệ khác được sử dụng trong dự án VueTube đều thuộc sở hữu của các chủ sở hữu tương ứng.

View File

@ -3,10 +3,14 @@
<img src="https://cdn.discordapp.com/attachments/751596360108605500/980418672331988992/VueTube_Dark.svg" alt="VueTube icon" width="500"/>
</a>
</br>
<sub>标志:<a href="https://github.com/afnzmn">@afnzmn</a></sub> </br>
<sub>简体中文 Readme 贡献者:<a href="https://github.com/404-Program-not-found">@404-Program-not-found</a>, <a href="https://github.com/nokanol45">@nokanol45</a>, <a href="https://github.com/afnzmn">@afnzmn</a></sub>
</br>
</br>
<details>
<summary>显示 Readme 贡献名单</summary>
<sub>标志:<a href="https://github.com/afnzmn">@afnzmn</a></sub> </br>
<sub>简体中文 Readme 贡献者:<a href="https://github.com/404-Program-not-found">@404-Program-not-found</a><a href="https://github.com/nokanol45">@nokanol45</a></sub>
</details>
<p align="center">
<strong>轻巧的开放源代码流媒体客户端,旨在再造不同流媒体应用程序的所有功能(以及更多!)</strong>
</br>
读音是 View Tube (<code>/ˈvjuːˌtjuːb/</code>)
@ -21,39 +25,38 @@
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
其他语言版本:[English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
其他语言版本:[English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## 功能
<img src="./resources/readme-zh-hans/Features.zh-hans.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-zh-hans/Features.zh-hans.svg" alt="VueTube icon" height="100"/>
- 🎨 主题明亮、黑暗、OLED以及彩虹中的任何颜色
- 🖌️ 可自定义的使用者界面:自定义主题,甚至停用您不使用的一些界面
- ⬆️ 自动更新:有新版本可用时接收通知,如果您不喜欢也可以撤销更新!
- 👁️ 追踪阻断VueTube 默认不会发送任何跟踪数据
- 📺 自家制的 HTML5 影片播放器
- 👎 利用 Return Youtube Dislike 的 API 带回 YouTube 的「踩一下」数据 — [更多信息](https://www.returnyoutubedislike.com/)
- 💰 SponsorBlock — [更多信息](https://sponsor.ajay.app/)
- 🎨 **主题**明亮、黑暗、OLED以及彩虹中的任何颜色
- 🖌️ **自定义使用者界面**:自定义主题,甚至停用您不使用的一些界面
- ⬆️ **自动更新**:有新版本可用时接收通知,如果您不喜欢也可以撤销更新!
- 👁️ **追踪阻断**VueTube 默认不会发送任何跟踪数据
- 📺 **自家制的 HTML5 视频播放器**:内置在应用程序的播放器,拥有您所需的任何功能,例如 16 倍速。
- 👎 **Return YouTube Dislike**:利用 Return YouTube Dislike 的 API 带回 YouTube 的「踩一下」数据 — [_更多信息_](https://returnyoutubedislike.com)
- 💰 **SponsorBlock**:利用 SponsorBlock 的 API 跳过赞助广告 — [_更多信息_](https://sponsor.ajay.app)
## 下载
<img src="./resources/readme-zh-hans/Install.zh-hans.svg" alt="VueTube icon" height="100"/>
请访问 www.vuetube.app/install 下载 VueTube。
<img src="../resources/readme-zh-hans/Install.zh-hans.svg" alt="VueTube icon" height="100"/>
请访问 [vuetube.app/install](https://www.vuetube.app/install) 来下载 VueTube。
<details>
<summary>或点击这里查看所有可用的版本</summary>
<br />
### 安卓/Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.3/VueTube-Canary-June-22-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| 有最新的功能,并且经常有更新,但 bug 也最常见。 | bug 比 unstable 较少,功能也比 stable 稍新 | 由于 VueTube 尚未完成开发,暂时未有 Stable 版本下载 |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| 有最新的功能,并且经常有更新,但 bug 也最常见。 | bug 比 unstable 较少,功能也比 stable 稍新 | 由于 VueTube 尚未完成开发,暂时未有 Stable 版本下载 |
@ -61,18 +64,19 @@
## 未来计划
<img src="./resources/readme-zh-hans/Plans.zh-hans.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-zh-hans/Plans.zh-hans.svg" alt="VueTube icon" height="100"/>
- 🔍 进阶搜索功能
- 🗞️ 本地存储观看记录
- ✂️ Shorts大概 15 至 60 秒长的短视频)
- 🧑 谷歌账号登录
- 🖼️ 画中画模式PiP
- 🔍 **进阶搜索**:以日期、时长、「顶一下」数目等项目筛选搜索结果。
- 🗞️ **本地存储观看记录**:不用登录也可以查阅先前观看过的视频。
- ✂️ **YouTube Shorts**:大概 15 至 60 秒长的短视频。
- 🧑 **谷歌帐号登录**:登录以订阅频道、在视频下留下评论和参与投票,获得最全面的体验。
- 🖼️ **画中画模式PiP**:使用其他应用程序时在悬浮式窗口中观看视频。
- 🧩 **插件**:安装由 VueTube 社区开发的第三方插件,取得更多功能!
- 以及更多!
## 截图
在我们的网站上查看www.vuetube.app/info/screenshots
[在我们的网站上查看](https://www.vuetube.app/info/screenshots)
<details>
<summary> 或点击这里查看截图 </summary>
@ -94,7 +98,7 @@
### 如何贡献
如您想提交代码请访问我们的网站查閲提交代码指南www.vuetube.app/contributing
如您想提交代码,请访问我们的网站查閲提交代码指南:[vuetube.app/contributing](https://www.vuetube.app/contributing)
如您想翻译此应用程序,请[点击这里](/NUXT/plugins/languages)查阅翻译指南

View File

@ -3,10 +3,14 @@
<img src="https://cdn.discordapp.com/attachments/751596360108605500/980418672331988992/VueTube_Dark.svg" alt="VueTube icon" width="500"/>
</a>
</br>
<sub>標誌:<a href="https://github.com/afnzmn">@afnzmn</a></sub> </br>
<sub>繁體中文 Readme 貢獻者:<a href="https://github.com/404-Program-not-found">@404-Program-not-found</a>, <a href="https://github.com/nokanol45">@nokanol45</a>, <a href="https://github.com/afnzmn">@afnzmn</a></sub>
</br>
</br>
<details>
<summary>顯示 Readme 貢獻名單</summary>
<sub>標誌:<a href="https://github.com/afnzmn">@afnzmn</a></sub> </br>
<sub>繁體中文 Readme 貢獻者:<a href="https://github.com/404-Program-not-found">@404-Program-not-found</a><a href="https://github.com/nokanol45">@nokanol45</a></sub>
</details>
<p align="center">
<strong>輕巧的開放原始碼影音串流客戶端,旨在再造不同影音串流應用程式的所有功能(以及更多!)</strong>
</br>
讀音是 View Tube (<code>/ˈvjuːˌtjuːb/</code>)
@ -21,25 +25,25 @@
<a href="https://twitter.com/VueTubeApp" alt="Twitter"><img src="https://img.shields.io/twitter/follow/VueTubeApp?label=Follow&style=flat&logo=twitter"></img></a>
</p>
其他語言版本:[English,](readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano](readme.it.md)
其他語言版本:[English,](/readme.md) [Español,](readme.es.md) [简体中文,](readme.zh-hans.md) [繁體中文,](readme.zh-hant.md) [日本語,](readme.ja.md) [עִברִית,](readme.he.md) [Nederlands,](readme.nl.md) [தமிழ்,](readme.ta.md) [Bahasa Melayu,](readme.ms.md) [Македонски,](readme.mk.md) [Français,](readme.fr.md) [Português Brasileiro,](readme.pt-br.md) [Bahasa Indonesia,](readme.id.md) [Polski,](readme.pl.md) [Български,](readme.bg.md) [Italiano,](readme.it.md) [한국어,](readme.kr.md) [Tiếng Việt,](readme.vi.md) [Română](readme.ro.md)
## 功能
<img src="./resources/readme-zh-hant/Features.zh-hant.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-zh-hant/Features.zh-hant.svg" alt="VueTube icon" height="100"/>
- 🎨 主題明亮、黑暗、OLED、以及彩虹中的任何顏色!
- 🖌️ 可自訂的使用者介面:自訂主題,甚至停用您不使用的一些介面
- ⬆️ 自動更新:有新版本可用時接收通知,如果您不喜歡也可以撤銷更新!
- 👁️ 追蹤阻斷VueTube 預設不會傳送任何跟蹤數據
- 📺 自家製的 HTML5 影片播放器
- 👎 利用 Return Youtube Dislike 的 API 帶回 YouTube 的「不喜歡」數據 — [更多資訊](https://www.returnyoutubedislike.com/)
- 💰 SponsorBlock — [更多資訊](https://sponsor.ajay.app/)
- 🎨 **主題**明亮、黑暗、OLED以及彩虹中的任何顏色!
- 🖌️ **自訂使用者介面**:自訂主題,甚至停用您不使用的一些介面
- ⬆️ **自動更新**:有新版本可用時接收通知,如果您不喜歡也可以撤銷更新!
- 👁️ **追蹤阻斷**VueTube 預設不會傳送任何跟蹤數據
- 📺 **自家製的 HTML5 影片播放器**:內置在應用程式的播放器,擁有您所需的任何功能,例如 16 倍速。
- 👎 **Return YouTube Dislike**:利用 Return YouTube Dislike 的 API 帶回 YouTube 的「不喜歡」數據 — [_更多資訊_](https://returnyoutubedislike.com)
- 💰 **SponsorBlock**:利用 SponsorBlock 的 API 跳過贊助廣告 — [_更多資訊_](https://sponsor.ajay.app)
## 下載
<img src="./resources/readme-zh-hant/Install.zh-hant.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-zh-hant/Install.zh-hant.svg" alt="VueTube icon" height="100"/>
請訪問 www.vuetube.app/install 來下載 VueTube。
請訪問 [vuetube.app/install](https://www.vuetube.app/install) 來下載 VueTube。
<details>
<summary>或按此查看所有可用的版本</summary>
@ -47,13 +51,13 @@
### Android
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.2/VueTube-Canary-June-15-2022.apk><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/android.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://github.com/VueTubeApp/VueTube/releases/download/0.3/VueTube-Canary-June-22-2022.apk><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| 有最新的功能,並且經常有更新,但 bug 也最常見。 | bug 比 unstable 較少,功能也比 stable 稍新。 | 由於 VueTube 尚未完成開發,暫時未有 Stable 版本下載 |
### iOS
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=./resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=./resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=./resources/getstable.png></a> |
| <a href=https://nightly.link/VueTubeApp/VueTube/workflows/ci/main/iOS.zip><img id="im" width="200" src=../resources/getunstable.png></a> | <a href=https://cdn.discordapp.com/attachments/949908267855921163/972164558930198528/VueTube-Canary-May-6-2022.ipa><img id="im" width="200" src=../resources/getcanary.png></a> | <a href=https://vuetube.app/install><img id="im" width="200" src=../resources/getstable.png></a> |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| 有最新的功能,並且經常有更新,但 bug 也最常見。 | bug 比 unstable 較少,功能也比 stable 稍新。 | 由於 VueTube 尚未完成開發,暫時未有 Stable 版本下載 |
@ -61,18 +65,19 @@
## 未來計劃
<img src="./resources/readme-zh-hant/Plans.zh-hant.svg" alt="VueTube icon" height="100"/>
<img src="../resources/readme-zh-hant/Plans.zh-hant.svg" alt="VueTube icon" height="100"/>
- 🔍 進階搜尋功能
- 🗞️ 本地儲存觀看記錄
- ✂️ Shorts大概 15 至 60 秒長的短片)
- 🧑 Google 帳戶登入
- 🖼️ 畫中畫模式PiP
- 🔍 **進階搜尋**:以日期、時長、「喜歡」數目等項目篩選搜尋結果。
- 🗞️ **本地儲存觀看記錄**:不用登入也可以查閲先前觀看過的影片。
- ✂️ **YouTube Shorts**:大概 15 至 60 秒長的短片。
- 🧑 **Google 帳戶登入**:登入以訂閲頻道、在影片下留下評論和參與投票,獲得最全面的體驗。
- 🖼️ **畫中畫模式PiP**:使用其他應用程式時在懸浮式視窗中觀看影片。
- 🧩 **插件**:安裝由 VueTube 社群開發的第三方插件,取得更多功能!
- 以及更多!
## 截圖
在我們的網站上查看www.vuetube.app/info/screenshots
[在我們的網站上查看](https://www.vuetube.app/info/screenshots)
<details>
<summary> 或按此查看截圖 </summary>
@ -94,7 +99,7 @@
### 如何貢獻
如您想貢獻原始碼請移至我們的網站查閲貢獻原始碼指南www.vuetube.app/contributing
如您想貢獻原始碼,請移至我們的網站查閲貢獻原始碼指南:[vuetube.app/contributing](https://www.vuetube.app/contributing)
如您想翻譯此應用程式,請[按此](/NUXT/plugins/languages)查閲翻譯指南

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 38 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -1 +1 @@
cd .\NUXT\; npm run generate; cd ..; npx cap sync
cd .\NUXT\; npm run generate; cd ..; npx cap sync android