1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-07 23:00:01 +02:00

Clean up whitespace and formatting in various files; update CODEOWNERS and .gitignore

This commit is contained in:
mr. M 2025-01-04 02:33:00 +01:00
parent 729f61b84c
commit 5de241c2c6
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
10 changed files with 12 additions and 13 deletions

View file

@ -31,4 +31,3 @@ jobs:
- name: Lint - name: Lint
run: pnpm lint run: pnpm lint

View file

@ -20,7 +20,7 @@ if ! command -v Xvfb &> /dev/null; then
else else
echo "Xvfb could not be found, running without it" echo "Xvfb could not be found, running without it"
echo "ASSUMING YOU ARE RUNNING THIS ON MACOS" echo "ASSUMING YOU ARE RUNNING THIS ON MACOS"
set -v set -v
export ZEN_RELEASE=1 export ZEN_RELEASE=1
pnpm build pnpm build

1
.gitignore vendored
View file

@ -1,4 +1,3 @@
.dotbuild/ .dotbuild/
engine/ engine/
firefox-*/ firefox-*/

View file

@ -14,7 +14,10 @@ pnpm-lock.yaml
docs/issue-metrics/*.md docs/issue-metrics/*.md
.husky/
# Some CSS files are preprocessed and prettier doesn't handle them well # Some CSS files are preprocessed and prettier doesn't handle them well
# We also dont want to format the CSS files that are generated by the build # We also dont want to format the CSS files that are generated by the build
src/browser/base/content/zen-styles/zen-tabs/vertical-tabs.css src/browser/base/content/zen-styles/zen-tabs/vertical-tabs.css
src/browser/base/zen-components/ZenEmojies.mjs src/browser/base/zen-components/ZenEmojies.mjs
build/codesign/codesign.bash

View file

@ -1 +1 @@
* @mr-cheff * @mr-cheff

2
l10n

@ -1 +1 @@
Subproject commit 8ef008fb65093e7f5b604725bd6960e1a07b17eb Subproject commit d444262fdb32071eb995c5266ad4fe8846f650f1

View file

@ -1,4 +1,3 @@
set -ex set -ex
CURRENT_DIR=$(pwd) CURRENT_DIR=$(pwd)

View file

@ -1,2 +1 @@
sh ./scripts/copy-language-pack.sh en-US sh ./scripts/copy-language-pack.sh en-US

View file

@ -1,2 +1,2 @@
# TODO: should they be included in the repo? # TODO: should they be included in the repo?
# *.svg # *.svg

View file

@ -1,15 +1,15 @@
# note: you need to be in the same directory as the script to run it # note: you need to be in the same directory as the script to run it
if [ $(basename $PWD) != "zen-icons" ]; then if [ $(basename $PWD) != "zen-icons" ]; then
echo "You need to be in the zen-icons directory to run this script" echo "You need to be in the zen-icons directory to run this script"
exit 1 exit 1
fi fi
echo "" > jar.inc.mn echo "" > jar.inc.mn
for filename in *; do for filename in *; do
echo "Working on $filename" echo "Working on $filename"
echo " skin/classic/browser/zen-icons/$filename (../shared/zen-icons/$filename) " >> jar.inc.mn echo " skin/classic/browser/zen-icons/$filename (../shared/zen-icons/$filename) " >> jar.inc.mn
done done
echo "Done!" echo "Done!"