Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit af334e4

Browse files
committed
Update v1.8
1 parent fcccfef commit af334e4

File tree

22 files changed

+393
-10
lines changed

22 files changed

+393
-10
lines changed

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,13 @@ Anka is a browser developed with PyQt6 and QWebEngine in Python and open-source
99

1010
You can download Anka Browser in every Python installed device.
1111

12-
## Anka v1.7.3:
12+
---
1313

14-
- ### Customize the Tab Colors:
15-
Now, you can customize tab colors with Color Dialog(QColorDialog).
14+
## Anka v1.8:
1615

17-
- ### Added more search engines:
18-
Microsoft Bing, Brave Search and Startpage search engines added.
19-
20-
- ### URL Bar update:
21-
Now, if you don't write URL to URL bar, Anka Browser is searchs text to your write on your search engine.
16+
- ### Languages:
17+
Now, Anka Browser is support two language. Türkçe(Turkish) and English. You can find English version from
18+
``/src/en-En/`` and you can find Türkçe(Turkish) version from ``/src/tr-TR/``
2219

2320
- ### History update:
2421
Your search history is save to /public/browser/history.txt. If you want, you can delete from "Delete History" button from Settings.
@@ -38,6 +35,8 @@ You can download Anka Browser in every Python installed device.
3835
- ### Layout Update:
3936
Now, main layout's margins 0.
4037

38+
---
39+
4140
## What is the next update?
4241
***Next update includes:***
4342

public/browser/history.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# English Version
12
import sys
23
import os
34
from PyQt6.QtWidgets import *
@@ -245,7 +246,7 @@ def browser_save(self):
245246
current_browser.page().toHtml(self.save_html)
246247

247248
def save_html(self, html):
248-
file_name, _ = QFileDialog.getSaveFileName(self, "Kaydet", "", "HTML Dosyası (*.html);;WEBP Dosyası(*.webp);;Tüm Dosyalar (*)")
249+
file_name, _ = QFileDialog.getSaveFileName(self, "Kaydet", "", "HTML File (*.html);;WEBP File(*.webp);;Tüm Dosyalar (*)")
249250
if file_name:
250251
with open(file_name, 'w', encoding='utf-8') as file:
251252
file.write(html)

src/en-EN/public/browser/history.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)