360浏览器居然更新了,还是86内核!!(持续更新)
Tofloor
poster avatar
Ziggy
deepin
2020-08-19 03:16
Author
本帖最后由 appj 于 2020-8-22 13:40 编辑

快拿着“86”去飙车吧
好吧,居然要申请...

---------------------2020.8.21
已知问题:部分网页二级菜单点击无效
https://pan.baidu.com/s/1Twl1c5oR0NscEb7ISsjWUg
g8ne
Reply Favorite View the author
All Replies
2 / 2
To page
avatar
血染轩辕
deepin
2020-08-20 05:37
#21
fch0226 发表于 2020-8-19 10:40
360浏览器怎么关闭国密过期授权,经常弹窗,这点有点过分,一直关不了,在设置里面设置了也没用,还是经常 ...

去360论坛去反应!!!
Reply View the author
avatar
Ziggy
deepin
2020-08-21 01:13
#22
https://bbs.deepin.org/post/199950
只有一张图片写着86内核,windows平台还是78内核,chrome最新稳定版也是84而已(linux版本),下载看看,安装 ...

没有吧,86内核我都是要申请适配才拿到的软件包
Reply View the author
avatar
haohu1193
deepin
2020-08-21 01:27
#23
https://bbs.deepin.org/post/199950
没有吧,86内核我都是要申请适配才拿到的软件包

你有了吗?我也申请了...没给呢啊...
Reply View the author
avatar
dororo2020
deepin
2020-08-21 02:44
#24
可惜没有扩展安装,等微软edge了
Reply View the author
avatar
Ziggy
deepin
2020-08-21 03:57
#25
https://bbs.deepin.org/post/199950
你有了吗?我也申请了...没给呢啊...

有啊,昨天发的,比官网显示的还新,你填完表再发个邮件催一下
Reply View the author
avatar
Ziggy
deepin
2020-08-21 03:58
#26
https://bbs.deepin.org/post/199950
可惜没有扩展安装,等微软edge了

可以安装的啊,只是暂时不能显示出来而已,功能正常的
Reply View the author
avatar
dororo2020
deepin
2020-08-21 05:37
#27
https://bbs.deepin.org/post/199950
可以安装的啊,只是暂时不能显示出来而已,功能正常的

不科学上网怎么装?
Reply View the author
avatar
haohu1193
deepin
2020-08-21 22:46
#28
https://bbs.deepin.org/post/199950
不科学上网怎么装?

百度不会用吗?离线插件网站大把大把的...
Reply View the author
avatar
sdgddh
deepin
2020-08-22 21:31
#29
发个安装包试用一下
Reply View the author
avatar
sdgddh
deepin
2020-08-22 21:31
#30
https://bbs.deepin.org/post/199950
有啊,昨天发的,比官网显示的还新,你填完表再发个邮件催一下

可以把安装包发出来吗
Reply View the author
avatar
zhoulang_rr
deepin
2020-08-22 22:09
#31
不能用插件
Reply View the author
avatar
风吹过的绿洲
deepin
2020-08-22 22:25
#32
昨天申请之后官方把包发给我了,正想发出来呢!
我也发现二级菜单点击无效。。。。。。
但是解决了78内核有些网页容易崩溃的问题。
Reply View the author
avatar
Ziggy
deepin
2020-08-22 22:32
#33
https://bbs.deepin.org/post/199950
昨天申请之后官方把包发给我了,正想发出来呢!
我也发现二级菜单点击无效。。。。。。
但是解决了78内核有 ...

二级菜单的问题之前版本就出现过了,还是68内核的那个时代
Reply View the author
avatar
tikingliu
deepin
2020-08-23 01:53
#34
https://bbs.deepin.org/post/199950
deepin自带的Chromium才80.0.3987.162,但是对版本无感,个人觉得启动比Windows下Chromium版edge快,借助插 ...

个人也觉得win中的chromium版edge是最好用的浏览器。
Reply View the author
avatar
sdgddh
deepin
2020-08-23 03:47
#35
https://bbs.deepin.org/post/199950
昨天申请之后官方把包发给我了,正想发出来呢!
我也发现二级菜单点击无效。。。。。。
但是解决了78内核有 ...

可以把安装包发出来吗
Reply View the author
avatar
风吹过的绿洲
deepin
2020-08-23 06:46
#36
https://bbs.deepin.org/post/199950
可以把安装包发出来吗

楼主不是已经贴出来百度网盘的链接了吗
Reply View the author
avatar
残念
deepin
2020-08-23 06:57
#37
今天极速浏览器(win)才内测86内核


Reply View the author
avatar
灵兮之
deepin
2020-08-23 17:53
#38
不容易得到的才趋之若鹜
Reply View the author
avatar
sdgddh
deepin
2020-08-23 23:45
#39
插件还是不能用
Reply View the author
avatar
来自Ubuntu的某位用户
deepin
2022-06-19 06:34
#40

360浏览器永不再见!!!108行Python代码自制浏览器

from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtWebEngineWidgets import *

import os
import sys

class MainWindow(QMainWindow):
def init(self, *args, **kwargs):
super().init(*args, **kwargs)

    self.resize(2000, 1314)
    self.show()

    self.tabWidget = QTabWidget()
    self.tabWidget.setTabShape(QTabWidget.Triangular)
    self.tabWidget.setDocumentMode(True)
    self.tabWidget.setMovable(True)
    self.tabWidget.setTabsClosable(True)
    self.tabWidget.tabCloseRequested.connect(self.close_Tab)

    self.setCentralWidget(self.tabWidget)

    self.webview = WebEngineView(self)
    self.webview.load(QUrl("http://www.baidu.com"))

    self.create_tab(self.webview)

    navtb = QToolBar("Navigation")
    navtb.setIconSize(QSize(16, 16))
    self.addToolBar(navtb)

    back_btn = QAction(QIcon(os.path.join('images', 'houtui.png')), "后退", self)
    back_btn.triggered.connect(self.webview.back)
    navtb.addAction(back_btn)

    next_btn = QAction(QIcon(os.path.join('images', 'qianjin.png')), "前进", self)
    next_btn.triggered.connect(self.webview.forward)
    navtb.addAction(next_btn)

    reload_btn = QAction(QIcon(os.path.join('images', 'refresh_icon.png')), "刷新", self)
    reload_btn.triggered.connect(self.webview.reload)
    navtb.addAction(reload_btn)

    home_btn = QAction(QIcon(os.path.join('images', 'geren1.png')), "主页", self)
    navtb.addAction(home_btn)

    self.urlbar = QLineEdit()

    stop_btn = QAction(QIcon(os.path.join('images', 'cross-circle.png')), "Stop", self)
    stop_btn.triggered.connect(lambda: self.tabs.currentWidget().stop())
    navtb.addAction(stop_btn)

    self.urlbar.returnPressed.connect(self.navigate_to_url)

    navtb.addSeparator()
    navtb.addWidget(self.urlbar)

    self.webview.urlChanged.connect(self.renew_urlbar)

def navigate_to_url(self):
    q = QUrl(self.urlbar.text())
    if q.scheme() == '':
        q.setScheme('http')
    self.webview.setUrl(q)

def renew_urlbar(self, q):
    self.urlbar.setText(q.toString())
    self.urlbar.setCursorPosition(0)

def create_tab(self, webview):
    self.tab = QWidget()

    self.tabWidget.addTab(self.tab, "新建标签页")
    self.tabWidget.setCurrentWidget(self.tab)

    self.Layout = QHBoxLayout(self.tab)
    self.Layout.setContentsMargins(0, 0, 0, 0)
    self.Layout.addWidget(webview)

def close_Tab(self, index):
    if self.tabWidget.count() > 1:
        self.tabWidget.removeTab(index)
    else:
        self.close()

class WebEngineView(QWebEngineView):

def __init__(self, mainwindow, parent=None):
    super(WebEngineView, self).__init__(parent)
    self.mainwindow = mainwindow

def createWindow(self, QWebEnginePage_WebWindowType):
    new_webview = WebEngineView(self.mainwindow)
    self.mainwindow.create_tab(new_webview)
    return new_webview

app = QApplication(sys.argv)

browser = MainWindow()
browser.show()

sys.exit(app.exec_())

Reply View the author
2 / 2
To page