
安卓.9图启动图变形苹果storyboard 启动图片代做原生插件bug解决uniapp flutter开发
35岁被那个了,开发经验丰富,
原生Android iOS,uniapp flutter,vue,小程序都可以干,
同学朋友都是这行的,可接整体项目,可接项目咨询,项目设计,项目风险咨询等,
主要是性价比高,专业还便宜,
都在一线干的资深码农,如果你是老板请联系我,不一定就能省大钱办大事,还有惊喜,
如果你是一个技术需要解决问题请联系我,总之多问一嘴不收费,可能就有意外收获!QQ 1004898113
35岁被那个了,开发经验丰富,
原生Android iOS,uniapp flutter,vue,小程序都可以干,
同学朋友都是这行的,可接整体项目,可接项目咨询,项目设计,项目风险咨询等,
主要是性价比高,专业还便宜,
都在一线干的资深码农,如果你是老板请联系我,不一定就能省大钱办大事,还有惊喜,
如果你是一个技术需要解决问题请联系我,总之多问一嘴不收费,可能就有意外收获!QQ 1004898113
收起阅读 »
在uniapp插件市场上一直找不到合适的瀑布流组件,于是自己动手写了一个,并在项目中实践出来的瀑布流解决方案
一、我对于瀑布流布局组件的要求
- 要有骨架屏,能提前将基本结构展示给用户;
- 不要挨个渲染,否则如果有图片的话加载将会很慢;
- 可以实现多列瀑布流;
- 绝对不能出现错位渲染,很多瀑布流组件都出现这种情况,特别在页面跳转或Tabs切换下。
- 渲染过程中不能有卡顿影响用户体验。
- 应用于小程序、H5、App等
二、地址
uniapp插件地址:
https://ext.dcloud.net.cn/plugin?id=20167
组件文档地址:
https://github.com/Raito-Liao/raito-waterfall/blob/master/uni_modules/raito-waterfall/readme.md
三、实现讲解
1、计算渲染项的位置
原理都差不多,在获得渲染项的宽高后,将渲染项定位在最小高度的那一列的下面。
// raito-waterfall部分代码
export default {
methods: {
generateRenderList() {
const renderList = []
const {
columnCount,
columnWidth,
skeletonHeight,
gutter,
lrPading,
keyName,
cache
} = this
const columnHeights = new Array(columnCount).fill(0);
if (!keyName) {
throw new Error('keyName is required!')
}
this.data.forEach((item, index) => {
const itemKey = item[keyName]
if (!cache[itemKey]) {
cache[itemKey] = {
top: 0,
left: 0,
width: columnWidth, // item宽度
height: skeletonHeight // 骨架屏高度
}
}
if (index < columnCount) {
cache[itemKey].top = 0
cache[itemKey].left = lrPading index * (columnWidth gutter)
columnHeights[index] = cache[itemKey].height
} else {
const minHeight = Math.min(...columnHeights)
const minIndex = columnHeights.indexOf(minHeight);
cache[itemKey].top = minHeight gutter
cache[itemKey].left = lrPading minIndex * (columnWidth gutter)
columnHeights[minIndex] = cache[itemKey].height gutter
}
renderList.push({
...item,
_layoutRect: cache[itemKey],
_renderKey: itemKey
})
})
const maxHeight = Math.max(...columnHeights)
return {
renderList,
maxHeight
}
},
startRender() {
const {
maxHeight,
renderList
} = this.generateRenderList()
if (!renderList.length) {
return
}
this.renderList = renderList
this.waterfallBoxHeight = maxHeight
},
}
}
2、如何避免错位渲染?
这种情况发生于页面跳转或Tabs切换,导致获取不到元素的boundingClientRect,也就获取不到元素的高度,于是会导致计算错误。
function getRect(selector, context) {
return new Promise((resolve, reject) => {
const query = uni.createSelectorQuery().in(context);
query
.select(selector)
.boundingClientRect(rect => {
rect ? resolve(rect) : reject('Not Found');
})
.exec();
});
}
可以这样解决:当createSelectorQuery获取不到boundingClientRect时,使用createIntersectionObserver来监听元素,这样同样可以获取得到boundingClientRect。当重新回到页面或Tabs切换回来时,intersectionObserver会被触发。
// raito-waterfall-item部分代码
export default {
mounted() {
this.getExtraBoxWH().finally(() => {
/* 可能由于页面跳转、元素隐藏导致获取不到宽度和高度,于是通过监听元素来重新获取高度 */
if (!this.contentRect.extraBoxWidth || !this.contentRect.extraBoxHeight) {
this.startObserver();
}
});
},
beforeDestroy() {
if (this.intersectionObserver) {
this.intersectionObserver.disconnect();
this.intersectionObserver = null;
}
},
methods: {
startObserver() {
this.intersectionObserver = uni.createIntersectionObserver(this, {
thresholds: [0, 1],
initialRatio: 0,
observeAll: false
});
this.intersectionObserver.relativeToViewport();
this.intersectionObserver.observe('.content-box__extra', res => {
const { width, height } = res.boundingClientRect;
this.contentRect.extraBoxWidth = width;
this.contentRect.extraBoxHeight = height;
this.intersectionObserver.disconnect();
this.intersectionObserver = null;
});
},
// 获取extraBox的宽高
getExtraBoxWH() {
return getRect('.content-box__extra', this).then(rect => {
if (rect) {
this.contentRect.extraBoxWidth = rect.width;
this.contentRect.extraBoxHeight = rect.height;
}
});
},
}
}
3、防止数据频繁变化和渲染项高度变化导致卡顿,需要对其节流
import { isArraysEqual, throttle } from '../../util.js'
export default {
created() {
this.throttleRender = throttle(this.startRender.bind(this), 100) // 防止频繁调用
this.handleDataChange = throttle(this.handleDataChange.bind(this), 100) // 防止频繁调用
this.$watch('data', this.handleDataChange, {
deep: true,
immediate: true
})
},
methods: {
onHeightChange(item, height) {
const itemKey = item._renderKey
this.cache[itemKey].height = height
this.throttleRender()
},
handleDataChange(newData, oldData) {
if (isArraysEqual(newData, oldData)) {
return
}
this.startRender()
},
}
}
五、扫码预览
H5扫码体验(国内可能会慢一些)
一、我对于瀑布流布局组件的要求
- 要有骨架屏,能提前将基本结构展示给用户;
- 不要挨个渲染,否则如果有图片的话加载将会很慢;
- 可以实现多列瀑布流;
- 绝对不能出现错位渲染,很多瀑布流组件都出现这种情况,特别在页面跳转或Tabs切换下。
- 渲染过程中不能有卡顿影响用户体验。
- 应用于小程序、H5、App等
二、地址
uniapp插件地址:
https://ext.dcloud.net.cn/plugin?id=20167
组件文档地址:
https://github.com/Raito-Liao/raito-waterfall/blob/master/uni_modules/raito-waterfall/readme.md
三、实现讲解
1、计算渲染项的位置
原理都差不多,在获得渲染项的宽高后,将渲染项定位在最小高度的那一列的下面。
// raito-waterfall部分代码
export default {
methods: {
generateRenderList() {
const renderList = []
const {
columnCount,
columnWidth,
skeletonHeight,
gutter,
lrPading,
keyName,
cache
} = this
const columnHeights = new Array(columnCount).fill(0);
if (!keyName) {
throw new Error('keyName is required!')
}
this.data.forEach((item, index) => {
const itemKey = item[keyName]
if (!cache[itemKey]) {
cache[itemKey] = {
top: 0,
left: 0,
width: columnWidth, // item宽度
height: skeletonHeight // 骨架屏高度
}
}
if (index < columnCount) {
cache[itemKey].top = 0
cache[itemKey].left = lrPading index * (columnWidth gutter)
columnHeights[index] = cache[itemKey].height
} else {
const minHeight = Math.min(...columnHeights)
const minIndex = columnHeights.indexOf(minHeight);
cache[itemKey].top = minHeight gutter
cache[itemKey].left = lrPading minIndex * (columnWidth gutter)
columnHeights[minIndex] = cache[itemKey].height gutter
}
renderList.push({
...item,
_layoutRect: cache[itemKey],
_renderKey: itemKey
})
})
const maxHeight = Math.max(...columnHeights)
return {
renderList,
maxHeight
}
},
startRender() {
const {
maxHeight,
renderList
} = this.generateRenderList()
if (!renderList.length) {
return
}
this.renderList = renderList
this.waterfallBoxHeight = maxHeight
},
}
}
2、如何避免错位渲染?
这种情况发生于页面跳转或Tabs切换,导致获取不到元素的boundingClientRect,也就获取不到元素的高度,于是会导致计算错误。
function getRect(selector, context) {
return new Promise((resolve, reject) => {
const query = uni.createSelectorQuery().in(context);
query
.select(selector)
.boundingClientRect(rect => {
rect ? resolve(rect) : reject('Not Found');
})
.exec();
});
}
可以这样解决:当createSelectorQuery获取不到boundingClientRect时,使用createIntersectionObserver来监听元素,这样同样可以获取得到boundingClientRect。当重新回到页面或Tabs切换回来时,intersectionObserver会被触发。
// raito-waterfall-item部分代码
export default {
mounted() {
this.getExtraBoxWH().finally(() => {
/* 可能由于页面跳转、元素隐藏导致获取不到宽度和高度,于是通过监听元素来重新获取高度 */
if (!this.contentRect.extraBoxWidth || !this.contentRect.extraBoxHeight) {
this.startObserver();
}
});
},
beforeDestroy() {
if (this.intersectionObserver) {
this.intersectionObserver.disconnect();
this.intersectionObserver = null;
}
},
methods: {
startObserver() {
this.intersectionObserver = uni.createIntersectionObserver(this, {
thresholds: [0, 1],
initialRatio: 0,
observeAll: false
});
this.intersectionObserver.relativeToViewport();
this.intersectionObserver.observe('.content-box__extra', res => {
const { width, height } = res.boundingClientRect;
this.contentRect.extraBoxWidth = width;
this.contentRect.extraBoxHeight = height;
this.intersectionObserver.disconnect();
this.intersectionObserver = null;
});
},
// 获取extraBox的宽高
getExtraBoxWH() {
return getRect('.content-box__extra', this).then(rect => {
if (rect) {
this.contentRect.extraBoxWidth = rect.width;
this.contentRect.extraBoxHeight = rect.height;
}
});
},
}
}
3、防止数据频繁变化和渲染项高度变化导致卡顿,需要对其节流
import { isArraysEqual, throttle } from '../../util.js'
export default {
created() {
this.throttleRender = throttle(this.startRender.bind(this), 100) // 防止频繁调用
this.handleDataChange = throttle(this.handleDataChange.bind(this), 100) // 防止频繁调用
this.$watch('data', this.handleDataChange, {
deep: true,
immediate: true
})
},
methods: {
onHeightChange(item, height) {
const itemKey = item._renderKey
this.cache[itemKey].height = height
this.throttleRender()
},
handleDataChange(newData, oldData) {
if (isArraysEqual(newData, oldData)) {
return
}
this.startRender()
},
}
}
五、扫码预览
H5扫码体验(国内可能会慢一些)
收起阅读 »
unicloud之前运行好好的,但是突然访问云函数失败,报错FaasError: request has expired
前端详细报错:
Error: Cannot read properties of undefined (reading '0')
at _construct (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:2707)
at new Wrapper (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:17877)
at te._createSuperInternal (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:9512)
at new te (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:10070)
at _callee55$ (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:16718)
at tryCatch (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:17467)
at Generator.<anonymous> (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:17555)
at Generator.throw (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:17496)
at asyncGeneratorStep (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:17760)
at _throw (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:17782)(env: Windows,mp,1.06.2402040; lib: 3.5.6)
原因:
本地运行的电脑时间没有同步,不是最新时间。进入Linux系统的时候,切换为windows经常出现这个问题
前端详细报错:
Error: Cannot read properties of undefined (reading '0')
at _construct (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:2707)
at new Wrapper (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:17877)
at te._createSuperInternal (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:9512)
at new te (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:10070)
at _callee55$ (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:16718)
at tryCatch (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:17467)
at Generator.<anonymous> (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:17555)
at Generator.throw (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:17496)
at asyncGeneratorStep (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:17760)
at _throw (vendor.js?t=wechat&s=1725916079433&v=1c890918c06c7672a6a98d53434ae05f:17782)(env: Windows,mp,1.06.2402040; lib: 3.5.6)
原因:
本地运行的电脑时间没有同步,不是最新时间。进入Linux系统的时候,切换为windows经常出现这个问题

vue3+electron32+arco.design桌面端os模板|vite5+electron32仿mac/win客户端os程序
原创基于electron32.x+vite5+vue3 setup+pinia2+arco-design
实战开发全新桌面版os后台管理系统解决方案Vue3ElectronOS。内置了macos和windows两种风格桌面模板,自研可拖拽栅格布局桌面。
自研Electron32+Vite5+ArcoDesign桌面OS管理系统
运用技术
- 开发工具:VScode
- 技术框架:vite^5.4.1+vue^3.4.37+vue-router^4.4.3
- 跨平台框架:electron^32.0.1
- UI组件库:@arco-design/web-vue^2.56.0 (字节前端vue3组件库)
- 状态管理:pinia^2.2.2
- 拖拽插件:sortablejs^1.15.2
- 图表组件:echarts^5.5.1
- markdown编辑器:md-editor-v3^4.19.2
- 模拟数据:mockjs^1.1.0
- 打包构建:electron-builder^24.13.3
- electron+vite插件:vite-plugin-electron^0.28.7
基于electronjs封装高性能窗口多开器,采用自研栅格化拖拽布局引擎。
项目结构框架
electron32-winos基于vite.js
整合最新跨平台技术electron32.x
搭建项目模板。
目前electron32-vue3-os桌面os已经发布到我的原创作品集。
https://gf.bilibili.com/item/detail/1106958011
Electron主线程配置
/**
* electron主线程配置
* @author andy
*/
import { app, BrowserWindow } from 'electron'
import { WindowManager } from '../src/windows/index.js'
// 忽略安全警告提示 Electron Security Warning (Insecure Content-Security-Policy)
process.env['ELECTRON_DISABLE_SECURITY_WARNINGS'] = true
const createWindow = () => {
let win = new WindowManager()
win.create({isMajor: true})
// 系统托盘管理
win.trayManager()
// 监听ipcMain事件
win.ipcManager()
}
app.whenReady().then(() => {
createWindow()
app.on('activate', () => {
if(BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
app.on('window-all-closed', () => {
if(process.platform !== 'darwin') app.quit()
})
入口文件main.js
import { createApp } from 'vue'
import './style.scss'
import App from './App.vue'
import { launchApp } from '@/windows/actions'
// 引入路由及状态管理
import Router from './router'
import Pinia from './pinia'
// 引入插件
import Plugins from './plugins'
launchApp().then(config => {
if(config) {
// 全局窗口配置
window.config = config
}
// 初始化app实例
createApp(App)
.use(Router)
.use(Pinia)
.use(Plugins)
.mount('#app')
})
electron32-os桌面布局
<script setup>
import { appState } from '@/pinia/modules/app'
// 引入布局模板
import MacosLayout from './template/macos.vue'
import WindowsLayout from './template/windows.vue'
const appstate = appState()
const DeskLayout = {
macos: MacosLayout,
windows: WindowsLayout
}
</script>
<template>
<div class="vu__container" :style="{'--themeSkin': appstate.config.skin}">
<component :is="DeskLayout[appstate.config.layout]" />
</div>
</template>
<script setup>
import Wintool from '@/layouts/components/wintool/index.vue'
import Desk from '@/layouts/components/mac/desk.vue'
import Dock from '@/layouts/components/mac/dock.vue'
</script>
<template>
<div class="vu__layout flexbox flex-col">
<div class="vu__layout-header">
<Wintool />
</div>
<div class="vu__layout-body flex1 flexbox">
<Desk />
</div>
<div class="vu__layout-footer">
<Dock />
</div>
</div>
</template>
electron32-os桌面栅格模板
桌面json菜单配置项
/**
* label 图标标签
* imgico 图标(本地或网络图片) 支持Arco Design内置图标或自定义iconfont字体图标
* path 跳转路由地址
* link 跳转外部链接
* hideLabel 是否隐藏图标标签
* background 自定义图标背景色
* color 自定义图标颜色
* size 栅格布局(16种) 1x1 1x2 1x3 1x4、2x1 2x2 2x3 2x4、3x1 3x2 3x3 3x4、4x1 4x2 4x3 4x4
* onClick 点击图标回调函数
* children 二级菜单配置 * isNewin 新窗口打开路由页面
*/
桌面菜单示例代码
const deskMenu = [
{
uid: 'd137f210-507e-7e8e-1950-9deefac27e48',
list: [
{imgico: markRaw(Today), size: '2x2'},
{label: '日历', imgico: markRaw(Calendar3x3), size: '3x3'},
{label: 'Electron32', imgico: '/electron.svg', link: 'https://www.electronjs.org/'},
// ...
]
},
{
uid: 'g270f210-207e-6e8e-2650-9deefac27e48',
list: [
{label: 'Appstore', imgico: '/static/mac/appstore.png'},
// ...
]
},
{
uid: 't165f210-607e-4e8e-9950-9deefac27e48',
list: [
{label: 'Vue.js', imgico: '/vue.svg', link: 'https://vuejs.org/',},
{label: 'Vite.js官方文档', imgico: '/vite.svg', link: 'https://vitejs.dev/',},
// ...
]
},
{
uid: 'u327f210-207e-1e8e-9950-9deefac27e48',
list: [
{label: 'Electron32', imgico: '/electron.svg', link: 'https://www.electronjs.org/'},
{label: '首页', imgico: markRaw(IconHome), path: '/home', color: '#fff', isNewin: true},
{label: '工作台', imgico: 'elec-icon-dotchart', path: '/home/dashboard', color: '#fff'},
// ...
{
label: '用户中心',
children: [
{label: '主页', imgico: '/static/svg/ucenter.svg', path: '/setting'},
{label: '用户管理', imgico: markRaw(IconUserGroup), path: '/user', color: '#fff'},
// ...
]
},
{
label: '设置',
children: [
// ...
]
},
{
label: '收藏网址',
children: [
{label: 'Electron32', imgico: '/electron.svg', link: 'https://www.electronjs.org/'},
{label: 'Vite.js', imgico: '/vite.svg',},
// ...
]
},
{
label: '公众号', imgico: '/static/qrimg.png', color: '#07c160',
onClick: () => {
Modal.info({
// ...
})
}
},
]
}
]
Okay,综上就是electron32+vue3开发桌面端os系统的一些知识分享。
作者:xiaoyan2017
链接: https://segmentfault.com/a/1190000045245775
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
原创基于electron32.x+vite5+vue3 setup+pinia2+arco-design
实战开发全新桌面版os后台管理系统解决方案Vue3ElectronOS。内置了macos和windows两种风格桌面模板,自研可拖拽栅格布局桌面。
自研Electron32+Vite5+ArcoDesign桌面OS管理系统
运用技术
- 开发工具:VScode
- 技术框架:vite^5.4.1+vue^3.4.37+vue-router^4.4.3
- 跨平台框架:electron^32.0.1
- UI组件库:@arco-design/web-vue^2.56.0 (字节前端vue3组件库)
- 状态管理:pinia^2.2.2
- 拖拽插件:sortablejs^1.15.2
- 图表组件:echarts^5.5.1
- markdown编辑器:md-editor-v3^4.19.2
- 模拟数据:mockjs^1.1.0
- 打包构建:electron-builder^24.13.3
- electron+vite插件:vite-plugin-electron^0.28.7
基于electronjs封装高性能窗口多开器,采用自研栅格化拖拽布局引擎。
项目结构框架
electron32-winos基于vite.js
整合最新跨平台技术electron32.x
搭建项目模板。
目前electron32-vue3-os桌面os已经发布到我的原创作品集。
https://gf.bilibili.com/item/detail/1106958011
Electron主线程配置
/**
* electron主线程配置
* @author andy
*/
import { app, BrowserWindow } from 'electron'
import { WindowManager } from '../src/windows/index.js'
// 忽略安全警告提示 Electron Security Warning (Insecure Content-Security-Policy)
process.env['ELECTRON_DISABLE_SECURITY_WARNINGS'] = true
const createWindow = () => {
let win = new WindowManager()
win.create({isMajor: true})
// 系统托盘管理
win.trayManager()
// 监听ipcMain事件
win.ipcManager()
}
app.whenReady().then(() => {
createWindow()
app.on('activate', () => {
if(BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
app.on('window-all-closed', () => {
if(process.platform !== 'darwin') app.quit()
})
入口文件main.js
import { createApp } from 'vue'
import './style.scss'
import App from './App.vue'
import { launchApp } from '@/windows/actions'
// 引入路由及状态管理
import Router from './router'
import Pinia from './pinia'
// 引入插件
import Plugins from './plugins'
launchApp().then(config => {
if(config) {
// 全局窗口配置
window.config = config
}
// 初始化app实例
createApp(App)
.use(Router)
.use(Pinia)
.use(Plugins)
.mount('#app')
})
electron32-os桌面布局
<script setup>
import { appState } from '@/pinia/modules/app'
// 引入布局模板
import MacosLayout from './template/macos.vue'
import WindowsLayout from './template/windows.vue'
const appstate = appState()
const DeskLayout = {
macos: MacosLayout,
windows: WindowsLayout
}
</script>
<template>
<div class="vu__container" :style="{'--themeSkin': appstate.config.skin}">
<component :is="DeskLayout[appstate.config.layout]" />
</div>
</template>
<script setup>
import Wintool from '@/layouts/components/wintool/index.vue'
import Desk from '@/layouts/components/mac/desk.vue'
import Dock from '@/layouts/components/mac/dock.vue'
</script>
<template>
<div class="vu__layout flexbox flex-col">
<div class="vu__layout-header">
<Wintool />
</div>
<div class="vu__layout-body flex1 flexbox">
<Desk />
</div>
<div class="vu__layout-footer">
<Dock />
</div>
</div>
</template>
electron32-os桌面栅格模板
桌面json菜单配置项
/**
* label 图标标签
* imgico 图标(本地或网络图片) 支持Arco Design内置图标或自定义iconfont字体图标
* path 跳转路由地址
* link 跳转外部链接
* hideLabel 是否隐藏图标标签
* background 自定义图标背景色
* color 自定义图标颜色
* size 栅格布局(16种) 1x1 1x2 1x3 1x4、2x1 2x2 2x3 2x4、3x1 3x2 3x3 3x4、4x1 4x2 4x3 4x4
* onClick 点击图标回调函数
* children 二级菜单配置 * isNewin 新窗口打开路由页面
*/
桌面菜单示例代码
const deskMenu = [
{
uid: 'd137f210-507e-7e8e-1950-9deefac27e48',
list: [
{imgico: markRaw(Today), size: '2x2'},
{label: '日历', imgico: markRaw(Calendar3x3), size: '3x3'},
{label: 'Electron32', imgico: '/electron.svg', link: 'https://www.electronjs.org/'},
// ...
]
},
{
uid: 'g270f210-207e-6e8e-2650-9deefac27e48',
list: [
{label: 'Appstore', imgico: '/static/mac/appstore.png'},
// ...
]
},
{
uid: 't165f210-607e-4e8e-9950-9deefac27e48',
list: [
{label: 'Vue.js', imgico: '/vue.svg', link: 'https://vuejs.org/',},
{label: 'Vite.js官方文档', imgico: '/vite.svg', link: 'https://vitejs.dev/',},
// ...
]
},
{
uid: 'u327f210-207e-1e8e-9950-9deefac27e48',
list: [
{label: 'Electron32', imgico: '/electron.svg', link: 'https://www.electronjs.org/'},
{label: '首页', imgico: markRaw(IconHome), path: '/home', color: '#fff', isNewin: true},
{label: '工作台', imgico: 'elec-icon-dotchart', path: '/home/dashboard', color: '#fff'},
// ...
{
label: '用户中心',
children: [
{label: '主页', imgico: '/static/svg/ucenter.svg', path: '/setting'},
{label: '用户管理', imgico: markRaw(IconUserGroup), path: '/user', color: '#fff'},
// ...
]
},
{
label: '设置',
children: [
// ...
]
},
{
label: '收藏网址',
children: [
{label: 'Electron32', imgico: '/electron.svg', link: 'https://www.electronjs.org/'},
{label: 'Vite.js', imgico: '/vite.svg',},
// ...
]
},
{
label: '公众号', imgico: '/static/qrimg.png', color: '#07c160',
onClick: () => {
Modal.info({
// ...
})
}
},
]
}
]
Okay,综上就是electron32+vue3开发桌面端os系统的一些知识分享。
作者:xiaoyan2017
链接: https://segmentfault.com/a/1190000045245775
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

国内外应用市场上架
在准备将uniapp开发的应用上架到国内外应用市场时,需要注意以下几个关键事项:
-
国内应用市场上架:
- 确保应用遵守《网络安全法》和《消费者权益保护法》,不强制授权、不过度索取权限、不超范围收集个人信息。
- 应用市场审核趋严,需符合相关政策,否则可能被通知下架。
- 我负责的多个app项目曾被通管局通报过超范围收集个人信息的问题,哪怕这些app已经上架了国内各个应用市场,但随审核的政策、人员的变动都会有不同的结果,常常我们在上架时会遇到在个别平台会审核不通过的情况,有些时候我们可以提供在另外几家平台已经审核通过的截图去反馈,不需要做任何更改也可以通过审核,近期vivo平台他就会因为各种功能问题而拒绝审核通过,我都会附上华为、小米的审核通过截图,没有做任何代码修改也就通过了。
-
Google Play上架:
- 检查应用是否有下载/安装apk的行为,是严格禁止应用内下载/安装apk的,但是通常我会保留这个功能,但是尽量少使用或不使用,一旦被下架还是挺麻烦的。
- 不能引导用户下载其他应用,例如QQ登录、分享等模块可能受影响。
- uni-AD增强广告SDK可能导致问题,但基本广告功能不受影响。
- 应用必须适配Android 11,
targetSdkVersion
需大于等于30。 - 应用需以Android App Bundle (AAB)格式上传,不支持apk的安装包 。
-
苹果App Store上架:
- 确保应用功能不简单,不与已发布应用功能相似,避免马甲包。
- 仔细阅读并遵守Apple的官方App Store Review Guidelines。
- 注意使用IDFA的指导和UIWebview API的废弃通知 。
- 注意api接口是否支持境外访问,很多toG项目禁止境外访问,在审核时会告诉我们无法登录、无法正常使用,这时需要取消禁止境外访问,或者提供app的录屏进行审核 。
-
上架前的准备工作:
- 准备必要的材料,如应用安装包、图标、截图、描述等。
- 注册开发者账户,并根据平台要求完成企业认证。
- 需要进行APP备案,现在所有平台都要求对填写APP的备案证书 。
-
上架流程:
- 提交应用审核,填写相关信息,上传必要的材料。
- 等待审核结果,处理审核反馈,必要时进行改进并重新提交。
-
隐私政策和用户协议:
- 在应用内明确展示隐私政策,通常在首次打开、账户登录和设置页面中展示。
- 确保隐私政策符合各应用市场的要求,并在隐私弹窗中提供清晰的用户同意选项 。
-
应用版本和更新:
- 确保每次打包的应用版本号大于已上架的版本号。
- 在manifest.json中配置应用版本名称和版本号。
-
证书和打包:
- 使用正确的证书进行打包,包括开发证书和发布证书。
- 确保打包后的文件格式符合目标应用市场的要求。
-
测试和优化:
- 在真机上进行充分测试,确保应用在不同设备和分辨率上兼容。
- 优化应用性能和用户体验。
请根据这些指南准备和提交您的应用,以确保顺利上架。如果在上架过程中遇到任何问题,可以联系我协助指导(有偿),只要是遵纪守法的应用都是可以上架的。
在准备将uniapp开发的应用上架到国内外应用市场时,需要注意以下几个关键事项:
-
国内应用市场上架:
- 确保应用遵守《网络安全法》和《消费者权益保护法》,不强制授权、不过度索取权限、不超范围收集个人信息。
- 应用市场审核趋严,需符合相关政策,否则可能被通知下架。
- 我负责的多个app项目曾被通管局通报过超范围收集个人信息的问题,哪怕这些app已经上架了国内各个应用市场,但随审核的政策、人员的变动都会有不同的结果,常常我们在上架时会遇到在个别平台会审核不通过的情况,有些时候我们可以提供在另外几家平台已经审核通过的截图去反馈,不需要做任何更改也可以通过审核,近期vivo平台他就会因为各种功能问题而拒绝审核通过,我都会附上华为、小米的审核通过截图,没有做任何代码修改也就通过了。
-
Google Play上架:
- 检查应用是否有下载/安装apk的行为,是严格禁止应用内下载/安装apk的,但是通常我会保留这个功能,但是尽量少使用或不使用,一旦被下架还是挺麻烦的。
- 不能引导用户下载其他应用,例如QQ登录、分享等模块可能受影响。
- uni-AD增强广告SDK可能导致问题,但基本广告功能不受影响。
- 应用必须适配Android 11,
targetSdkVersion
需大于等于30。 - 应用需以Android App Bundle (AAB)格式上传,不支持apk的安装包 。
-
苹果App Store上架:
- 确保应用功能不简单,不与已发布应用功能相似,避免马甲包。
- 仔细阅读并遵守Apple的官方App Store Review Guidelines。
- 注意使用IDFA的指导和UIWebview API的废弃通知 。
- 注意api接口是否支持境外访问,很多toG项目禁止境外访问,在审核时会告诉我们无法登录、无法正常使用,这时需要取消禁止境外访问,或者提供app的录屏进行审核 。
-
上架前的准备工作:
- 准备必要的材料,如应用安装包、图标、截图、描述等。
- 注册开发者账户,并根据平台要求完成企业认证。
- 需要进行APP备案,现在所有平台都要求对填写APP的备案证书 。
-
上架流程:
- 提交应用审核,填写相关信息,上传必要的材料。
- 等待审核结果,处理审核反馈,必要时进行改进并重新提交。
-
隐私政策和用户协议:
- 在应用内明确展示隐私政策,通常在首次打开、账户登录和设置页面中展示。
- 确保隐私政策符合各应用市场的要求,并在隐私弹窗中提供清晰的用户同意选项 。
-
应用版本和更新:
- 确保每次打包的应用版本号大于已上架的版本号。
- 在manifest.json中配置应用版本名称和版本号。
-
证书和打包:
- 使用正确的证书进行打包,包括开发证书和发布证书。
- 确保打包后的文件格式符合目标应用市场的要求。
-
测试和优化:
- 在真机上进行充分测试,确保应用在不同设备和分辨率上兼容。
- 优化应用性能和用户体验。
请根据这些指南准备和提交您的应用,以确保顺利上架。如果在上架过程中遇到任何问题,可以联系我协助指导(有偿),只要是遵纪守法的应用都是可以上架的。
收起阅读 »
canvas 尺寸问题 和 FileReader 读取图片
10802400 的图 要画在 pixelRatio=2.75 的屏上
css 样式宽度应该是等于 windowWidth 393
等价 截屏原样显示 不能使用图片直接 put回去
uni.createCanvasContext 和 uni.canvasPutImageData 也是各玩各的
用 CanvasContext.drawImage 吧 imageResource 要求是个字符串 不支持ImageData
ImageData 甚至还是 undefined
按道理只需要让 画布尺寸等于 10802400 就可以一比一画回去 但是尺寸只让通过css设置 不知道怎么想的
h5 的 putImageData(imageData, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight)
uni.canvasPutImageData
data Uint8ClampedArray 是 图像像素点数据,一维数组,每四项表示一个像素点的rgba
x Number 是 源图像数据在目标画布中的位置偏移量(x 轴方向的偏移量)
y Number 是 源图像数据在目标画布中的位置偏移量(y 轴方向的偏移量)
width Number 是 源图像数据矩形区域的宽度
height Number 源图像数据矩形区域的高度
读取图片吧 chooseImage 返回的非压缩图图片读取不了就算了吧
new plus.io.FileReader() 得读取readAsDataURL 成base64 再解码
let dataUrl= e.target.result;
let base64= dataUrl.split(",")[1];
const buffer=uni.base64ToArrayBuffer(base64);
整个一脱裤子放屁
最后勉强画出来了
<div class="result-warp" :style="result.warpStyle" >
<canvas class="result-canvas" :canvas-id="result.canvasId" :hidpi="false" :style="result.style" ></canvas>
</div>
const {windowWidth} = this.sysInfo
const {rgba,width,height} = image; //不管怎么得到的数据
const style={
width: `${width}px`,
height: `${height}px`,
transform:`scale(${1/pixelRatio})`, //反向缩放
transformOrigin:"top left", //变形原点
};
const warpStyle= {
overflow: ’hidden‘, //隐藏变形后多出的部分
width: `${windowWidth}px`,
height: `${Math.floor(height/pixelRatio)}px`
}
this.result={style,canvasId,width,heightwarpStyle}
//$nextTick
uni.canvasPutImageData({
canvasId
,data:rgba
,x:0
,y:0
,width
,height
},this)
按上述操作可以画出来 但是这东西有个后遗症 后续交互式需要考虑transform带来的影响
10802400 的图 要画在 pixelRatio=2.75 的屏上
css 样式宽度应该是等于 windowWidth 393
等价 截屏原样显示 不能使用图片直接 put回去
uni.createCanvasContext 和 uni.canvasPutImageData 也是各玩各的
用 CanvasContext.drawImage 吧 imageResource 要求是个字符串 不支持ImageData
ImageData 甚至还是 undefined
按道理只需要让 画布尺寸等于 10802400 就可以一比一画回去 但是尺寸只让通过css设置 不知道怎么想的
h5 的 putImageData(imageData, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight)
uni.canvasPutImageData
data Uint8ClampedArray 是 图像像素点数据,一维数组,每四项表示一个像素点的rgba
x Number 是 源图像数据在目标画布中的位置偏移量(x 轴方向的偏移量)
y Number 是 源图像数据在目标画布中的位置偏移量(y 轴方向的偏移量)
width Number 是 源图像数据矩形区域的宽度
height Number 源图像数据矩形区域的高度
读取图片吧 chooseImage 返回的非压缩图图片读取不了就算了吧
new plus.io.FileReader() 得读取readAsDataURL 成base64 再解码
let dataUrl= e.target.result;
let base64= dataUrl.split(",")[1];
const buffer=uni.base64ToArrayBuffer(base64);
整个一脱裤子放屁
最后勉强画出来了
<div class="result-warp" :style="result.warpStyle" >
<canvas class="result-canvas" :canvas-id="result.canvasId" :hidpi="false" :style="result.style" ></canvas>
</div>
const {windowWidth} = this.sysInfo
const {rgba,width,height} = image; //不管怎么得到的数据
const style={
width: `${width}px`,
height: `${height}px`,
transform:`scale(${1/pixelRatio})`, //反向缩放
transformOrigin:"top left", //变形原点
};
const warpStyle= {
overflow: ’hidden‘, //隐藏变形后多出的部分
width: `${windowWidth}px`,
height: `${Math.floor(height/pixelRatio)}px`
}
this.result={style,canvasId,width,heightwarpStyle}
//$nextTick
uni.canvasPutImageData({
canvasId
,data:rgba
,x:0
,y:0
,width
,height
},this)
按上述操作可以画出来 但是这东西有个后遗症 后续交互式需要考虑transform带来的影响
收起阅读 »
#代码工具管理插件TFS#
能否让HBuilderX支持 微软TFS代码管理工具
https://vk.com/topic-227304282_53171330
https://vk.com/topic-227304285_52278675
https://vk.com/topic-227304284_52250137
https://vk.com/topic-227304306_52312924
https://vk.com/topic-227304317_52695904
https://vk.com/topic-227304308_52599864
https://vk.com/topic-227304309_52467475
https://vk.com/topic-227304305_52278676
https://vk.com/topic-227304316_52312925
https://vk.com/topic-227304311_53320600
https://vk.com/topic-227304314_52250138
https://vk.com/topic-227304312_53171331
https://vk.com/topic-227304307_52695906
https://vk.com/topic-227304289_52467476
https://vk.com/topic-227304305_52278677
https://vk.com/topic-227304323_52426224
https://vk.com/topic-227304311_53320601
https://vk.com/topic-227304282_53171332
https://vk.com/topic-227304283_52426225
https://vk.com/topic-227304303_52426226
https://vk.com/topic-227304281_53320602
https://vk.com/topic-227304289_52467478
https://vk.com/topic-227304307_52695907
https://vk.com/topic-227304317_52695908
https://vk.com/topic-227304308_52599866
https://vk.com/topic-227304305_52278678
https://vk.com/topic-227304313_52426227
https://vk.com/topic-227304283_52426228
https://vk.com/topic-227304323_52426229
https://vk.com/topic-227304320_53180637
https://vk.com/topic-227304282_53171333
https://vk.com/topic-227304322_53171334
https://vk.com/topic-227304303_52426230
https://vk.com/topic-227304321_53320603
https://vk.com/topic-227304281_53320604
https://vk.com/topic-227304314_52250140
https://vk.com/topic-227304289_52467479
https://vk.com/topic-227304317_52695909
https://vk.com/topic-227304315_52278679
https://vk.com/topic-227304329_52467480
https://vk.com/topic-227304310_53180638
https://vk.com/topic-227304324_52250141
https://vk.com/topic-227304323_52426231
https://vk.com/topic-227304305_52278680
https://vk.com/topic-227304320_53180639
https://vk.com/topic-227304313_52426232
https://vk.com/topic-227304322_53171335
https://vk.com/topic-227304282_53171336
https://vk.com/topic-227304312_53171337
https://vk.com/topic-227304308_52599867
https://vk.com/topic-227304317_52695910
https://vk.com/topic-227304281_53320605
https://vk.com/topic-227304289_52467481
https://vk.com/topic-227304310_53180640
https://vk.com/topic-227304305_52278681
https://vk.com/topic-227304285_52278682
https://vk.com/topic-227304315_52278683
https://vk.com/topic-227304323_52426234
https://vk.com/topic-227304329_52467482
https://vk.com/topic-227304320_53180641
https://vk.com/topic-227304311_53320606
https://vk.com/topic-227304306_52312927
https://vk.com/topic-227304316_52312928
https://vk.com/topic-227304313_52426235
https://vk.com/topic-227304322_53171338
https://vk.com/topic-227304282_53171339
https://vk.com/topic-227304308_52599868
https://vk.com/topic-227304307_52695911
https://vk.com/topic-227304304_52250142
https://vk.com/topic-227304317_52695912
https://vk.com/topic-227304328_52599869
https://vk.com/topic-227304320_53180642
https://vk.com/topic-227304281_53320607
https://vk.com/topic-227304323_52426236
https://vk.com/topic-227304324_52250143
https://vk.com/topic-227304315_52278684
https://vk.com/topic-227304329_52467483
https://vk.com/topic-227304310_53180643
https://vk.com/topic-227304306_52312930
https://vk.com/topic-227304316_52312931
https://vk.com/topic-227304313_52426237
https://vk.com/topic-227304322_53171340
https://vk.com/topic-227304304_52250145
https://vk.com/topic-227304284_52250146
https://vk.com/topic-227304303_52426238
https://vk.com/topic-227304282_53171341
https://vk.com/topic-227304309_52467484
https://vk.com/topic-227304305_52278685
https://vk.com/topic-227304308_52599870
https://vk.com/topic-227304283_52426239
https://vk.com/topic-227304285_52278686
https://vk.com/topic-227304312_53171342
https://vk.com/topic-227304289_52467485
https://vk.com/topic-227304324_52250147
https://vk.com/topic-227304321_53320608
https://vk.com/topic-227304281_53320609
https://vk.com/topic-227304311_53320610
https://vk.com/topic-227304315_52278687
https://vk.com/topic-227304329_52467486
https://vk.com/topic-227304310_53180644
https://vk.com/topic-227304313_52426240
https://vk.com/topic-227304309_52467487
https://vk.com/topic-227304314_52250149
https://vk.com/topic-227304303_52426241
https://vk.com/topic-227304284_52250150
https://vk.com/topic-227304324_52250151
https://vk.com/topic-227304307_52695913
https://vk.com/topic-227304316_52312932
https://vk.com/topic-227304311_53320611
https://vk.com/topic-227304285_52278688
https://vk.com/topic-227304312_53171343
https://vk.com/topic-227304329_52467488
https://vk.com/topic-227304310_53180645
https://vk.com/topic-227304306_52312933
https://vk.com/topic-227304320_53180646
https://vk.com/topic-227304321_53320612
https://vk.com/topic-227304330_53180647
https://vk.com/topic-227304308_52599871
https://vk.com/topic-227304309_52467489
https://vk.com/topic-227304282_53171344
https://vk.com/topic-227304303_52426243
https://vk.com/topic-227304317_52695914
https://vk.com/topic-227304284_52250152
https://vk.com/topic-227304289_52467490
https://vk.com/topic-227304315_52278689
https://vk.com/topic-227304281_53320613
https://vk.com/topic-227304314_52250153
https://vk.com/topic-227304324_52250154
https://vk.com/topic-227304307_52695915
https://vk.com/topic-227304328_52599873
https://vk.com/topic-227304285_52278690
https://vk.com/topic-227304304_52250155
https://vk.com/topic-227304322_53171345
https://vk.com/topic-227304316_52312934
https://vk.com/topic-227304287_52695917
https://vk.com/topic-227304330_53180648
https://vk.com/topic-227304311_53320614
https://vk.com/topic-227304308_52599874
https://vk.com/topic-227304309_52467491
https://vk.com/topic-227304317_52695918
https://vk.com/topic-227304305_52278691
https://vk.com/topic-227304283_52426244
https://vk.com/topic-227304284_52250156
https://vk.com/topic-227304289_52467492
https://vk.com/topic-227304281_53320615
https://vk.com/topic-227304321_53320616
https://vk.com/topic-227304328_52599875
https://vk.com/topic-227304282_53171346
https://vk.com/topic-227304307_52695919
https://vk.com/topic-227304285_52278692
https://vk.com/topic-227304330_53180649
https://vk.com/topic-227304323_52426245
https://vk.com/topic-227304287_52695920
https://vk.com/topic-227304316_52312935
https://vk.com/topic-227304311_53320617
https://vk.com/topic-227304305_52278693
https://vk.com/topic-227304303_52426246
https://vk.com/topic-227304309_52467493
https://vk.com/topic-227304284_52250157
https://vk.com/topic-227304312_53171347
https://vk.com/topic-227304308_52599876
https://vk.com/topic-227304283_52426247
https://vk.com/topic-227304322_53171348
https://vk.com/topic-227304289_52467494
https://vk.com/topic-227304328_52599877
https://vk.com/topic-227304307_52695921
https://vk.com/topic-227304285_52278694
https://vk.com/topic-227304321_53320619
https://vk.com/topic-227304304_52250158
https://vk.com/topic-227304316_52312936
https://vk.com/topic-227304314_52250159
https://vk.com/topic-227304284_52250160
https://vk.com/topic-227304309_52467495
https://vk.com/topic-227304317_52695922
https://vk.com/topic-227304311_53320620
https://vk.com/topic-227304323_52426248
https://vk.com/topic-227304281_53320621
https://vk.com/topic-227304313_52426249
https://vk.com/topic-227304329_52467496
https://vk.com/topic-227304312_53171349
https://vk.com/topic-227304322_53171350
https://vk.com/topic-227304305_52278695
https://vk.com/topic-227304320_53180651
https://vk.com/topic-227304285_52278696
https://vk.com/topic-227304310_53180652
https://vk.com/topic-227304307_52695923
https://vk.com/topic-227304330_53180653
https://vk.com/topic-227304287_52695924
https://vk.com/topic-227304282_53171351
https://vk.com/topic-227304283_52426250
https://vk.com/topic-227304316_52312937
https://vk.com/topic-227304328_52599878
https://vk.com/topic-227304289_52467497
https://vk.com/topic-227304284_52250161
https://vk.com/topic-227304317_52695925
https://vk.com/topic-227304314_52250162
https://vk.com/topic-227304309_52467498
https://vk.com/topic-227304315_52278697
https://vk.com/topic-227304321_53320622
https://vk.com/topic-227304281_53320623
https://vk.com/topic-227304320_53180655
https://vk.com/topic-227304324_52250164
https://vk.com/topic-227304322_53171352
https://vk.com/topic-227304303_52426251
https://vk.com/topic-227304312_53171353
https://vk.com/topic-227304306_52312938
https://vk.com/topic-227304305_52278698
https://vk.com/topic-227304329_52467499
https://vk.com/topic-227304307_52695926
https://vk.com/topic-227304330_53180656
https://vk.com/topic-227304311_53320624
https://vk.com/topic-227304308_52599879
https://vk.com/topic-227304310_53180657
https://vk.com/topic-227304313_52426252
https://vk.com/topic-227304317_52695927
https://vk.com/topic-227304289_52467500
https://vk.com/topic-227304323_52426253
https://vk.com/topic-227304285_52278699
https://vk.com/topic-227304321_53320625
https://vk.com/topic-227304282_53171354
https://vk.com/topic-227304303_52426254
https://vk.com/topic-227304287_52695928
https://vk.com/topic-227304322_53171355
https://vk.com/topic-227304305_52278700
https://vk.com/topic-227304316_52312939
https://vk.com/topic-227304304_52250166
https://vk.com/topic-227304328_52599880
https://vk.com/topic-227304308_52599881
https://vk.com/topic-227304307_52695929
https://vk.com/topic-227304329_52467501
https://vk.com/topic-227304312_53171356
https://vk.com/topic-227304320_53180658
https://vk.com/topic-227304309_52467502
https://vk.com/topic-227304284_52250167
https://vk.com/topic-227304283_52426255
https://vk.com/topic-227304306_52312940
https://vk.com/topic-227304310_53180659
https://vk.com/topic-227304289_52467503
https://vk.com/topic-227304281_53320626
https://vk.com/topic-227304317_52695930
https://vk.com/topic-227304324_52250168
https://vk.com/topic-227304287_52695931
https://vk.com/topic-227304321_53320627
https://vk.com/topic-227304322_53171357
https://vk.com/topic-227304311_53320629
https://vk.com/topic-227304303_52426256
https://vk.com/topic-227304282_53171358
https://vk.com/topic-227304308_52599882
https://vk.com/topic-227304304_52250169
https://vk.com/topic-227304314_52250170
https://vk.com/topic-227304313_52426257
https://vk.com/topic-227304312_53171359
https://vk.com/topic-227304320_53180661
https://vk.com/topic-227304328_52599883
https://vk.com/topic-227304283_52426258
https://vk.com/topic-227304309_52467504
https://vk.com/topic-227304284_52250171
https://vk.com/topic-227304315_52278701
https://vk.com/topic-227304285_52278702
https://vk.com/topic-227304323_52426259
https://vk.com/topic-227304310_53180662
https://vk.com/topic-227304324_52250172
https://vk.com/topic-227304287_52695933
https://vk.com/topic-227304307_52695934
https://vk.com/topic-227304282_53171360
https://vk.com/topic-227304322_53171361
https://vk.com/topic-227304304_52250173
https://vk.com/topic-227304309_52467505
https://vk.com/topic-227304320_53180663
https://vk.com/topic-227304323_52426260
https://vk.com/topic-227304281_53320630
https://vk.com/topic-227304285_52278703
https://vk.com/topic-227304313_52426261
https://vk.com/topic-227304283_52426262
https://vk.com/topic-227304317_52695935
https://vk.com/topic-227304329_52467506
https://vk.com/topic-227304330_53180664
https://vk.com/topic-227304306_52312943
https://vk.com/topic-227304324_52250174
https://vk.com/topic-227304308_52599885
https://vk.com/topic-227304315_52278704
https://vk.com/topic-227304328_52599886
https://vk.com/topic-227304310_53180665
https://vk.com/topic-227304314_52250175
https://vk.com/topic-227304284_52250176
https://vk.com/topic-227304321_53320631
https://vk.com/topic-227304307_52695936
https://vk.com/topic-227304311_53320632
https://vk.com/topic-227304323_52426263
https://vk.com/topic-227304312_53171362
https://vk.com/topic-227304320_53180667
https://vk.com/topic-227304309_52467507
https://vk.com/topic-227304305_52278705
https://vk.com/topic-227304287_52695937
https://vk.com/topic-227304324_52250177
https://vk.com/topic-227304329_52467508
https://vk.com/topic-227304316_52312944
https://vk.com/topic-227304285_52278706
https://vk.com/topic-227304308_52599887
https://vk.com/topic-227304315_52278707
https://vk.com/topic-227304328_52599888
https://vk.com/topic-227304321_53320634
https://vk.com/topic-227304284_52250178
https://vk.com/topic-227304330_53180668
https://vk.com/topic-227304281_53320635
https://vk.com/topic-227304305_52278708
https://vk.com/topic-227304304_52250179
https://vk.com/topic-227304312_53171363
https://vk.com/topic-227304289_52467509
https://vk.com/topic-227304287_52695938
https://vk.com/topic-227304283_52426265
https://vk.com/topic-227304307_52695939
https://vk.com/topic-227304309_52467510
https://vk.com/topic-227304314_52250180
https://vk.com/topic-227304310_53180669
https://vk.com/topic-227304316_52312945
https://vk.com/topic-227304303_52426266
https://vk.com/topic-227304329_52467511
https://vk.com/topic-227304308_52599889
https://vk.com/topic-227304313_52426267
https://vk.com/topic-227304320_53180670
https://vk.com/topic-227304282_53171364
https://vk.com/topic-227304306_52312946
https://vk.com/topic-227304284_52250181
https://vk.com/topic-227304281_53320636
https://vk.com/topic-227304287_52695940
https://vk.com/topic-227304312_53171366
https://vk.com/topic-227304324_52250183
https://vk.com/topic-227304309_52467512
https://vk.com/topic-227304311_53320637
https://vk.com/topic-227304317_52695941
https://vk.com/topic-227304304_52250184
https://vk.com/topic-227304322_53171367
https://vk.com/topic-227304289_52467513
https://vk.com/topic-227304314_52250185
https://vk.com/topic-227304323_52426268
https://vk.com/topic-227304310_53180671
https://vk.com/topic-227304308_52599890
https://vk.com/topic-227304303_52426269
https://vk.com/topic-227304283_52426270
https://vk.com/topic-227304320_53180672
https://vk.com/topic-227304315_52278709
https://vk.com/topic-227304313_52426271
https://vk.com/topic-227304330_53180673
https://vk.com/topic-227304285_52278710
https://vk.com/topic-227304282_53171368
https://vk.com/topic-227304306_52312947
https://vk.com/topic-227304281_53320638
https://vk.com/topic-227304284_52250186
https://vk.com/topic-227304305_52278711
https://vk.com/topic-227304317_52695942
https://vk.com/topic-227304324_52250187
https://vk.com/topic-227304322_53171369
https://vk.com/topic-227304314_52250188
https://vk.com/topic-227304312_53171370
https://vk.com/topic-227304321_53320639
https://vk.com/topic-227304320_53180674
https://vk.com/topic-227304303_52426272
https://vk.com/topic-227304315_52278712
https://vk.com/topic-227304328_52599891
https://vk.com/topic-227304329_52467514
https://vk.com/topic-227304330_53180675
https://vk.com/topic-227304309_52467515
https://vk.com/topic-227304282_53171371
https://vk.com/topic-227304308_52599892
https://vk.com/topic-227304307_52695943
https://vk.com/topic-227304281_53320641
https://vk.com/topic-227304311_53320642
https://vk.com/topic-227304324_52250191
https://vk.com/topic-227304305_52278713
https://vk.com/topic-227304314_52250192
https://vk.com/topic-227304316_52312948
https://vk.com/topic-227304313_52426274
https://vk.com/topic-227304323_52426275
https://vk.com/topic-227304303_52426276
https://vk.com/topic-227304310_53180676
https://vk.com/topic-227304287_52695944
https://vk.com/topic-227304330_53180677
https://vk.com/topic-227304309_52467516
https://vk.com/topic-227304317_52695945
https://vk.com/topic-227304308_52599893
https://vk.com/topic-227304305_52278714
https://vk.com/topic-227304312_53171372
https://vk.com/topic-227304307_52695946
https://vk.com/topic-227304306_52312949
https://vk.com/topic-227304289_52467517
https://vk.com/topic-227304285_52278715
https://vk.com/topic-227304324_52250193
https://vk.com/topic-227304316_52312950
https://vk.com/topic-227304311_53320644
https://vk.com/topic-227304304_52250194
https://vk.com/topic-227304323_52426277
https://vk.com/topic-227304313_52426278
https://vk.com/topic-227304320_53180678
https://vk.com/topic-227304317_52695947
https://vk.com/topic-227304310_53180679
https://vk.com/topic-227304309_52467518
https://vk.com/topic-227304303_52426279
https://vk.com/topic-227304329_52467519
https://vk.com/topic-227304287_52695948
https://vk.com/topic-227304322_53171373
https://vk.com/topic-227304283_52426280
https://vk.com/topic-227304305_52278716
https://vk.com/topic-227304282_53171374
https://vk.com/topic-227304328_52599894
https://vk.com/topic-227304321_53320645
https://vk.com/topic-227304324_52250195
https://vk.com/topic-227304306_52312951
https://vk.com/topic-227304281_53320646
https://vk.com/topic-227304314_52250196
https://vk.com/topic-227304323_52426281
https://vk.com/topic-227304304_52250197
https://vk.com/topic-227304312_53171375
https://vk.com/topic-227304315_52278717
https://vk.com/topic-227304313_52426282
https://vk.com/topic-227304284_52250198
https://vk.com/topic-227304307_52695949
https://vk.com/topic-227304317_52695950
https://vk.com/topic-227304311_53320647
https://vk.com/topic-227304303_52426283
https://vk.com/topic-227304289_52467520
https://vk.com/topic-227304316_52312952
https://vk.com/topic-227304310_53180680
https://vk.com/topic-227304283_52426284
https://vk.com/topic-227304324_52250199
https://vk.com/topic-227304287_52695951
https://vk.com/topic-227304323_52426285
https://vk.com/topic-227304320_53180681
https://vk.com/topic-227304322_53171376
https://vk.com/topic-227304281_53320649
https://vk.com/topic-227304314_52250200
https://vk.com/topic-227304321_53320650
https://vk.com/topic-227304285_52278718
https://vk.com/topic-227304330_53180682
https://vk.com/topic-227304308_52599895
https://vk.com/topic-227304306_52312953
https://vk.com/topic-227304282_53171377
https://vk.com/topic-227304304_52250201
https://vk.com/topic-227304303_52426287
https://vk.com/topic-227304311_53320651
https://vk.com/topic-227304328_52599896
https://vk.com/topic-227304315_52278719
https://vk.com/topic-227304310_53180683
https://vk.com/topic-227304289_52467521
https://vk.com/topic-227304284_52250202
https://vk.com/topic-227304313_52426288
https://vk.com/topic-227304307_52695952
https://vk.com/topic-227304322_53171378
https://vk.com/topic-227304317_52695953
https://vk.com/topic-227304285_52278720
https://vk.com/topic-227304312_53171379
https://vk.com/topic-227304309_52467522
https://vk.com/topic-227304314_52250203
https://vk.com/topic-227304308_52599897
https://vk.com/topic-227304330_53180684
https://vk.com/topic-227304329_52467523
https://vk.com/topic-227304316_52312954
https://vk.com/topic-227304328_52599898
https://vk.com/topic-227304320_53180685
https://vk.com/topic-227304324_52250205
https://vk.com/topic-227304306_52312955
https://vk.com/topic-227304284_52250206
https://vk.com/topic-227304289_52467524
https://vk.com/topic-227304283_52426289
https://vk.com/topic-227304304_52250207
https://vk.com/topic-227304323_52426290
https://vk.com/topic-227304321_53320653
https://vk.com/topic-227304305_52278721
https://vk.com/topic-227304317_52695954
https://vk.com/topic-227304309_52467525
https://vk.com/topic-227304313_52426291
https://vk.com/topic-227304330_53180686
https://vk.com/topic-227304285_52278722
https://vk.com/topic-227304322_53171380
https://vk.com/topic-227304282_53171381
https://vk.com/topic-227304315_52278723
https://vk.com/topic-227304316_52312956
https://vk.com/topic-227304312_53171382
https://vk.com/topic-227304314_52250208
https://vk.com/topic-227304287_52695955
https://vk.com/topic-227304329_52467526
https://vk.com/topic-227304307_52695957
https://vk.com/topic-227304324_52250209
https://vk.com/topic-227304304_52250210
https://vk.com/topic-227304306_52312957
https://vk.com/topic-227304283_52426292
https://vk.com/topic-227304311_53320654
https://vk.com/topic-227304328_52599899
https://vk.com/topic-227304305_52278724
https://vk.com/topic-227304309_52467527
https://vk.com/topic-227304308_52599900
https://vk.com/topic-227304330_53180687
https://vk.com/topic-227304323_52426293
https://vk.com/topic-227304310_53180688
https://vk.com/topic-227304320_53180689
https://vk.com/topic-227304282_53171383
https://vk.com/topic-227304316_52312958
https://vk.com/topic-227304285_52278725
https://vk.com/topic-227304313_52426294
https://vk.com/topic-227304315_52278726
https://vk.com/topic-227304281_53320655
https://vk.com/topic-227304284_52250212
https://vk.com/topic-227304314_52250211
https://vk.com/topic-227304329_52467528
https://vk.com/topic-227304321_53320656
https://vk.com/topic-227304289_52467529
https://vk.com/topic-227304307_52695959
https://vk.com/topic-227304317_52695960
https://vk.com/topic-227304322_53171384
https://vk.com/topic-227304283_52426295
https://vk.com/topic-227304311_53320658
https://vk.com/topic-227304305_52278727
https://vk.com/topic-227304310_53180690
https://vk.com/topic-227304320_53180691
https://vk.com/topic-227304323_52426296
https://vk.com/topic-227304306_52312959
https://vk.com/topic-227304324_52250213
https://vk.com/topic-227304316_52312960
https://vk.com/topic-227304315_52278728
https://vk.com/topic-227304304_52250214
https://vk.com/topic-227304303_52426297
https://vk.com/topic-227304282_53171385
https://vk.com/topic-227304285_52278729
https://vk.com/topic-227304329_52467530
https://vk.com/topic-227304283_52426298
https://vk.com/topic-227304314_52250215
https://vk.com/topic-227304287_52695961
https://vk.com/topic-227304289_52467531
https://vk.com/topic-227304305_52278730
https://vk.com/topic-227304321_53320659
https://vk.com/topic-227304309_52467532
https://vk.com/topic-227304307_52695962
https://vk.com/topic-227304310_53180692
https://vk.com/topic-227304313_52426299
https://vk.com/topic-227304312_53171386
https://vk.com/topic-227304328_52599901
https://vk.com/topic-227304320_53180693
https://vk.com/topic-227304283_52426300
https://vk.com/topic-227304316_52312961
https://vk.com/topic-227304322_53171387
https://vk.com/topic-227304282_53171388
https://vk.com/topic-227304303_52426301
https://vk.com/topic-227304329_52467533
https://vk.com/topic-227304309_52467534
https://vk.com/topic-227304330_53180694
https://vk.com/topic-227304284_52250216
https://vk.com/topic-227304305_52278731
https://vk.com/topic-227304308_52599902
https://vk.com/topic-227304306_52312962
https://vk.com/topic-227304313_52426302
https://vk.com/topic-227304323_52426303
https://vk.com/topic-227304283_52426304
https://vk.com/topic-227304320_53180695
https://vk.com/topic-227304324_52250217
https://vk.com/topic-227304307_52695963
https://vk.com/topic-227304314_52250218
https://vk.com/topic-227304303_52426305
https://vk.com/topic-227304289_52467535
https://vk.com/topic-227304284_52250219
https://vk.com/topic-227304322_53171389
https://vk.com/topic-227304329_52467536
https://vk.com/topic-227304311_53320660
https://vk.com/topic-227304282_53171390
https://vk.com/topic-227304281_53320661
https://vk.com/topic-227304309_52467537
https://vk.com/topic-227304316_52312963
https://vk.com/topic-227304320_53180697
https://vk.com/topic-227304323_52426306
https://vk.com/topic-227304315_52278733
https://vk.com/topic-227304321_53320662
https://vk.com/topic-227304328_52599903
https://vk.com/topic-227304304_52250221
https://vk.com/topic-227304324_52250222
https://vk.com/topic-227304289_52467538
https://vk.com/topic-227304284_52250223
https://vk.com/topic-227304314_52250224
https://vk.com/topic-227304329_52467539
https://vk.com/topic-227304305_52278734
https://vk.com/topic-227304322_53171391
https://vk.com/topic-227304285_52278735
https://vk.com/topic-227304323_52426307
https://vk.com/topic-227304306_52312964
https://vk.com/topic-227304320_53180698
https://vk.com/topic-227304311_53320663
https://vk.com/topic-227304328_52599904
https://vk.com/topic-227304284_52250226
https://vk.com/topic-227304329_52467540
https://vk.com/topic-227304321_53320664
https://vk.com/topic-227304282_53171393
https://vk.com/topic-227304312_53171392
https://vk.com/topic-227304322_53171394
https://vk.com/topic-227304283_52426309
https://vk.com/topic-227304304_52250227
https://vk.com/topic-227304281_53320665
https://vk.com/topic-227304285_52278736
能否让HBuilderX支持 微软TFS代码管理工具
https://vk.com/topic-227304282_53171330
https://vk.com/topic-227304285_52278675
https://vk.com/topic-227304284_52250137
https://vk.com/topic-227304306_52312924
https://vk.com/topic-227304317_52695904
https://vk.com/topic-227304308_52599864
https://vk.com/topic-227304309_52467475
https://vk.com/topic-227304305_52278676
https://vk.com/topic-227304316_52312925
https://vk.com/topic-227304311_53320600
https://vk.com/topic-227304314_52250138
https://vk.com/topic-227304312_53171331
https://vk.com/topic-227304307_52695906
https://vk.com/topic-227304289_52467476
https://vk.com/topic-227304305_52278677
https://vk.com/topic-227304323_52426224
https://vk.com/topic-227304311_53320601
https://vk.com/topic-227304282_53171332
https://vk.com/topic-227304283_52426225
https://vk.com/topic-227304303_52426226
https://vk.com/topic-227304281_53320602
https://vk.com/topic-227304289_52467478
https://vk.com/topic-227304307_52695907
https://vk.com/topic-227304317_52695908
https://vk.com/topic-227304308_52599866
https://vk.com/topic-227304305_52278678
https://vk.com/topic-227304313_52426227
https://vk.com/topic-227304283_52426228
https://vk.com/topic-227304323_52426229
https://vk.com/topic-227304320_53180637
https://vk.com/topic-227304282_53171333
https://vk.com/topic-227304322_53171334
https://vk.com/topic-227304303_52426230
https://vk.com/topic-227304321_53320603
https://vk.com/topic-227304281_53320604
https://vk.com/topic-227304314_52250140
https://vk.com/topic-227304289_52467479
https://vk.com/topic-227304317_52695909
https://vk.com/topic-227304315_52278679
https://vk.com/topic-227304329_52467480
https://vk.com/topic-227304310_53180638
https://vk.com/topic-227304324_52250141
https://vk.com/topic-227304323_52426231
https://vk.com/topic-227304305_52278680
https://vk.com/topic-227304320_53180639
https://vk.com/topic-227304313_52426232
https://vk.com/topic-227304322_53171335
https://vk.com/topic-227304282_53171336
https://vk.com/topic-227304312_53171337
https://vk.com/topic-227304308_52599867
https://vk.com/topic-227304317_52695910
https://vk.com/topic-227304281_53320605
https://vk.com/topic-227304289_52467481
https://vk.com/topic-227304310_53180640
https://vk.com/topic-227304305_52278681
https://vk.com/topic-227304285_52278682
https://vk.com/topic-227304315_52278683
https://vk.com/topic-227304323_52426234
https://vk.com/topic-227304329_52467482
https://vk.com/topic-227304320_53180641
https://vk.com/topic-227304311_53320606
https://vk.com/topic-227304306_52312927
https://vk.com/topic-227304316_52312928
https://vk.com/topic-227304313_52426235
https://vk.com/topic-227304322_53171338
https://vk.com/topic-227304282_53171339
https://vk.com/topic-227304308_52599868
https://vk.com/topic-227304307_52695911
https://vk.com/topic-227304304_52250142
https://vk.com/topic-227304317_52695912
https://vk.com/topic-227304328_52599869
https://vk.com/topic-227304320_53180642
https://vk.com/topic-227304281_53320607
https://vk.com/topic-227304323_52426236
https://vk.com/topic-227304324_52250143
https://vk.com/topic-227304315_52278684
https://vk.com/topic-227304329_52467483
https://vk.com/topic-227304310_53180643
https://vk.com/topic-227304306_52312930
https://vk.com/topic-227304316_52312931
https://vk.com/topic-227304313_52426237
https://vk.com/topic-227304322_53171340
https://vk.com/topic-227304304_52250145
https://vk.com/topic-227304284_52250146
https://vk.com/topic-227304303_52426238
https://vk.com/topic-227304282_53171341
https://vk.com/topic-227304309_52467484
https://vk.com/topic-227304305_52278685
https://vk.com/topic-227304308_52599870
https://vk.com/topic-227304283_52426239
https://vk.com/topic-227304285_52278686
https://vk.com/topic-227304312_53171342
https://vk.com/topic-227304289_52467485
https://vk.com/topic-227304324_52250147
https://vk.com/topic-227304321_53320608
https://vk.com/topic-227304281_53320609
https://vk.com/topic-227304311_53320610
https://vk.com/topic-227304315_52278687
https://vk.com/topic-227304329_52467486
https://vk.com/topic-227304310_53180644
https://vk.com/topic-227304313_52426240
https://vk.com/topic-227304309_52467487
https://vk.com/topic-227304314_52250149
https://vk.com/topic-227304303_52426241
https://vk.com/topic-227304284_52250150
https://vk.com/topic-227304324_52250151
https://vk.com/topic-227304307_52695913
https://vk.com/topic-227304316_52312932
https://vk.com/topic-227304311_53320611
https://vk.com/topic-227304285_52278688
https://vk.com/topic-227304312_53171343
https://vk.com/topic-227304329_52467488
https://vk.com/topic-227304310_53180645
https://vk.com/topic-227304306_52312933
https://vk.com/topic-227304320_53180646
https://vk.com/topic-227304321_53320612
https://vk.com/topic-227304330_53180647
https://vk.com/topic-227304308_52599871
https://vk.com/topic-227304309_52467489
https://vk.com/topic-227304282_53171344
https://vk.com/topic-227304303_52426243
https://vk.com/topic-227304317_52695914
https://vk.com/topic-227304284_52250152
https://vk.com/topic-227304289_52467490
https://vk.com/topic-227304315_52278689
https://vk.com/topic-227304281_53320613
https://vk.com/topic-227304314_52250153
https://vk.com/topic-227304324_52250154
https://vk.com/topic-227304307_52695915
https://vk.com/topic-227304328_52599873
https://vk.com/topic-227304285_52278690
https://vk.com/topic-227304304_52250155
https://vk.com/topic-227304322_53171345
https://vk.com/topic-227304316_52312934
https://vk.com/topic-227304287_52695917
https://vk.com/topic-227304330_53180648
https://vk.com/topic-227304311_53320614
https://vk.com/topic-227304308_52599874
https://vk.com/topic-227304309_52467491
https://vk.com/topic-227304317_52695918
https://vk.com/topic-227304305_52278691
https://vk.com/topic-227304283_52426244
https://vk.com/topic-227304284_52250156
https://vk.com/topic-227304289_52467492
https://vk.com/topic-227304281_53320615
https://vk.com/topic-227304321_53320616
https://vk.com/topic-227304328_52599875
https://vk.com/topic-227304282_53171346
https://vk.com/topic-227304307_52695919
https://vk.com/topic-227304285_52278692
https://vk.com/topic-227304330_53180649
https://vk.com/topic-227304323_52426245
https://vk.com/topic-227304287_52695920
https://vk.com/topic-227304316_52312935
https://vk.com/topic-227304311_53320617
https://vk.com/topic-227304305_52278693
https://vk.com/topic-227304303_52426246
https://vk.com/topic-227304309_52467493
https://vk.com/topic-227304284_52250157
https://vk.com/topic-227304312_53171347
https://vk.com/topic-227304308_52599876
https://vk.com/topic-227304283_52426247
https://vk.com/topic-227304322_53171348
https://vk.com/topic-227304289_52467494
https://vk.com/topic-227304328_52599877
https://vk.com/topic-227304307_52695921
https://vk.com/topic-227304285_52278694
https://vk.com/topic-227304321_53320619
https://vk.com/topic-227304304_52250158
https://vk.com/topic-227304316_52312936
https://vk.com/topic-227304314_52250159
https://vk.com/topic-227304284_52250160
https://vk.com/topic-227304309_52467495
https://vk.com/topic-227304317_52695922
https://vk.com/topic-227304311_53320620
https://vk.com/topic-227304323_52426248
https://vk.com/topic-227304281_53320621
https://vk.com/topic-227304313_52426249
https://vk.com/topic-227304329_52467496
https://vk.com/topic-227304312_53171349
https://vk.com/topic-227304322_53171350
https://vk.com/topic-227304305_52278695
https://vk.com/topic-227304320_53180651
https://vk.com/topic-227304285_52278696
https://vk.com/topic-227304310_53180652
https://vk.com/topic-227304307_52695923
https://vk.com/topic-227304330_53180653
https://vk.com/topic-227304287_52695924
https://vk.com/topic-227304282_53171351
https://vk.com/topic-227304283_52426250
https://vk.com/topic-227304316_52312937
https://vk.com/topic-227304328_52599878
https://vk.com/topic-227304289_52467497
https://vk.com/topic-227304284_52250161
https://vk.com/topic-227304317_52695925
https://vk.com/topic-227304314_52250162
https://vk.com/topic-227304309_52467498
https://vk.com/topic-227304315_52278697
https://vk.com/topic-227304321_53320622
https://vk.com/topic-227304281_53320623
https://vk.com/topic-227304320_53180655
https://vk.com/topic-227304324_52250164
https://vk.com/topic-227304322_53171352
https://vk.com/topic-227304303_52426251
https://vk.com/topic-227304312_53171353
https://vk.com/topic-227304306_52312938
https://vk.com/topic-227304305_52278698
https://vk.com/topic-227304329_52467499
https://vk.com/topic-227304307_52695926
https://vk.com/topic-227304330_53180656
https://vk.com/topic-227304311_53320624
https://vk.com/topic-227304308_52599879
https://vk.com/topic-227304310_53180657
https://vk.com/topic-227304313_52426252
https://vk.com/topic-227304317_52695927
https://vk.com/topic-227304289_52467500
https://vk.com/topic-227304323_52426253
https://vk.com/topic-227304285_52278699
https://vk.com/topic-227304321_53320625
https://vk.com/topic-227304282_53171354
https://vk.com/topic-227304303_52426254
https://vk.com/topic-227304287_52695928
https://vk.com/topic-227304322_53171355
https://vk.com/topic-227304305_52278700
https://vk.com/topic-227304316_52312939
https://vk.com/topic-227304304_52250166
https://vk.com/topic-227304328_52599880
https://vk.com/topic-227304308_52599881
https://vk.com/topic-227304307_52695929
https://vk.com/topic-227304329_52467501
https://vk.com/topic-227304312_53171356
https://vk.com/topic-227304320_53180658
https://vk.com/topic-227304309_52467502
https://vk.com/topic-227304284_52250167
https://vk.com/topic-227304283_52426255
https://vk.com/topic-227304306_52312940
https://vk.com/topic-227304310_53180659
https://vk.com/topic-227304289_52467503
https://vk.com/topic-227304281_53320626
https://vk.com/topic-227304317_52695930
https://vk.com/topic-227304324_52250168
https://vk.com/topic-227304287_52695931
https://vk.com/topic-227304321_53320627
https://vk.com/topic-227304322_53171357
https://vk.com/topic-227304311_53320629
https://vk.com/topic-227304303_52426256
https://vk.com/topic-227304282_53171358
https://vk.com/topic-227304308_52599882
https://vk.com/topic-227304304_52250169
https://vk.com/topic-227304314_52250170
https://vk.com/topic-227304313_52426257
https://vk.com/topic-227304312_53171359
https://vk.com/topic-227304320_53180661
https://vk.com/topic-227304328_52599883
https://vk.com/topic-227304283_52426258
https://vk.com/topic-227304309_52467504
https://vk.com/topic-227304284_52250171
https://vk.com/topic-227304315_52278701
https://vk.com/topic-227304285_52278702
https://vk.com/topic-227304323_52426259
https://vk.com/topic-227304310_53180662
https://vk.com/topic-227304324_52250172
https://vk.com/topic-227304287_52695933
https://vk.com/topic-227304307_52695934
https://vk.com/topic-227304282_53171360
https://vk.com/topic-227304322_53171361
https://vk.com/topic-227304304_52250173
https://vk.com/topic-227304309_52467505
https://vk.com/topic-227304320_53180663
https://vk.com/topic-227304323_52426260
https://vk.com/topic-227304281_53320630
https://vk.com/topic-227304285_52278703
https://vk.com/topic-227304313_52426261
https://vk.com/topic-227304283_52426262
https://vk.com/topic-227304317_52695935
https://vk.com/topic-227304329_52467506
https://vk.com/topic-227304330_53180664
https://vk.com/topic-227304306_52312943
https://vk.com/topic-227304324_52250174
https://vk.com/topic-227304308_52599885
https://vk.com/topic-227304315_52278704
https://vk.com/topic-227304328_52599886
https://vk.com/topic-227304310_53180665
https://vk.com/topic-227304314_52250175
https://vk.com/topic-227304284_52250176
https://vk.com/topic-227304321_53320631
https://vk.com/topic-227304307_52695936
https://vk.com/topic-227304311_53320632
https://vk.com/topic-227304323_52426263
https://vk.com/topic-227304312_53171362
https://vk.com/topic-227304320_53180667
https://vk.com/topic-227304309_52467507
https://vk.com/topic-227304305_52278705
https://vk.com/topic-227304287_52695937
https://vk.com/topic-227304324_52250177
https://vk.com/topic-227304329_52467508
https://vk.com/topic-227304316_52312944
https://vk.com/topic-227304285_52278706
https://vk.com/topic-227304308_52599887
https://vk.com/topic-227304315_52278707
https://vk.com/topic-227304328_52599888
https://vk.com/topic-227304321_53320634
https://vk.com/topic-227304284_52250178
https://vk.com/topic-227304330_53180668
https://vk.com/topic-227304281_53320635
https://vk.com/topic-227304305_52278708
https://vk.com/topic-227304304_52250179
https://vk.com/topic-227304312_53171363
https://vk.com/topic-227304289_52467509
https://vk.com/topic-227304287_52695938
https://vk.com/topic-227304283_52426265
https://vk.com/topic-227304307_52695939
https://vk.com/topic-227304309_52467510
https://vk.com/topic-227304314_52250180
https://vk.com/topic-227304310_53180669
https://vk.com/topic-227304316_52312945
https://vk.com/topic-227304303_52426266
https://vk.com/topic-227304329_52467511
https://vk.com/topic-227304308_52599889
https://vk.com/topic-227304313_52426267
https://vk.com/topic-227304320_53180670
https://vk.com/topic-227304282_53171364
https://vk.com/topic-227304306_52312946
https://vk.com/topic-227304284_52250181
https://vk.com/topic-227304281_53320636
https://vk.com/topic-227304287_52695940
https://vk.com/topic-227304312_53171366
https://vk.com/topic-227304324_52250183
https://vk.com/topic-227304309_52467512
https://vk.com/topic-227304311_53320637
https://vk.com/topic-227304317_52695941
https://vk.com/topic-227304304_52250184
https://vk.com/topic-227304322_53171367
https://vk.com/topic-227304289_52467513
https://vk.com/topic-227304314_52250185
https://vk.com/topic-227304323_52426268
https://vk.com/topic-227304310_53180671
https://vk.com/topic-227304308_52599890
https://vk.com/topic-227304303_52426269
https://vk.com/topic-227304283_52426270
https://vk.com/topic-227304320_53180672
https://vk.com/topic-227304315_52278709
https://vk.com/topic-227304313_52426271
https://vk.com/topic-227304330_53180673
https://vk.com/topic-227304285_52278710
https://vk.com/topic-227304282_53171368
https://vk.com/topic-227304306_52312947
https://vk.com/topic-227304281_53320638
https://vk.com/topic-227304284_52250186
https://vk.com/topic-227304305_52278711
https://vk.com/topic-227304317_52695942
https://vk.com/topic-227304324_52250187
https://vk.com/topic-227304322_53171369
https://vk.com/topic-227304314_52250188
https://vk.com/topic-227304312_53171370
https://vk.com/topic-227304321_53320639
https://vk.com/topic-227304320_53180674
https://vk.com/topic-227304303_52426272
https://vk.com/topic-227304315_52278712
https://vk.com/topic-227304328_52599891
https://vk.com/topic-227304329_52467514
https://vk.com/topic-227304330_53180675
https://vk.com/topic-227304309_52467515
https://vk.com/topic-227304282_53171371
https://vk.com/topic-227304308_52599892
https://vk.com/topic-227304307_52695943
https://vk.com/topic-227304281_53320641
https://vk.com/topic-227304311_53320642
https://vk.com/topic-227304324_52250191
https://vk.com/topic-227304305_52278713
https://vk.com/topic-227304314_52250192
https://vk.com/topic-227304316_52312948
https://vk.com/topic-227304313_52426274
https://vk.com/topic-227304323_52426275
https://vk.com/topic-227304303_52426276
https://vk.com/topic-227304310_53180676
https://vk.com/topic-227304287_52695944
https://vk.com/topic-227304330_53180677
https://vk.com/topic-227304309_52467516
https://vk.com/topic-227304317_52695945
https://vk.com/topic-227304308_52599893
https://vk.com/topic-227304305_52278714
https://vk.com/topic-227304312_53171372
https://vk.com/topic-227304307_52695946
https://vk.com/topic-227304306_52312949
https://vk.com/topic-227304289_52467517
https://vk.com/topic-227304285_52278715
https://vk.com/topic-227304324_52250193
https://vk.com/topic-227304316_52312950
https://vk.com/topic-227304311_53320644
https://vk.com/topic-227304304_52250194
https://vk.com/topic-227304323_52426277
https://vk.com/topic-227304313_52426278
https://vk.com/topic-227304320_53180678
https://vk.com/topic-227304317_52695947
https://vk.com/topic-227304310_53180679
https://vk.com/topic-227304309_52467518
https://vk.com/topic-227304303_52426279
https://vk.com/topic-227304329_52467519
https://vk.com/topic-227304287_52695948
https://vk.com/topic-227304322_53171373
https://vk.com/topic-227304283_52426280
https://vk.com/topic-227304305_52278716
https://vk.com/topic-227304282_53171374
https://vk.com/topic-227304328_52599894
https://vk.com/topic-227304321_53320645
https://vk.com/topic-227304324_52250195
https://vk.com/topic-227304306_52312951
https://vk.com/topic-227304281_53320646
https://vk.com/topic-227304314_52250196
https://vk.com/topic-227304323_52426281
https://vk.com/topic-227304304_52250197
https://vk.com/topic-227304312_53171375
https://vk.com/topic-227304315_52278717
https://vk.com/topic-227304313_52426282
https://vk.com/topic-227304284_52250198
https://vk.com/topic-227304307_52695949
https://vk.com/topic-227304317_52695950
https://vk.com/topic-227304311_53320647
https://vk.com/topic-227304303_52426283
https://vk.com/topic-227304289_52467520
https://vk.com/topic-227304316_52312952
https://vk.com/topic-227304310_53180680
https://vk.com/topic-227304283_52426284
https://vk.com/topic-227304324_52250199
https://vk.com/topic-227304287_52695951
https://vk.com/topic-227304323_52426285
https://vk.com/topic-227304320_53180681
https://vk.com/topic-227304322_53171376
https://vk.com/topic-227304281_53320649
https://vk.com/topic-227304314_52250200
https://vk.com/topic-227304321_53320650
https://vk.com/topic-227304285_52278718
https://vk.com/topic-227304330_53180682
https://vk.com/topic-227304308_52599895
https://vk.com/topic-227304306_52312953
https://vk.com/topic-227304282_53171377
https://vk.com/topic-227304304_52250201
https://vk.com/topic-227304303_52426287
https://vk.com/topic-227304311_53320651
https://vk.com/topic-227304328_52599896
https://vk.com/topic-227304315_52278719
https://vk.com/topic-227304310_53180683
https://vk.com/topic-227304289_52467521
https://vk.com/topic-227304284_52250202
https://vk.com/topic-227304313_52426288
https://vk.com/topic-227304307_52695952
https://vk.com/topic-227304322_53171378
https://vk.com/topic-227304317_52695953
https://vk.com/topic-227304285_52278720
https://vk.com/topic-227304312_53171379
https://vk.com/topic-227304309_52467522
https://vk.com/topic-227304314_52250203
https://vk.com/topic-227304308_52599897
https://vk.com/topic-227304330_53180684
https://vk.com/topic-227304329_52467523
https://vk.com/topic-227304316_52312954
https://vk.com/topic-227304328_52599898
https://vk.com/topic-227304320_53180685
https://vk.com/topic-227304324_52250205
https://vk.com/topic-227304306_52312955
https://vk.com/topic-227304284_52250206
https://vk.com/topic-227304289_52467524
https://vk.com/topic-227304283_52426289
https://vk.com/topic-227304304_52250207
https://vk.com/topic-227304323_52426290
https://vk.com/topic-227304321_53320653
https://vk.com/topic-227304305_52278721
https://vk.com/topic-227304317_52695954
https://vk.com/topic-227304309_52467525
https://vk.com/topic-227304313_52426291
https://vk.com/topic-227304330_53180686
https://vk.com/topic-227304285_52278722
https://vk.com/topic-227304322_53171380
https://vk.com/topic-227304282_53171381
https://vk.com/topic-227304315_52278723
https://vk.com/topic-227304316_52312956
https://vk.com/topic-227304312_53171382
https://vk.com/topic-227304314_52250208
https://vk.com/topic-227304287_52695955
https://vk.com/topic-227304329_52467526
https://vk.com/topic-227304307_52695957
https://vk.com/topic-227304324_52250209
https://vk.com/topic-227304304_52250210
https://vk.com/topic-227304306_52312957
https://vk.com/topic-227304283_52426292
https://vk.com/topic-227304311_53320654
https://vk.com/topic-227304328_52599899
https://vk.com/topic-227304305_52278724
https://vk.com/topic-227304309_52467527
https://vk.com/topic-227304308_52599900
https://vk.com/topic-227304330_53180687
https://vk.com/topic-227304323_52426293
https://vk.com/topic-227304310_53180688
https://vk.com/topic-227304320_53180689
https://vk.com/topic-227304282_53171383
https://vk.com/topic-227304316_52312958
https://vk.com/topic-227304285_52278725
https://vk.com/topic-227304313_52426294
https://vk.com/topic-227304315_52278726
https://vk.com/topic-227304281_53320655
https://vk.com/topic-227304284_52250212
https://vk.com/topic-227304314_52250211
https://vk.com/topic-227304329_52467528
https://vk.com/topic-227304321_53320656
https://vk.com/topic-227304289_52467529
https://vk.com/topic-227304307_52695959
https://vk.com/topic-227304317_52695960
https://vk.com/topic-227304322_53171384
https://vk.com/topic-227304283_52426295
https://vk.com/topic-227304311_53320658
https://vk.com/topic-227304305_52278727
https://vk.com/topic-227304310_53180690
https://vk.com/topic-227304320_53180691
https://vk.com/topic-227304323_52426296
https://vk.com/topic-227304306_52312959
https://vk.com/topic-227304324_52250213
https://vk.com/topic-227304316_52312960
https://vk.com/topic-227304315_52278728
https://vk.com/topic-227304304_52250214
https://vk.com/topic-227304303_52426297
https://vk.com/topic-227304282_53171385
https://vk.com/topic-227304285_52278729
https://vk.com/topic-227304329_52467530
https://vk.com/topic-227304283_52426298
https://vk.com/topic-227304314_52250215
https://vk.com/topic-227304287_52695961
https://vk.com/topic-227304289_52467531
https://vk.com/topic-227304305_52278730
https://vk.com/topic-227304321_53320659
https://vk.com/topic-227304309_52467532
https://vk.com/topic-227304307_52695962
https://vk.com/topic-227304310_53180692
https://vk.com/topic-227304313_52426299
https://vk.com/topic-227304312_53171386
https://vk.com/topic-227304328_52599901
https://vk.com/topic-227304320_53180693
https://vk.com/topic-227304283_52426300
https://vk.com/topic-227304316_52312961
https://vk.com/topic-227304322_53171387
https://vk.com/topic-227304282_53171388
https://vk.com/topic-227304303_52426301
https://vk.com/topic-227304329_52467533
https://vk.com/topic-227304309_52467534
https://vk.com/topic-227304330_53180694
https://vk.com/topic-227304284_52250216
https://vk.com/topic-227304305_52278731
https://vk.com/topic-227304308_52599902
https://vk.com/topic-227304306_52312962
https://vk.com/topic-227304313_52426302
https://vk.com/topic-227304323_52426303
https://vk.com/topic-227304283_52426304
https://vk.com/topic-227304320_53180695
https://vk.com/topic-227304324_52250217
https://vk.com/topic-227304307_52695963
https://vk.com/topic-227304314_52250218
https://vk.com/topic-227304303_52426305
https://vk.com/topic-227304289_52467535
https://vk.com/topic-227304284_52250219
https://vk.com/topic-227304322_53171389
https://vk.com/topic-227304329_52467536
https://vk.com/topic-227304311_53320660
https://vk.com/topic-227304282_53171390
https://vk.com/topic-227304281_53320661
https://vk.com/topic-227304309_52467537
https://vk.com/topic-227304316_52312963
https://vk.com/topic-227304320_53180697
https://vk.com/topic-227304323_52426306
https://vk.com/topic-227304315_52278733
https://vk.com/topic-227304321_53320662
https://vk.com/topic-227304328_52599903
https://vk.com/topic-227304304_52250221
https://vk.com/topic-227304324_52250222
https://vk.com/topic-227304289_52467538
https://vk.com/topic-227304284_52250223
https://vk.com/topic-227304314_52250224
https://vk.com/topic-227304329_52467539
https://vk.com/topic-227304305_52278734
https://vk.com/topic-227304322_53171391
https://vk.com/topic-227304285_52278735
https://vk.com/topic-227304323_52426307
https://vk.com/topic-227304306_52312964
https://vk.com/topic-227304320_53180698
https://vk.com/topic-227304311_53320663
https://vk.com/topic-227304328_52599904
https://vk.com/topic-227304284_52250226
https://vk.com/topic-227304329_52467540
https://vk.com/topic-227304321_53320664
https://vk.com/topic-227304282_53171393
https://vk.com/topic-227304312_53171392
https://vk.com/topic-227304322_53171394
https://vk.com/topic-227304283_52426309
https://vk.com/topic-227304304_52250227
https://vk.com/topic-227304281_53320665
https://vk.com/topic-227304285_52278736